/* Main */

body {
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    font-family: 'PT Sans', sans-serif;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    z-index: 1;
}

.section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

.center {
    margin: 0 auto;
}

.center-text {
    text-align: center;
}

h1 {
    font-size: 50px;
}

a {
    text-decoration: none;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    padding: 16px 44px;
    font-size: 17px;
    background-color: #85c237;
    border-radius: 50px;
    /* display: block; */
    border: 0;
    color: white;
    cursor: pointer;
    margin-top: 8px;
}

button.call {
    background: lightslategray;
    /* background: #191919; */
    /* color: #dadada; */
    margin-top: 11px;
}

img {
    vertical-align: sub !important;
}


/* Header */

.header {
    width: 100%;
    margin: 0 auto;
    color: #fff;
    clear: both;
    background: url(https://images.unsplash.com/photo-1510693306332-74189fa090d4?ixlib=rb-0.3.5â€¦jEyMDd9&s=7892807â€¦&auto=format&fit=crop&w=970&q=80);
    height: 110px;
    line-height: 110px;
    background-attachment: fixed;
    position: relative;
    /* background: #5b8026; */
    /* background: url(../img/newBg.png); */
    background-repeat: repeat;
    animation: goUp 1.5s;
}

.header .image-overlay {
    background-color: rgba(42, 82, 58, 0.86);
    width: 100%;
    height: 110px;
    z-index: -1;
    position: absolute;
    /* background: url(../img/overlay.png); */
    background-size: 78%;
    background-repeat: no-repeat;
    background-position: left;
}

.menu {
    float: right;
    padding-right: 6%;
    /* padding-top: 19px; */
}

.menu .link {
    margin-left: 16px;
    font-size: 22px;
    color: #fff;
}

.menu .link.cartButton {
    background: #213c2ec2;
    padding: 8px 13px;
    border-radius: 4px;
    font-size: 18px;
}

.actions {
    margin-top: 30px;
    width: 245px;
    /* margin-left: 8%; */
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    text-align: center;
    font-size: 18px;
    float: left;
    padding-left: 9%;
    color: white;
}

.logo img {
    width: 76px;
    /* border-radius: 50px; */
    margin-top: -15px;
    margin-right: 6px;
    vertical-align: text-top!important;
}

.logo span {
    float: right;
    line-height: 25px;
    margin-top: 30px;
    margin-left: 11px;
}


/* Grid */

.content {
    width: 70%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 150px;
    z-index: 10000;
}

.wrapper {
    display: grid;
    grid-template-columns: 46% 46%;
    grid-column-gap: 8%;
    grid-row-gap: 1%;
    background-color: #fff;
    color: #444;
    animation: goUp 2s;
}

.product {
    border-radius: .5em;
    font-size: 150%;
    transition: 0.5s;
    margin-bottom: 10px;
    min-height: 400px;
    /* cursor: pointer; */
    position: relative;
}

.product:hover {
   /* margin-top: -10px;
    transition: 0.7s;*/
}
.product-image-wrapper {
    height: 45vh;
    width: 100%;
    position: relative;
}

.product-image-wrapper:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    width: 29.5vh;
    height: 29.5vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    background: #85c237;
    box-shadow: 0px 0px 20px -5px #6d6d6d;
}

@media screen and (min-width: 480px) and (max-width: 892px) {
    .product-image-wrapper:before {
        max-width: 100%;
        height: 0px;
        padding-bottom: 100%;
    }
}

.product-img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    object-fit: contain;
    /* height: 270px; */
    cursor: pointer;
}

.product img.revert-picture {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 2%;
    background: #f2f2f2;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2;
}

.product .size-options {
    width: 70%;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    margin-top: 2vh;
    cursor: default;
}

.product .size-options .option {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 19px;
    position: relative;
    cursor: default;
}

.product .size-options .option input[type='radio'] {
    margin-bottom: 9px;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0px;
    visibility: hidden;
    cursor: pointer;
}

.product .size-options .option input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -5px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
    cursor: pointer;
}

.product .size-options .option input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -5px;
    position: relative;
    background-color: #85c237;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
    cursor: pointer;
}

.product .size-options .option label {
    cursor: pointer;
}

