.product-options > div, .product-options .product-option{
    padding: 1.4rem 0;
}

.product-options select {
    /* margin-left: 0.4rem; */
    width: 100% !important;
    margin: 0;
    padding: 5px 15px;
    -webkit-appearance: none;
    appearance: none;
}

  
.product-options .select-wrapper {
    position: relative;
}

.select_arrow {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 9px 6px 0 6px;
    border-color: #aaa transparent transparent transparent;
}


/* .logo-option, .text-option {
    display: none;
} */
.file-upload__preview {
    width: 66%;
    margin: 15px auto;
    border: 1px solid #999999;
}


/* Order sum */
/* #order-sum .sum-item {
    padding: 15px 0px;
    border-top: 1px solid #999999;
} */

#order-sum .sum-item-first {
    border: none;
}

#order-sum .sum-item.sum-additional {
    display: none;
}

/* #order-sum .sum-item:after {
    content: "";
    background: black;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 50%;
} */

#order-sum .pair-container {
    display: flex;
    width: 100%;
}

#order-sum .value{
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
    text-align: right;
}

#order-sum .title {
    width: fit-content;
}
#order-sum .title:after{
    content: ':';
}


/*  Util  */
.hide {
    display: none;
}



/* Update 13/06 */
.additional-name.product-option .checkbox-container {
    display: block !important;
}


/* Logo suggest */
.overlay img, .uploaded-logo-select img{
    margin: auto auto;
    display: block;
    object-fit: cover;
    width:100%;
    /* height: 100%; */
}



.checkmark.checked {
    display:inline-block;
    position: absolute;
    width: 22px;
    height:22px;
    background: #3197eb;
    border-radius:50%;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    right: 10px;
    top: 10px;
}

.checkmark.checked:before{
    content:"";
    position: absolute;
    width:3px;
    height:9px;
    background-color:#fff;
    left:11px;
    top:6px;
}

.checkmark.checked:after{
    content:"";
    position: absolute;
    width:3px;
    height:3px;
    background-color:#fff;
    left:8px;
    top:12px;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    /* display: block; Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0; 
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.no_selection {
    user-select: none; /* standard syntax */
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.no-spin::-webkit-inner-spin-button, .no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.no-spin {
    -moz-appearance:textfield !important;
}

.preview-text .value {
    font-weight: 600;
    /* padding: 4px; */
}


/* wholesale price */
.whitebx {
    background-color: #fafafa;
    border: 1px solid #343a40;
    padding: 1em;
}

.whitebx .section {
    display: flex;
    flex-wrap: wrap;
}

.section > div {
    width: 20%;
}

.section > div .price {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.section > div .price .reversed {
    display: flex;
    flex-direction: column;
}

.section > div .price strong {
    color: #fe6e10;
    font-size: 1.2em;
}

.section > div .price strong:hover {
    transform: scale(1.05);
    transition: 1.5s;
}

.whitebx .section .price span {
    font-weight: 700;
    color: #070;
}

.product-mobile-showmore {
    display: none;
}

@media only screen and (max-width: 560px) {
    .whitebx .section {
        flex-wrap: unset;
        flex-direction: column;
    }

    .section > div {
        width: 100%;
        margin-bottom: 1.3em;
    }

    .section > div .price {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .section > div .price .reversed {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }

    .whitebx .section .price span {
        margin-right: 1.3em;
    }

    .section > div .price strong {
        font-weight: 900;
    }

    .whitebx {
        padding: 1em !important;
    }

    .product-mobile-showmore {
        display: flex;
        flex-direction: column;
    }

    a.product-mobile-showmore > span {
        height: 2.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #e9e9e9;
        color: #393536;
        border: 1px solid #dbdbdb;
        border-radius: 3px;
        font-weight: 600;
        font-size: 18px;
    }

    .whitebx .section .price span {
        font-size: .9em;
    }

    .product-mobile-showmore .open-txt,
    .product-mobile-showmore .closed-txt {
        display: none;
        cursor: pointer;
    }
}