#pop-up-image {
    display: inline-block;
}

#pop-up-image {
    width: 100%;
    height: auto;
}

#pop-up,
#pop-up-wrapper {
    width: 100%;
    height: 100%;
}

#pop-up-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    overflow: hidden;
}

#pop-up-container {
    position: absolute;
    width: 400px;
    height: 511px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

#pop-up {
    text-align: center;
    color: #fff;
}

#pop-up-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
    cursor: pointer;
    z-index: 50;
}

.dialog_close-pop {
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
}

.blue-container-pop {
    background-color: #315da5;
    text-align: center;
    height: 100%;
}

.pop-up-title {
    font: 700 25px "Roboto Mono";
    color: #fff;
    padding-top: 34px;
    margin-bottom: 25px;
}

.pop-up-desc {
    max-width: 291px;
    margin: 0 auto;
    text-align: center;
    font: 400 20px "Roboto Mono";
    color: #fff;
    padding-bottom: 38px;
}

.pop-button {
    background-color: #3783ff;
    border-radius: 10px;
    width: 310px;
    display: flex;
    align-items: center;
    border: 3px solid white;
    margin: 0 auto;
}

.pop-button-inner {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px 13px;
    justify-content: center;
    width: 100%;
}

.pop-button-inner svg {
    margin-left: 10px;
    margin-top: 5px;
}

.pop-button-text {
    font: 600 17px "Roboto Mono";
    color: white;
}

/*cookies start*/
#cookies-accept-container {
    display: none;
    position: fixed;
    width: 410px;
    height: 220px;
    background-color: var(--cookie-bg-color);
    padding: 15px 25px 15px 25px;
    z-index: 999;
    text-align: center;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.cookies-txt {
    color: var(--white);
    text-align: left;
    margin-bottom: 6px;
}

#cookies-desc {
    color: var(--white);
    font-size: var(--med-xs-h-font-size);
    margin-bottom: 10px;
    text-align: center;
    height: 65px;
    line-height: 21px;
}

#cookies-buttons {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.cookies-top {
    width: 100%;
    margin-top: 5px;
}

#cookies-close {
    width: 100%;
    height: 50px;
    font-size: var(--med-xs-h-font-size);
    color: var(--white);
    background-color: var(--blue-color);
    border: 1px solid var(--white);
    text-align: center;
    padding: 15px 0;
}

.cookies-bot {
    display: flex;
    width: 100%;
    margin-top: 10px;
}

.cookies-bot a {
    margin-bottom: 0;
    width: 50%;
    height: 50px;
    background-color: var(--main-text-color);
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    font-size: var(--med-xs-h-font-size);
}

#cookies-reject {
    margin-left: 10px;
    width: 50%;
    height: 50px;
    background-color: var(--cookie-reject-btn);
    padding: 15px 0;
    text-align: center;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: var(--med-xs-h-font-size);
}
/*cookies end*/



.dialog_box {
    position: fixed;
    width: 270px;
    height: 220px;
    padding: 30px 5px 25px;
    background-color: #262626;
    margin: auto;
    z-index: 6000;
    top: -500px;
    left: 0;
    right: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    -webkit-box-shadow: 1px 1px 5px 1px #565656;
    box-shadow: 1px 1px 5px 1px #565656;
}

.dialog_box.open {
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -125px;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.dialog_close {
    position: absolute;
    right: -10px;
    top: -5px;
    cursor: pointer;
}

.dialog_title {
    font-family: "Roboto Mono", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}

.dialog_message {
    margin-top: 15px;
    text-align: center;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    min-height: 82px;
}

.ok_button {
    font: 700 14px "Roboto Mono";
    color: #fff;
    display: inline-block;
    padding: 8px 5px;
    background: var(--yellow-text-color);
    background: var(--yellow-text-color);
    width: 200px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

#myloader {
    font-size: 8px;
    margin: 40px auto 0;
    width: 1em;
    height: 1em;
    top: 35px;
    left: 50%;
    border-radius: 50%;
    position: absolute;
    text-indent: -9999em;
    -webkit-animation: load10 1.3s infinite linear;
    animation: load10 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.dialog_prodbox {
    position: fixed;
    width: 270px;
    height: 190px;
    padding: 20px 5px 25px;
    background-color: #000;
    margin: auto;
    z-index: 6000;
    top: -500px;
    left: 0;
    right: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.dialog_prodbox.open {
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -125px;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.dialog_prodclose {
    position: absolute;
    right: 5px;
    top: 10px;
    cursor: pointer;
}

#dialog_prodmessage-container {
    padding: 0 20px;
}

.dialog_prodmessage {
    padding: 15px 0 0;
    text-align: center;
    font: 400 15px "Roboto Mono";
    color: #fff;
    min-height: 60px;
}

.dialog_cart-container {
    margin-top: 5px;
    text-align: center;
}

#dialog_cart-continue {
    font: 700 14px "Roboto Mono";
    color: #000;
    display: inline-block;
    padding: 8px 5px;
    background-color: #fff;
    width: 200px;
    cursor: pointer;
    text-transform: uppercase;
}

#dialog_cart {
    margin-top: 10px;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 8px 5px;
    width: 200px;
    background-color: #000;
    border: 2px solid #fff;
    text-transform: uppercase;
}


@media (min-width: 765px) and (max-width: 1199px) {
    #cookies-accept-container {
        inset: 0;
        margin: auto;
    }
}

@media (min-width: 0px) and (max-width: 764px) {
    #pop-up-container {
        width: calc(100% - 30px);
        height: max-content;
        background-color: #3E7825;
    }

    #pop-up-close {
        width: 35px;
        height: 35px;
    }

    .dialog_close-pop {
        right: -10px;
    }

    .blue-container-pop {
        background-color: #3E7825 !important;
        padding-bottom: 30px;
    }

    .pop-button {
        max-width: 300px;
    }

    .pop-button-text {
        font-size: 16px;
    }

    #cookies-accept-container {
        width: 100%;
        bottom: 0;
        margin: auto;
        left: 0;
    }
}