.product .size-price {
    margin-top: 3vh;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.product .price-discount {
    position: absolute;
    margin-top: 56px;
    font-size: 10px;
    color: white;
    left: 50%;
    cursor: pointer;
	width: 65px;
	text-align: center;
	background-color: #85c237;
	padding: 2px;
	border-radius: 5px;
}

.product .product-buttons {
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.product button {
    margin-left: 20px;
}

.product button img {
    width: 21px;
    height: auto;
    margin-left: 1px;
}

.info {
    padding: 5px;
}

.name {
    font-size: 19px;
    min-height: 35px;
    text-align: center;
}

.weight {
    font-size: 17px;
    float: left;
}

.price {
    font-size: 17px;
    float: right;
    margin-bottom: 23px;
}

.line-right {
    float: right;
    margin-right: 30px;
    font-size: 15px;
}

.link {
    color: black;
    text-decoration: none;
}

.blue {
    background: #1fb3e8;
}

.green {
    background: #68cc93;
}


/* Footer */

.footer {
    width: 100%;
    height: 40vh;
    position: relative;
    background: #f5f5f5;
    clear: both;
    z-index: 0;
}

.footer .social {
    padding-top: 10%;
    margin-left: 16%;
}

.footer .link {}

.footer .text {
    padding-top: 10%;
    width: 50%;
    margin-right: 16%;
}

.footer .copyright {
    position: absolute;
    right: 16%;
    bottom: 25px;
}

.footer .sfy {
    display: inline;
    margin-left: 15px;
}


/* Popup */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 0px;
    display: none;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
    z-index: 9999999;
    height: 100vh;
    display: block;
}

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 55%;
    position: relative;
    transition: all 5s ease-in-out;
    z-index: 9999999;
}

.popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: #06D85F;
}

.popup .content {
    max-height: 30%;
    overflow: auto;
    margin-bottom: 40px!important;
}

.popup input {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #c3c3c3;
}

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }
    .popup {
        width: 90%;
    }
}


/* Cart */

.cart-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999999;
    display: none;
}

.cart {
    background: #fff;
    color: #000;
    z-index: 99999999;
    /* width: 22%; */
    width: 300px;
    min-width: 300px;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    right: 0;
    top: 0;
    height: 100vh;
    animation: showCart 0.7s;
    display: none;
}

.cart #cartClose {
    font-size: 32px;
    position: absolute;
    right: 17px;
    top: 14px;
    cursor: pointer;
}

.cart h2.heading {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 5px;
}

.cart span.heading-logo {
    text-align: center;
    display: block;
    font-size: 30px;
}

.cart #cartContent {
    box-sizing: border-box;
    padding: 10%;
    padding-top: 50px;
    padding-bottom: 200px;
}

.cart .cart-product {
    width: 100%;
    min-height: 123px;
    margin-top: 20px;
}

.cart .cart-product img {
    width: 25%;
    float: left;
    min-height: 65px;
    object-fit: cover;
}

.cart .cart-product .cart-product-about {
    float: left;
    margin-left: 7%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 68%;
}

.cart .cart-product h4 {
    margin: 13px 0;
}

.cart .cart-product span {}

.cart .cart-product .cart-product-line {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.cart .cart-product input {
    width: 48px;
    padding: 4px 9px;
    margin-top: 14px;
    border: 0;
    background: #ebeceb;
    /* border-radius: 3px; */
    height: 32px;
    font-size: 14px;
}

.cart .input-group {
    display: flex;
}

.cart .button-plus,
.cart .button-minus {
    width: 20px!important;
    padding: 4px 1px!important;
}

.cart .button-plus {
    border-radius: 0px 3px 3px 0px;
    ;
}

.cart .button-minus {
    border-radius: 3px 0px 0px 3px;
    ;
}

.cart .cart-product .cart-product-price {
    /* align-self: flex-end; */
}

.cart .cart-product .cart-product-top-line {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.cart .cart-product .cart-product-top-line span {
    cursor: pointer;
    font-size: 22px;
    color: gray;
    display: none;
    animation: smooth 0.4s;
}

.cart .cart-product:hover .cart-product-top-line span {
    display: block;
}

.cart .cart-action {
    width: 300px;
    background: white;
    position: fixed;
    bottom: 0;
}

.cart .cart-action-line {
    width: 300px;
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    margin-top: 10px;
}

.cart .cart-action-line h3 {}

.cart .cart-action-line span {}

.cart .cart-action button {
    width: 95%;
    margin: 0 auto;
    display: block;
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 12px 35px;
    font-size: 18px;
    background-color: #85c237;
}


/* Cart Mobile Modal */

#mobileCartModal {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: #171717;
    color: white;
    padding: 2.5vh 25px;
    box-sizing: border-box;
    font-size: 18px;
    display: none;
    animation: showMobileCartModal 1s;
}


/* Checkout */

#checkout {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    z-index: 9999999;
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
}

