* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Calc Delivery Link */
.calc-delivery {
    cursor: pointer;
}
.calc-delivery:hover {
    text-decoration: underline;
}
/* Delivery Form */
.dellin {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.3;
    -webkit-transition: 0.3;
    -moz-transition: 0.3;
    -ms-transition: 0.3;
    -o-transition: 0.3;
    background: #0000005c;
}
.dellin.active {
    visibility: visible;
    opacity: 1;
}
.dellin__form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    margin: 0 15px;
    width: 350px;
    background: #dcdcdc;
    box-shadow: 5px 5px 0px 0px #969696;
}
.dellin__form.refresh::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../img/preloader.gif) no-repeat center;
    background-color: #add8e69e;
    background-size: 50px;
}
.dellin__title {
    display: block;
    width: 100%;
    height: 42px;
    font-size: 18px;
    background: url(../img/dellin_logo.svg) no-repeat center;
    background-size: contain;
    margin: 0 0 15px;
}
.dellin__form input {
    margin: 15px 0 0 0;
    padding: 10px;
    width: 100%;
    border: unset;
    border-radius: unset;
    -webkit-border-radius: unset;
    -moz-border-radius: unset;
    -ms-border-radius: unset;
    -o-border-radius: unset;
    outline: unset;
}
.dellin__arrival,
.dellin__volume,
.dellin__weight {
    display: none;
}
.dellin__form button {
    margin: 15px 0 0 0;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: #fcaf18;
    border: none;
    box-shadow: 4px 3px 5px #777777;
    cursor: pointer;
    outline: none;
    color: #ffffff;
}
.dellin__price {
    display: flex;
    flex-direction: column;
    margin: 15px 0 0 0;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    line-height: 150%;
}
.dellin__price-value {
    font-size: 16px;
}
.delline__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #ffffff;
}
.delline__close::before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "+";
    font-size: 30px;
    width: 30px;
    height: 30px;
    transform: rotateZ(45deg);
}

/* Autocomplete  */
.autocomplete-suggestions {
    position: relative;
    overflow-y: scroll;
    background: #ffffff;
}
.autocomplete-suggestion {
    padding: 5px 10px;
    font-size: 14px;
}
.autocomplete-suggestion:hover {
    background: #eeeeee;
    cursor: pointer;
}