body{
    margin: 0px;
    padding: 0px;
    background-color: #f7f7f7;
    font-family: sans-serif;
}
.input input,.input textarea,.input select{
    color: #333;
    background-color: rgb(255, 255, 255, 0.1);
    width: 100%;
    padding: 15px 20px;
    font-size: 11pt;
    border-radius: 6px;
    outline: none;
    border: 2px solid #EBEDED;
    /* margin: 10px 0px; */
    box-sizing: border-box;
    }
    .input input::placeholder,form textarea::placeholder{
        color:#AAA;
    }
    .input input[disabled], .input textarea[disabled] {
        opacity: 0.5;
    }
    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        -webkit-text-fill-color: #333;
    }
    .input {
        margin: 10px 0px;
    }
    .input-group label{
        display:block;
        
    }
    .input-group{
        overflow:hidden;
        float:left;
        margin-top: 10px;
    }
    .input-group > .input{
        float:left;
        margin-right:10px;
        margin-top: 0px;
    }
    .cvv{
        float:right;
        max-width: 150px;
    }
        form input[type="submit"], form input[type="button"] {
            background-color: #0080ff;
            padding: 15px 40px;
            width: 100%;
            color: #FFF;
            cursor: pointer;
            box-shadow: 0px 3px 10px rgb(1,1,1, 0.20);
            border: 0px;
            border-radius: 6px;
            }
/*MODAL*/
.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(1, 1, 1, 0.5);
    display: none;
    z-index: 10;
}
.modal .modal-content{
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 20px);
    background-color: #FFF;
    margin: 10px auto;
    border-radius: 6px;
    box-shadow: 0px 3px 10px rgb(1,1,1 0.50);
    overflow: hidden;
}
.modal .modal-title{
    padding:15px 20px;
    border-bottom: 1px dashed #EEE;
    overflow: hidden;
}
.modal .modal-title span{
    font-weight: bold;
    float: left;
    margin-top: 4px;
}
.modal .modal-title > i{
    float:right;
    cursor:pointer;
    background-image:url(../images/close-light.svg);
    background-repeat: no-repeat;
    background-size: 16px auto;
    background-position: center;
    display:block;
    width: 24px;
    height: 24px;
}
.modal .modal-body{
    padding: 20px;
    padding-top: 10px;
    box-sizing: border-box;
    height: calc(100vh - 60px);
    overflow-y: auto;
}
.modal .modal-body::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}
.modal .modal-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,.3);
    background-color: #dbe2e6;
}
.modal .modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: transparent;
}
    /*Message*/