#checkout .closeCheckout {
    font-size: 31px;
    position: absolute;
    right: 17px;
    top: 14px;
    cursor: pointer;
    color: gray;
    display: none;
}

#checkout .order {
    padding: 8%;
    padding-left: 27%;
}

#checkout .order h3 {
    font-family: inherit;
    color: #333;
}

#checkout .order input:not(#no_recall) {
    display: block;
    padding: 11px 13px;
    max-width: 400px;
	width: 100%;
    margin-top: 14px;
    border-radius: 7px;
    border: 1px solid #f3f3f3;
    background: white;
    font-size: 14px;
    transition: 1s;
    -webkit-appearance: none;
}

#checkout .order input:not(#no_recall):hover {
    border: 1px solid lightgreen;
}

#checkout form {
    max-width: 401px;
}

#checkout .order .half {
    width: 198px;
    display: inline-block;
}

#checkout .order select {
    display: block;
    margin-top: 14px;
    background: white;
    border: 1px solid #f3f3f3;
    height: 38px;
    font-size: 14px;
    padding: 11px 13px;
    max-width: 400px;
	width: 100%;
    color: #757575;
    -webkit-appearance: none;
}

#checkout .order button {
    background: #1176e2bf;
}


/* Product Modal */

.modal-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: block;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 999999;
}

.fancybox-container {
    z-index: 9999999 !important;
}

.modal-overlay .modal {
    width: 70%;
    height: 80vh;
    background: white;
    box-sizing: border-box;
    border-radius: 12px;
    position: relative;
    /* animation: smooth 0.7s; */
}

.modal-overlay .modal .modal-close {
    position: absolute;
    right: 2%;
    top: 2%;
    z-index: 100;
    cursor: pointer;
    font-size: 26px;
}

.modal-overlay .modal .modal-data {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.modal-overlay .modal .modal-image {
    width: 40%;
    border-right: 1px solid #e6e6e6;
    position: relative;
}

.modal-overlay .modal .modal-image .revert-picture-modal {
    height: 35px;
    width: 35px;
    position: absolute;
    right: 3%;
    top: 40%;
    background: #f2f2f2;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.modal-overlay .modal .modal-data img {
    width: 100%;
    height: calc(100% - 123px);
    object-fit: scale-down;
    /* border-right: 1px solid #e6e6e6; */
}



.modal-overlay .modal .size-options {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
}

.modal-overlay .modal .size-options .option {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 19px;
    position: relative;
}

.modal-overlay .modal .size-options .option input[type='radio'] {
    margin-bottom: 9px;
}

.modal-overlay .modal .size-options .option input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -5px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.modal-overlay .modal .size-options .option input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -5px;
    position: relative;
    background-color: #85c237;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

.modal-overlay .modal .size-options .option label {
    cursor: pointer;
}

.modal-overlay .modal .size-price {
    margin-top: 2vh;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.modal-overlay .modal .price-discount {
    font-weight: bold;
    position: absolute;
    margin-top: 53px;
    font-size: 11px;
    color: #4ea077;
    right: 1px;
    cursor: pointer;
}

.modal-overlay .modal .modal-data .modal-content {
    width: 60%;
    box-sizing: border-box;
    padding: 5%;
}

@media screen and (min-width: 480px) {
    .modal-overlay .modal .modal-data .modal-content {
        overflow: auto;
    }
}

.modal-overlay .modal .modal-data .modal-content h3 {}

.modal-overlay .modal .modal-data .modal-content span.modal-product-price {
    font-size: 14px;
    display: block;
    margin-bottom: 4vh;
}

.modal-overlay .modal .modal-data .modal-content p {
    font-size: 17px;
    overflow-y: auto;
    height: 51vh;
}

.modal-overlay .modal .modal-data .modal-content .modal-product-size {
    position: absolute;
    bottom: 20%;
    display: flex;
    align-items: center;
}

.modal-overlay .modal .modal-data .modal-content .modal-product-size span {
    margin-right: 15px;
}

.modal-overlay .modal .modal-data .modal-content .modal-product-size select {
    padding: 5px 9px;
}

.modal-overlay .modal .modal-data .modal-content .modal-actions {
    position: absolute;
    bottom: 0px;
    right: 3%;
    background: white;
    padding-bottom: 22px;
}

.modal-overlay .modal .modal-data .modal-content .modal-actions .mb-call {
    background: none;
    border: 1px solid #4ea077;
    margin-right: 10px;
    color: #4ea077;
}

.modal-overlay .modal .modal-data .modal-content .modal-actions .mb-order {}


/* Animations */

@keyframes smooth {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        transform: translateX(-104px);
    }
    to {
        transform: translateX(1px);
    }
}

@keyframes fadeUp {
    from {
        transform: translateX(20vh);
    }
    to {
        transform: translateX(0vh);
    }
}

@keyframes goUp {
    from {
        transform: translateY(-100px);
    }
    to {
        transform: translateY(0px);
    }
}

@keyframes showCart {
    from {
        transform: translateX(300px);
    }
    to {
        transform: translateX(1px);
    }
}

@keyframes showMobileCartModal {
    from {
        transform: translateY(8vh);
    }
    to {
        transform: translateY(0px);
    }
}


/* Tablet Version */

@media (min-width: 768px) and (max-width: 1024px) {
    .wrapper {
        grid-template-columns: 50% 50%;
        grid-gap: 3% 6%;
    }
    #checkout .closeCheckout {
        display: block;
    }
}

