.checkout_form, .checkout_form *{box-sizing:border-box;-moz-box-sizing: border-box;}
.checkout_form{margin:auto;flex: 1;flex-basis: auto;width:100%;flex-grow: 1;flex-shrink: 1;}
@media (min-width: 768px) {
    
}
.checkout_form label{display:block;margin-bottom: 8px;}
.checkout_form .field input{padding:0.61em;background-color:#fff;color:#43454b;width:100%;border:1px solid #e6e6e6;letter-spacing:1px;font-size:16px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(0, 0, 0, 0.02);border-radius:5px;outline:0;}
.checkout_form .field input:focus{border-color:hsla(210, 96%, 45%, 50%);box-shadow:rgba(0, 0, 0, 0.03) 0 1px 1px 0, rgba(0, 0, 0, 0.02) 0 3px 6px 0, rgba(5, 115, 225, 0.25) 0 0 0 3px, rgba(0, 0, 0, 0.08) 0 1px 1px 0;}
.checkout_form .row1{margin-bottom:20px;}
.checkout_form .row2{width:100%;display:flex;margin-bottom:20px;flex-wrap: nowrap;justify-content: space-between;}
.checkout_form .row2 .expiry{width:49%;display:block;}
.checkout_form .row2 .cvc{width:49%;display:block;}
.checkout_form .error input{border-color:#f00075;color:#f00075;}
.checkout_form .card-content{position:relative}
.checkout_form .card-type,.checkout_form .card-cvv{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;bottom: 0;-webkit-box-pack: end;-webkit-justify-content: flex-end;-ms-flex-pack: end;justify-content: flex-end;position: absolute;top: 0;right: 0;border-color: transparent!important;background: none!important;box-shadow: none!important;outline: none!important;pointer-events: none;padding: 0.75em;}
.checkout_form .card{width:24px;height:16px;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;bottom: 0;margin-left:0.5em;}
.checkout_form .Visa{background: url("../img/Visa.png") no-repeat center transparent;}
.checkout_form .MasterCard{background: url("../img/MasterCard.png") no-repeat center transparent;}
.checkout_form .AmericanExpress{background: url("../img/AmericanExpress.png") no-repeat center transparent;}
.checkout_form .Discover{background: url("../img/Discover.png") no-repeat center transparent;}
.checkout_form .OtherCard{background: url("../img/OtherCard.png") no-repeat center transparent;}
.checkout_form .cvv{background: url("../img/cvv.png") no-repeat center transparent;}

 .search-select-container-country,.search-select-container-state {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.search-select-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.search-select-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.search-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.search-select-search {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.search-select-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.search-select-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-select-option {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-select-option:hover {
    background: #f5f5f5;
}

.search-select-option.selected {
    background: #e6f2ff;
}

.no-results {
    padding: 10px;
    color: #999;
    text-align: center;
}
.ship-to-different{
    font-size: 15px;
    cursor: pointer;
}
 .site-msg-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
    z-index: 9999;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.site-msg-box.show {
    display: block;
    animation: fadeIn 0.3s;
}