.message{
    z-index: 102;
    position: fixed;
    width: auto;
    height: auto;
    overflow: hidden;
    display: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    right: 0%;
    top:0;
}
.message > div{
    width: fit-content;
    max-width: 500px;
    height: auto;
    border-radius: 5px;
    text-align: center;
    border: 0px solid #CCC;
    padding: 12px;
    box-shadow: 0px 5px 10px rgb(1 1 1 / 20%);
    margin: 15px;
    position: relative;
    font-size: 11pt;
    overflow: hidden;
    text-shadow: 0px 1px 1px rgb(1 1 1 / 30%);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 9px center;
    padding-left: 37px;
    text-align: right;
}
.message-warning{background-color: rgba(150, 136, 12, 0.60);color:#FFF; background-image: url(../images/message-warning.png);}
.message-error{background-color: rgb(242 19 24 / 35%); color:#FFF;background-image: url(../images/message-error.png);}
.message-ok{background-color: rgb(9 138 0 / 54%); color:#FFF;background-image: url(../images/message-ok.png);}
.message-warning:hover{background-color: rgba(150, 136, 12, 0.90);color:#FFF;}
.message-error:hover{background-color: rgba(211, 0, 4, 0.70); color:#FFF;}
.message-ok:hover{background-color: rgb(25 167 15 / 70%); color:#FFF;}

.loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255);
    background-image: url(../images/loading.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 42px auto;
    z-index: 100;
    display: none;
    position: fixed;
    opacity: 0.6;
}

.top-message{
    text-align: center;
    background-color: #0080ff;
    padding: 10px;
    color: #FFF;
}
header{
    width: 100%;
    height: auto;
    /* overflow: hidden; */
    width: 100%;
    max-width: 1400px;
    margin:auto;

}
header .header-top{
    height: 100px;
}
header .logo{
    width: 300px;
    height: 90px;
    margin:5px 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../images/logo.png);
    float: left;
}
header .logo a{
    display: block;
    width: 100%;
    height: 100px;
}
header .search{
    float: left;
    width: calc(100% - 700px);
    margin:0px 50px
}
header .search > div{
    width: 100%;
    max-width: 500px;
    border: 1px solid #EEE;
    border-radius: 6px;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
}
header .search > div > input{
    border:0px;
    padding: 15px;
    box-sizing: border-box;
    width: calc(100% - 70px);
    outline: none;
}
header .search > div > button{
    border:0px;
    padding: 15px;
    box-sizing: border-box;
    width: 70px;
    cursor:pointer;
}
header .header-menu{
    float:right;
    width: 300px;
    margin-top:30px;
}
header .header-menu > a{
    float:right;
    display:inline-block;
    text-decoration: none;
    color:#333;
    margin-right:15px;
}
header .header-menu > a > span{
    font-size: 9pt;
    float:left;
    margin-top:5px;
    margin-left:5px;
}
header .header-menu > a > i{
    display:inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 20px;
    height: 20px;
    float:left;
}
header .header-menu > .user-login i{
    background-image: url(../images/user-login2.svg);
}
header .header-menu > .favori i{
    background-image: url(../images/favori.svg);
}
header .header-menu > .basket i{
    background-image: url(../images/basket.svg);
}
header .menu{
    width: 100%;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
}
header .menu a{
    text-decoration: none;
    display: inline-block;
    padding: 20px 30px;
    font-size: 11pt;
    color: #555;
    border-radius: 10px;
    font-weight: bold;
}
header .menu a.active{
    background-color:#0080ff;
    color: #FFF;
}
.content{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    /* min-height: calc(100vh - 200px); */
    overflow: hidden;
}
footer{
    border-top: 1px solid #EEE;
    background-color: #FFF;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding:10px 0px;
    margin-top:50px;
}
footer .social-media {
    text-align: center;
    padding: 14px 0px 10px 0px;
    float:right;
}

footer .social-media a {
    text-decoration: none;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 25px;
    border-radius: 6px;
    background-color: #AAA;
}

footer .social-media a:hover {
    opacity: 1;
}
footer .social-media a.facebook {
    background-image: url(../images/icons/facebook.svg);
    background-size: 70%;
    background-color:	#1877F277;
}
footer .social-media a.facebook:hover{
    background-color:	#1877F2;
}
footer .social-media a.twitter {
    background-image: url(../images/icons/twitter.svg);
    background-size: 100%;
    background-color:#1DA1F277;
}
footer .social-media a.twitter:hover{
    background-color:#1DA1F2;
}
footer .social-media a.instagram {
    background-image: url(../images/icons/instagram.svg);
    margin:0px;
    background-size: 70%;
    background-color:#d6297777;
}
footer .social-media a.instagram:hover{
    background-color:#d62976;
}
footer .copy-right{
    color:#5682a6;
    margin-top:15px;
    font-size:11pt;
}
.index-product{
    margin-top: 20px;
}
.index-product > a{
    float:left;
    width: calc(25% - 10px);
    border:1px solid #EEE;
    box-sizing: border-box;
    display:block;
    text-decoration: none;
    color: #222;
    border-radius: 4px;
    margin: 5px;
    padding:10px;
    background-color: #FFF;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
}
.index-product > a:hover{
    border:1px solid #EEE;
}
.index-product > a > .image{
    height: 300px;
    background-position: center;
    background-size: auto 250px;
    background-repeat: no-repeat;
    border-bottom: 1px solid #EEE;
    transition: all 0.3s ease;
}
.index-product > a:hover > .image{
    background-size: auto 300px;
}
.index-product > a > .about{
    text-align: center;
    padding: 20px 0px;
    text-align: left;
    
}
.index-product > a > .about > .title{
    font-size: 11pt;
    font-weight: bold;
}
.index-product > a > .about > .info{
    font-size: 9pt;
    margin-top: 5px;

}
.index-product > a > .buy{
    text-align: center;
    border-top: 1px solid #EEE;
    padding-top: 15px;
    padding-bottom:10px;
    overflow: hidden;
}
.index-product > a > .buy > .price{
    float:left;
    font-size: 12pt;
    margin-top: 5px;
    font-weight: bold;
}
.index-product > a > .buy > button{
    border:0px;
    padding:6px 10px;
    border-radius: 4px;
    color: #FFF;
    background-color: #cfcfcf;
    cursor: pointer;
    float: right;
    font-size: 8pt;
}
.index-product > a:hover > .buy > button{
    background-color: #0080ff;
}
.index-product > a:hover > .buy > button:hover{
    background-color: #2e94fa;
}
.page-path{
    width: 100%;
    padding:22px 0px;
    font-size: 10pt;
    text-indent: 10px;
}
.page-path > a{
    text-decoration: none;
    color: #555;
}
.page-path > a.home{
    font-weight: bold;
}
.page-path > a:hover{
    opacity: 0.5;
}
.page-path > i{
    cursor: default;
    font-style: normal;
    margin:0px 5px;
    color: #888;
}
.page-path > span{
    cursor: default;
    color: #555;
}
/*PRODUCT*/
.product{

}
.product-left{
    float:left;
    width: calc(50% - 30px);
    margin-right:30px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
}
.product-left > .image{
   width: 100%;
    height: auto;
    overflow: hidden;
}
.product-left > .image > div{
    width: 100%;
    height: 454px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-center{
    float:left;
    width: 50%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
}
.product-center > div{
    width: 100%;
}
.product-center > .title{
    font-size: 20pt;
    font-weight: bold;
    height: 40px;
}
.product-center > .amount{
    font-size: 22pt;
    border-bottom: 1px solid #EEE;
    margin-top: 10px;
    padding-bottom: 10px;
    color: #FF0000;
}
.product-center > .info{
    width: 100%;
    overflow: hidden;
    margin-top:10px;
}
.product-center > .info > div{
    width: 100%;
    overflow: hidden;
    margin:15px 0px;
    font-size: 11pt;
}
.product-center > .info > div > strong{
    display:inline-block;
    width: 150px;
}
.product-center > .info > div > i{
    display:inline-block;
    margin-right:50px;
    font-style: normal;
}
.product-center > .info > div > span{
    display:inline-block;
    width: 150px;
}
.product-right{
    float:right;
    width: 50%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    margin-top:30px;
}
.product-right > .price{

}
.product-right > .price > .piece{
    float:left;
    width: calc(40% - 30px);
    background-color:#eee;
    margin-right:30px;
    border-radius:10px;
    padding:10px 0px;
    box-sizing: border-box;
}
.product-right > .price > .piece > i{
    display:block;
    float:left;
    width: 30px;
    padding:10px;
    box-sizing: border-box;
    text-align:center;
    cursor:pointer;
}
.product-right > .price > .piece i.reduce{

}
.product-right > .price > .piece i.increase{

}
.product-right > .price > .piece input[name=piece]{
border:0px;
background-color:transparent;
text-align: center;
padding:10px;
outline:none;
width: calc(100% - 60px);
float:left;
box-sizing: border-box;
margin-top:3px;
}
.product-right > .price > .buy{
float:right;
width: 60%;
}
.product-right > .price > .buy > button{
border:0px;
border-radius:10px;
padding:20px;
text-align:center;
background-color:#0080ff;
color:#FFF;
width: 100%;
box-sizing: border-box;
font-size: 12pt;
cursor:pointer;
}
.product-info{
width: 100%;
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    margin-top:30px;
}
.product-info > .tab{

}
.product-info > .tab > span{
display:inline-block;
margin-right:25px;
font-size: 14pt;
padding:10px;
border-bottom:2px solid transparent;
cursor:pointer;
}
.product-info > .tab > span:hover{
opacity: 0.5;
}
.product-info > .tab > span.active{
border-bottom:2px solid #f6c8c8;
}
.product-info > .info-page{
margin-top:20px;
}
.product-info > .info-page > div{
padding:25px 0px;
}
/*PAGE*/
.content.page{
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    /* margin-top:30px; */
}
.content.page > .title{
    font-size: 20pt;
    width: 100%;
    margin-bottom:20px;
}
.content.user .page-title{
    font-size: 16pt;
    width: 100%;
}
.contact-left{
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    width: calc(50% - 30px);
    margin-right:30px;
    float:left;
}
.contact-right{
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding:25px;
    background-color:#FFF;
    border-radius:10px;
    box-sizing: border-box;
    width: 50%;
    float:right;
    height: 454px;
}
.contact-right > div{
    margin: 40px 0px;
}
.contact-right > div > strong{
    width: 100px;
    display: inline-block;
}
.contact-right >.title{
    font-size: 22pt;
    width: 100%;
    margin:0px;
    margin-bottom:50px;
}

/*ACCOUNT*/
.account{

}
.page-header{
    float:left;
    width: 300px;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding: 25px;
    background-color: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
}
.page-header .page-menu{
    
}
.page-header .page-menu a{
    display:block;
    text-decoration:none;
    padding:10px 20px;
    color:#000;
}
.account_information{
    float:left;
    width: calc(100% - 400px);
}
/**/

.empty{
    font-weight: bold;
    text-align: center;
    font-size: 16pt;
    color:#888;
    padding:100px 0px !important;
}


/*BASKET*/

.basket-list,.delivery-information{
    width:calc(100% - 400px);
    float:left;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding: 25px;
    background-color: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
}
.basket-detail{
    width: 380px;
    float:right;
    box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
    padding: 25px;
    background-color: #FFF;
    border-radius: 10px;
    box-sizing: border-box;
}
.basket-list ul{
    margin: 0px;
padding: 0px;
}
.basket-list ul li{
    list-style: none;
height: auto;
overflow: hidden;
border-bottom: 1px dashed #e6e6e6;
margin: 15px 5px;
/* border-radius: 7px; */
padding: 10px 0px;
}
.basket-list ul li >div:first-child {
width: 18px;
margin-right: 5px;
height: 40px;
padding-top: 28px;
float: left;
position: relative;
}
.basket-list ul li >div:nth-child(2) {
width: 55px;
margin-right: 10px;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
height: 70px;
}
.basket-list ul li >div:nth-child(3) {
width: calc(100% - 330px);
margin-top: 25px;
}
.basket-list ul li >div:nth-child(3) a{
text-decoration: none;
color:#333;
}
.basket-list ul li >div:nth-child(3) a:hover{
text-decoration: underline;
}
.basket-list ul li >div:nth-child(4) {
margin-top: 12px;
font-weight: bold;
color: #555;
}
.basket-list ul li >div:nth-child(6) {
color: #AAA;
font-size: 10pt;
margin-top: 16px;
width: 50px;
float: right;
text-align: right;
}
.basket-list ul li >div {
float: left;
width: 20%;
height: auto;
font-size: 11pt;
}

.basket-list ul li >div:nth-child(5){
    position: relative;
    margin-top: 8px !important;
}
.basket-list ul li >div:nth-child(5) input{
    width: 32px;
    border:0px;
    text-align: center;
    margin-top: 6px;
    background-color: transparent;
    color:#6b6b6b;
}
.basket-list ul li >div:nth-child(5) > div{
    border: 1px solid #f4f4f4;
    border-radius: 3px;
    height: auto;
    background-color: #fdfdfd;
    overflow: hidden;
    color: #6b6b6b;
}
.basket-list ul li >div:nth-child(5) > div > label{
    overflow: hidden;
    display: block;
    width: 23px;
    float: right;
}
.basket-list ul li >div:nth-child(5) > div > label > i{
    display: block;
    margin-top: 1px;
    padding: 0px;
    font-size: 10pt;
    cursor: pointer;
    background-size: 12px auto;
    padding: 7px;
    background-repeat: no-repeat;
    background-position: center;
}
.basket-list ul li >div:nth-child(5) > div > label > i.increase{
    background-image: url(../images/bottom-light.svg);
    transform: rotateX(180deg);
}
.basket-list ul li >div:nth-child(5) > div > label > i.reduce{
    background-image: url(../images/bottom-light.svg);
}
.basket-list ul li >div:nth-child(4),.basket-list ul li >div:nth-child(5),.basket-list ul li >div:nth-child(6){
    width: 80px;
    text-align: center;
    margin-top: 18px;
}
.basket-list ul li div.basket-button span.remove-button{
    color: #e05a5a;
    cursor:pointer;
    font-weight: bold;
}
.basket-detail > strong{
    display:block;
    margin-bottom:30px;
    text-align:center;
    font-size:14pt;
}
.basket-detail > div{
    margin: 20px 0px;
    padding-bottom: 20px;
    border-bottom:1px dashed #EEE;
}
.basket-detail > div > span:first-child{
    display:inline-block;
}
.basket-detail > div > span:last-child{
    display:inline-block;
    float:right;
}
.basket-detail .basket-button{
    text-align:center;
    border-bottom:0px;
    padding-bottom:0px;
    margin-bottom:0px;
}
.basket-detail .basket-button button{
    border:0px;
    padding:18px 30px;
    text-align: center;
    background-color:#0080ff;
    color:#FFF;
    border-radius: 6px;
    cursor:pointer;
    font-weight: bold;
    font-size:11pt;
}
.basket-open{
    border: 1px solid #ffffff00;
    background-color: #00000036;
    padding: 3px 11px;
    font-size: 10pt;
    cursor: pointer;
    margin-top: 5px;
    border-radius: 3px;
    color: #FFF;
}

    /*LOGIN*/
    .login{
        width: 350px;
        border:1px solid #EEE;
        border-radius:6px;
        padding:35px 50px;
    
        box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
        padding: 25px;
        background-color: #FFF;
        border-radius: 10px;
        box-sizing: border-box;
        margin:auto;
        
    }
    .login .login-header {
    background-color: #fbfbfb;
    overflow: hidden;
    width: auto;
    margin: auto;
    display: inline-block;
    border-radius: 6px;
    width: 100%;
    }
    .login .login-header span {
    padding: 18px 40px;
    display: block;
    float: left;
    /* border-radius: 6px; */
    font-weight: bold;
    color: var(--color3);
    text-align: center;
    /* margin: 7px; */
    cursor: pointer;
    width: 50%;
    box-sizing: border-box;
    font-size: 10pt;
    }
    .login .login-header span.active {
        background-color: rgb(0 128 255);
        color: #FFF;
    }
    .login-content > form{
        display:block;
    }
    .login form{
        display:none;
    }
    .login form.active{
        display:block;
    }
    .login-info {
        margin-top: 10px;
    font-size: 10pt;
    color: var(--color3);
    }
    .login-info a {
        color: var(--color3);
    font-weight: bold;
    text-decoration: none;
    }
    .forgotMyPasswordButton {
        text-align: right;
        width: 100%;
        margin: auto;
        }
        .forgotMyPasswordButton a {
        text-decoration: none;
        color: var(--color3);
        font-size: 10pt;
        }
        .forgotMyPasswordButton a:hover{
        text-decoration: underline;
        }
        .forgotMyPasswordButton a i {
        margin-left: 5px;
        }
        .securityCode{
            display:none;
            }
            .securityCode > div:first-child {
            width: 200px;
            height: 65px;
            background-image: url(/?handler=Security);
            border-radius: 6px;
            float: left;
            }
            .securityCode > div:nth-child(2) {
            width: calc(100% - 243px);
            float: left;
            margin-top: 30px;
            margin-left: 5px;
            color: var(--color3);
            font-size: 9pt;
            text-align: left;
            }
            .securityCode > div:nth-child(2) span:hover {
            cursor: pointer;
            text-decoration: underline;
            }
            .securityCode > div:nth-child(2) span i {
            margin-right: 3px;
            }
    /**/
    
    .user-content{
        float: left;
        width: calc(100% - 320px);
        margin-left: 20px;
        box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
        padding: 20px;
        background-color: #FFF;
        border-radius: 10px;
        box-sizing: border-box;
        margin-bottom:20px;
    }
 
    /**/

    .address{
        margin:0px;
        padding:0px;
    }
    .address > li{
        list-style: none;
        width:calc(50% - 20px);
        float:left;
        height:115px;
        border:1px solid #EEE;
        border-radius:6px;
        margin:10px;
        box-sizing: border-box;
        cursor:pointer;
        overflow: hidden;
    }
    .address > li > .address-checked{
        float:left;
        width:30px;
        background-color:#f9f9f9;
        height:115px;
        background-size:18px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .address > li:hover > .address-checked{
        background-color:#EEE;
    }
    .address > li.active > .address-checked{
        background-color:#7fdd86;
        background-image: url(/templates/default/images/selected-light.svg);
    }
    .address > li > .address-detail{
        float:left;
        width:calc(100% - 30px);
        padding:10px 20px;
        box-sizing: border-box;
    }
    .address > li > .address-detail > .address-edit{
        font-size:9pt;
        text-align:right;
        margin-bottom:10px;
        opacity: 0;
        color: #0080ff;
        font-weight: bold;
    }
    .address > li:hover > .address-detail > .address-edit{
        opacity: 1;
    }
    .address > li > .address-detail > .address-name{
        font-size:9pt;
        margin-bottom:5px;
    }
    .address > li > .address-detail > .address-name span:last-child{
        float:right;
    }
    .address > li > .address-detail > .address-address{
        font-weight: bold;
        font-size:10pt;
    }
    .address > li.address-add > div{
        padding-top:45px;
        text-align:center;
        font-size:13pt;
        font-weight: bold;
    }
    #address_company_group{
        display:none;
    }
    .input.radio{
        background-color:#e9f0f7;
        border-radius: 6px;
        overflow: hidden;
    }
    .input.radio > div{
        display:block;
        float:left;
        width: 50%;
    }
    .input.radio input{
        display:none;
    }
    .input.radio input:checked ~ label{
        background-color: #2e567d;
        color: #FFF;
    }
    .input.radio label{
        display: block;
        width: 100%;
        text-align: center;
        padding:15px 0px;
        box-sizing: border-box;
        cursor: pointer;
        
    }

    /**/

    .order-success > div{
        float:left;
        width: calc(25% - 15px);
        box-shadow: 0px 3px 10px rgb(1, 1, 1, 0.05);
        padding: 25px;
        background-color: #FFF;
        border-radius: 10px;
        box-sizing: border-box;
        margin-top: 10px;
        height: 250px;
        margin-left: 20px;
    
    }
    .order-success > div:first-child{
        margin-left:0px;
    }
    .order-success > div > .title{
        font-weight: bold;
        display: block;
        margin-bottom:15px;
        font-size: 12pt;
    }
    .order-success > div > .content-order{
        overflow: hidden;
        font-size: 11pt;
    
    }
    .order-success > div > .content-order > div{
        overflow: hidden;
        margin:10px 0px;
    }
    .order-message{
        padding:30px 0px !important;
        margin-top:0px !important;
    }
    .order-message > div:first-child{
        font-size:22pt;
        font-weight: bold;
        color:#1cc300;
        text-align: center;
    
    }
    .order-message > div:last-child{
        margin-top:20px;
        text-align: center;
    }
    .order-message > div:last-child > div{
        font-size: 18pt;
        font-weight: bold;
        color: #4c7197;
        width: auto;
        padding: 15px 50px;
        border-radius: 10px;
        display: inline-block;
        /* background-color: #4c7197; */
        border: 2px solid #ecf0f3;
    }
    .order-message > div:first-child{
        text-align: center;
    }
    .order-message > div:first-child i{
        display: inline-block;
        width: 70px;
        height: 70px;
        background-image: url(../images/order-success.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .order-message > div:first-child span{
        display: block;
        margin-top: 5px;
    }

    /**/

    .account_order{
        width: calc(100% - 320px);
        margin-left: 20px;
        float: right;
    }
    .account_order.order-success > div{
        width: calc(50% - 10px);
        height: 160px;
        margin-right: 20px;
        margin-left:0px;
        margin-top:0px;
        margin-bottom:20px;
    }
    .account_order.order-success > div:nth-child(2n) {
    margin-right: 0px;
}
.account_order.order-success > div > .title{
    margin-bottom:0px;
}
.account_order.order-success > div > .content-order{
    font-size: 10pt;
}
.account_order_products > div{
    width: 100% !important;
    height: auto !important;
}
.account_order_products > div .content-order ul{
margin:0px;
padding:0px;
}
.account_order_products > div .content-order li{
list-style: none;
overflow: hidden;
border-top:1px solid #EEE;
}
.account_order_products > div .content-order li:first-child{
    border-top:0px;
}
.account_order_products > div .content-order li > div{
    float:left;
}
.account_order_products > div .content-order li > div a{
    text-decoration: none;
    color:#000;
}
.account_order_products > div .content-order li > div:nth-child(1) {
    width: 55px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: 35px auto;
    background-position: center;
    height: 70px;
}
.account_order_products > div .content-order li > div:nth-child(2) {
    width: calc(100% - 230px);
    margin-top: 25px;
}
.account_order_products > div .content-order li > div:nth-child(3), .account_order_products > div .content-order li > div:nth-child(4) {
    width: 80px;
    text-align: center;
    margin-top: 18px;
    font-size: 11pt;
}
.order_success_products{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    /* min-height: calc(100vh - 200px); */
    overflow: hidden;
    float: inherit;
    margin-top: 30px;
}