.serts-wrapper {
        height: auto !important;
    }

/* Mobile Version */

@media (max-device-width: 480px) {
    .sert_img-last{
        width: 110% !important;
    }
    .serts .box {
        margin: auto !important;
    }
    .sert_img {
        width: 60% !important;
    }
    .serts-wrapper {
        overflow-y: revert;
    }
    .partners {
        display: none;
    }
    .product {
        margin-bottom: 40px;
    }
    .product button {
        margin: 14px auto;
        margin-left: 14px;
    }
    .flex-container {
      display: flex;
    }

    .flex-item {
      flex: 1;
    }
    .wrapper {
        grid-template-columns: 100%;
        display: block;
    }
    .content {
        width: 100%;
        margin-top: 40px;
        margin-left: 0;
        margin-bottom: 50px;
    }
    /* Header */
    .header {
        height: 175px;
    }
    .header .image-overlay {
        width: 100%;
        height: 175px;
        z-index: -1;
        position: absolute;
        /* background: url(../img/overlay.png); */
        background-size: 250%;
        background-repeat: no-repeat;
        background-position: left;
    }
    .actions {
        /*   display: none; */
        width: 65%;
        margin-top: 100px;
    }
    .logo span {
        display: none;
    }
    .logo img {
        width: 55px;
    }
    .menu .link {
        font-size: 16px;
    }
    .popup input:nth-child(2) {
        margin-left: 0px!important;
        margin-top: 10px;
    }
    /* Footer */
    .footer {
        height: 70vh;
    }
    .footer .text {
        padding-top: 4%;
        width: 90%;
        margin-left: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 10%;
        float: left;
    }
    .footer .social {
        padding-left: 10%;
        margin-left: 0;
    }
    .footer .copyright {
        position: relative;
        right: 0;
        bottom: 0;
        padding-left: 10%;
        float: left;
        margin-top: 20px;
        width: 82%;
        line-height: 25px;
    }
    .footer .sfy {
        display: block;
        margin-left: 0;
    }
    #mobileCartModal {
        /* display: block; */
    }
    #checkout .closeCheckout {
        display: block;
    }
    #checkout .order input {
        width: 100%;
    }
    #checkout .order input.half {
        /* width: 49.3%; */
        width: 100%;
    }
    #checkout .order select {
        width: 100%;
        height: 43px;
    }
    #checkout .order {
        padding-left: 8%;
		padding: 20px 30px 50px 30px;
    }
    /* Modal Mobile */
    .modal-overlay .modal {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        overflow-y: scroll;
    }
    .modal-overlay .modal .modal-data {
        display: block;
    }
    .modal-overlay .modal .modal-image {
        width: 100%;
        height: 45vh;
    }
    .modal-overlay .modal .modal-data img {
        object-fit: scale-down;
    }
    .modal-overlay .modal .modal-data .modal-content {
        width: 100%;
        padding-top: 10px;
    }
    .modal-overlay .modal .modal-data .modal-content p {
        padding-bottom: 10vh;
        overflow: unset;
        height: auto;
    }
    .modal-overlay .modal .modal-data .modal-content .modal-actions {
        bottom: 0vh;
        background: white;
        padding-bottom: 22px;
        position: fixed;
        right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-overlay .modal .size-options {
        margin-top: 2vh;
        padding-bottom: 2vh;
        border-bottom: 1px solid #e6e6e6;
    }
    .modal-overlay .modal .modal-image .revert-picture-modal {
        height: 40px;
        width: 40px;
        right: 6%;
        padding: 9px;
    }
    .product img.revert-picture {
        height: 45px;
        width: 45px;
        padding: 14px;
        right: 5%;
        top: 40%;
    }
    .modal-overlay .modal .size-options .option input[type='radio'] {
        -webkit-appearance: none;
        -webkit-border-radius: 0px;
        border-radius: 0;
    }
}

@media (min-device-width: 320px) and (max-device-width: 374px) {
    .modal-overlay .modal .modal-data .modal-content .modal-actions {
        bottom: 0vh;
        right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal-overlay .modal .modal-data .modal-content h3 {
        margin-top: 6vh;
    }
    .modal-overlay .modal .modal-data .modal-content p {
        padding-bottom: 15vh;
        overflow: unset;
        height: auto;
    }
    button {
        padding: 12px 22px;
    }
}

@media screen and (max-width: 960px){

	.product .price-discount {
		margin-left: -35px;
	}

}

.select-container {
    margin-top: 14px;
}

.select2.select2-container {
    width: 100% !important;
    z-index: 0;
}

.select2-container:not(.select2) .select2-search__field {
    width: 100% !important;
    z-index: 1;
}

.select2-results__option {
    padding: 11px 13px !important;
}

.select2-container--default .select2-selection--single {
    padding: 11px 13px;
    border-color: white !important;
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 1 !important;
    padding: 0px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px !important;
}

.select2.select2-container.select2-container--open .select2-selection--single {
    border-color: lightgreen !important;
    border-bottom-color: white !important;
}

.select2.select2-container.select2-container--open.select2-container--above .select2-selection--single{
    border-color: lightgreen !important;
    border-top-color: white !important;
}

.select2-dropdown {
    border-color: lightgreen !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
    background-color: #1176e2bf !important;
    color: white !important;
}

.error-holder {
    color: red;
}
.select-2-error-holder {
    color: red;
}

button.invalid {
  background-color: gray !important;
  color: white;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#spinner {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 2s infinite linear;
}

.option {
  position: relative;
}

.click-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.menu-link {
  color: #85c237; /* Цвет по умолчанию */
}

.menu-link:hover {
  color: #003116; /* Цвет при наведении */
}



@media (min-width: 1200px) {
    #checkout .order {
        max-height: 100vh;
        overflow: auto;
    }
}










.phone-box-store {
    float: right;
    height: 100%;
    padding-top: 18px;
    padding-right: 30px;
}
.phone-box-store a {
    width: 100%;
    line-height: 1.2;
}
.phone-box-store a span {
    color: #fff !important;
}
.phone-box-store .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 25px;
}

.phone-box-store .phone .icon {
    fill: #8ac542;
    width: 18px;
    height: 18px;
    margin-right: 5px
}

@media (min-width: 600px) {
    .phone-box-store .phone .icon {
        margin-right: 10px
    }
}

@media (min-width: 1000px) {
    .phone-box-store .phone .icon {
        width: 20px;
        height: 20px
    }
}

.phone-box-store .phone span {
    font-family: 'Leftonade', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 500
}

@media (min-width: 600px) {
    .phone-box-store .phone span {
        font-size: 18px
    }
}

@media (min-width: 1000px) {
    .phone-box-store .phone {
        position: static
    }
}
.phone-box-store img {
    margin-right: 5px;
    width: 20px;
}



/*@media (max-width: 500px) {*/
/*    .phone-box-store .phone span {*/
/*        font-size: 10px*/
/*    }*/
/*    .phone-box-store {*/
/*        padding-right: 0;*/
/*    }*/
/*    .phone-box-store img {*/
/*        display: none;*/
/*    }*/

/*    .phone-box-store {*/
/*        display: none !important;*/
/*    }*/
/*}*/
#pSize65 .price-discount,
#pSize64 .price-discount {
    background-color: #ff5f5f;
}

@media (max-width: 550px) {
    .phone-box-store .phone span {
        font-size: 12px
    }
    .phone-box-store {
        padding-right: 0;
    }
    .phone-box-store {
        position: absolute;
        left: 0;
        bottom: 5px;
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .phone-box-store .phone {
        display: block;
        width: auto;
        margin: 0 10px;
    }
    .phone-box-store img {
        width: 15px;
        margin: 0;
    }
    .header {
        min-height: 120px;
    }
    .header .image-overlay {
        min-height: 120px;
    }
}



.no-recall-wrap {
    margin-bottom: 10px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
		-webkit-align-items: center;
		z-index: 0;
    position: relative;
}
.no-recall-wrap label {
    flex: 1;
    -webkit-flex: 1;
	padding-left: 10px;
}
#checkout .order .no-recall-wrap input {
	width: auto;
}

@media screen and (max-width: 460px){
	#checkout .order button {
		width: 100%;
		max-width: 400px;
	}
}