.style_step {
    max-width: 520px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.style_step ul{
    text-align: center;
}
.style_step ul li {
    position: relative;
    width: 33%;
    padding: 0;
}
.style_step ul li .number {
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
    padding-top: 4px;
    font-weight: bold;
    background: #e3e3e3;
}
.style_step ul li .text {
    margin-top: 10px;
    display: block;
    color: #3f3f3f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.style_step ul li.active .number {
    background: #ffd600;
}
/*=================================================================*/
.tableCart{
    border:solid 1px #dbdbdb;
}
.tableCart .title {
    font-weight: bold;
    background: #f6f6f6;
    text-transform: uppercase;
    padding: 9px 20px;
    border-bottom:solid 1px #dbdbdb;
}
.tableCart .item{
    border-bottom:solid 1px #dbdbdb;
}
.tableCart .item:last-child{
    border-bottom: none;
}
.tableCart .item .grid{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.tableCart .item .grid .col1{
    width: 250px;
    padding: 20px;
    border-right:solid 1px #dbdbdb;
}
.tableCart .item .grid .col2{
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: -o-calc(100% - 250px);
    width: calc(100% - 250px);
}
.tableCart .item .info{
    padding: 20px;
    position: relative;
}
.tableCart .item .info .name{
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.tableCart .item .info .attr{
    color:#666666;
}
.tableCart .item .info .attr p{
    padding: 0;
}
.tableCart .item .info .delItem{
    width: 25px;
    height: 22px;
    position: absolute;
    top: 15px;
    right: 10px;
    color:#ffd600;
}
.tableCart .item .info .delItem:before{
    content: "\f2d3";
    font-family: fontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.tableCart .item .info .delItem:hover{
    color:#ee0000;
}
.tableCart .item .tools{
    padding: 20px;
    background: #f6f6f6;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.tableCart .item .tools .form strong{
    display: block;
    margin-bottom: 10px;
}
.tableCart .item .tools .form strong span{
    font-weight: normal;
    font-style: italic;
}
.tableCart .item .tools .form select{
    width: 150px;
    height: 40px;
    border-radius: 5px;
    border:solid 1px #c5c5c5;
    padding-left: 10px;
}
.tableCart .item .tools .form .df{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.tableCart .item .tools .form .df input{
    width: 50px;
    height: 40px;
    border-radius: 5px;
    border:solid 1px #c5c5c5;
    text-align: center;
    margin-right: 15px;
}
.tableCart .item .tools .form .df .tx{
    font-size: 15px;
    line-height: 23px;
    white-space: nowrap;
}
.tableCart .item .tools .form .df .tx span{
    color:#eb1922;
}
.tableFoot{
    padding: 15px 20px;
    border:solid 1px #dbdbdb;
    border-top: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.tableFoot .checkbox label{
    font-size: 13px;
    line-height: #666666
}
.tableFoot .checkbox label strong{
    font-size: 14px;
    line-height: 22px;
}
.tableFoot .checkbox label p{
    padding: 0;
}
.tableFoot .bill{
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    white-space: nowrap;
}
.tableFoot .bill span{
    font-size: 25px;
    line-height: 33px;
    color:#ff0000;
    margin-left: 20px;
}
.divButton{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.divButton .right{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-basis: 340px;
    justify-content: flex-end;
}
.divButton .right .btnCart{
    margin-left: 10px;
}
.divButton .btnCart {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    border: none;
    text-transform: uppercase;
    padding: 11px 30px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
    text-align: center;
    background: #eeeeee;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.divButton .btnCart.black{
    background: #28303d;
    color:#ffffff;
}
.divButton .btnCart:hover{
    background: #ffd600 !important;
    color:#333333 !important;
}
/*=======================================================*/
.boxCart{
    border:solid 1px #dddddd;
}
.boxCart .title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: bold;
    background: #f2f2f2;
    padding: 13px 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: solid 1px #dddddd;
}
.cartField{
    padding:15px 95px 20px;
}
.cartField.v2{
    border-top: solid 1px #dddddd;
}
.cartField label{
    width:200px;
    font-weight: normal;
    float:left;
    text-align: right;
    padding-right: 25px;
}
.cartField .radio label{
    width: 100%;
    text-align: left;
    float: none;
}
.cartField label span{
    color:#ff620c;
}
.cartField .colRight{
    width:-webkit-calc(100% - 200px);
    width:-moz-calc(100% - 200px);
    width:-o-calc(100% - 200px);
    width:calc(100% - 200px);
    float:right;
}
.cartField .mb input[type="text"],
.cartField .mb select{
    margin-bottom: 10px;
}
.cartField input[type="text"],
.cartField select,
.cartField textarea,
.cartField input[type="email"],
.cartField input[type="password"]{
    width:100%;
    height:40px;
    border:solid 1px #dddddd;
    padding-left: 15px;
    border-radius:5px;
}
.cartField .formFa{
    position: relative;
}
.cartField .formFa:before{
    font-family: fontAwesome;
    position: absolute;
    left:10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cartField .formFa input{
    padding-left: 30px;
}
.cartField textarea{
    height: 100px;
    resize: none;
}
.cartField .boxRadio{
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}
.cartField .boxRadio input{
    position: absolute;
    left: 0;
    top: 0;
}
.cartField .boxRadio label{
    font-weight: bold;
    width:initial;
    float:none;
    padding:0;
    margin:0;
}
.cartField .boxRadio p{
    padding:0;
}
.cartField .optionCart input{
    display: none;
}
.cartField .optionCart {
    background: #eeeeee;
    padding: 14px 50px;
    position: relative;
    cursor: pointer;
}
.cartField .optionCart:before{
    content: "";
    position: absolute;
    width:20px;
    height:20px;
    background: #ffffff;
    border:solid 1px #666666;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cartField .optionCart:after{
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 23px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cartField .optionCart.active:after{
    opacity: 1;
    visibility: initial;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}
.cartField .optionCart span:before{
    font-family: FontAwesome;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 28px;
}
.cartField .rule{
    padding: 10px;
    max-height: 350px;
    overflow: auto;
    margin-bottom: 20px;
    border:solid 3px #eeeeee;
    margin-top: -15px;
}
.cartField .btnCart{
    width:100%;
}
.formSocial .txt{
    margin-bottom: 10px;
}
.formSocial .soc a{
    display: block;
    border:solid 1px #333333;
    padding:8px 10px;
    padding-left: 65px;
    position: relative;
    color:#333333;
}
.formSocial .soc a:before{
    font-family: FontAwesome;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 40px;
    background: #333333;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    color:#ffffff;
    z-index: 2;
}
.formSocial .soc a:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    z-index: 1;
    background: #333333;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.formSocial .soc a span{
    position: relative;
    z-index: 3;
}
.formSocial .soc a:hover{
    color:#ffffff;
}
.formSocial .soc a:hover:after{
    right:0;
}
.formSocial .soc a.fa-facebook{
    border-color: #3b5998;
}
.formSocial .soc a.fa-facebook:before,
.formSocial .soc a.fa-facebook:after{
    background: #3b5998;
}
.boxTable{
    border:solid 3px #ffd600;
}
.boxTable .title {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: bold;
    background: #ffd600;
    padding: 11px 20px;
}
.boxTable .item{
    border-bottom: solid 1px #dddddd;
}
.boxTable .item:last-child{
    border-bottom: none;
}
.boxTable .item .info{
    padding: 15px 10px;
}
.boxTable .item  .date{
    margin-bottom: 10px;
}
.boxTable .item .caption:after{
    content: "";
    display: block;
    clear: both;
}
.boxTable .item .img{
    width: 120px;
    margin-right: 15px;
    float: left;
}
.boxTable .item .tend{
    overflow: hidden;
}
.boxTable .item .tools{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f6f6f6;
}
.boxTable .item .form{
    font-size: 13px;
    line-height: 21px;
    color:#666666;
}
.boxTable .item .price{
    font-size: 13px;
    line-height: 21px;
    color:#eb1922;
}
.boxTable .tableFoot {
    margin-bottom: 0;
    display: block;
}
.boxTable .tableFoot .bill{
    margin-bottom: 0;
}
.boxTable .tableFoot .bill span{
    font-size: 18px;
    line-height: 26px;
    float: right;
}
/*==========================================================*/
.style_success{
    padding: 50px 70px;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
.style_success .wrap{
    max-width: 470px;
}
.style_success p{
    padding: 0;
}
.style_success .ttu{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}
.style_success .t1 {
    font-size: 40px;
    line-height: 50px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.style_success .codeHi {
    background: #28303d;
    padding: 13px 10px;
    text-align: center;
    margin-bottom: 10px;
}
.style_success .codeSuccess{
    background: #ffd600;
    color:#333333;
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 10px;
}
.style_success .codeSuccess .co{
    font-size: 40px;
    line-height: 50px;
}
.style_success .pointSuccess {
    max-width: 370px;
    background: #555555;
    color: #ffffff;
    text-align: center;
    padding: 13px 10px;
    margin-bottom: 15px;
}
.style_success .pointSuccess span{
    color:#e7b100;
}
.style_success .cont{
    font-size: 14px;
    line-height: 22px;
}
.style_success .cont p{
    padding: 0;
}
.style_success .cont .color{
    color:#ffd600;
}
input.date_out{
    width: 100%;
    border:none;
    height: 40px;
    padding-left: 10px;
    color:#333333;
}
/*==========================================================================*/
/*============================RESPONSIVE====================================*/
/*==========================================================================*/
@media all and (max-width:1024px){
.tableCart .item .grid .col1{
    width: 200px;
}
.tableCart .item .grid .col2{
    width: -webkit-calc(100% - 200px);
    width: -moz-calc(100% - 200px);
    width: -o-calc(100% - 200px);
    width: calc(100% - 200px);
}
}

@media all and (max-width:991px){
.tableCart .item .grid .col1,
.tableCart .item .grid .col2{
    width: 100%;
}
.tableCart .item .grid .col1{
    border-right: none;
    padding-bottom: 0;
}
.tableCart .item .grid .col1 img{
    max-width: 210px;
}
.tableCart .item .grid{
    position: relative;
}
.tableCart .item .info{
    position: initial;
}
.tableFoot{
    flex-direction: column;
    align-items: flex-start;
}
.tableFoot .bill{
    order:1;
    margin-bottom: 20px;
}
.tableFoot .checkbox{
    order:2;
}
.tableFoot .bill span{
    font-size: 22px;
    line-height: 30px;
    margin-left: 0;
}
.boxCart{
    margin-bottom: 20px;
}
.cartField{
    padding: 15px 20px;
}
}

@media all and (max-width:768px){
.tableCart .item .tools{
    display: block;
}
.tableCart .item .tools .form{
    margin-bottom: 15px;
}
.divButton,
.divButton .right{
    display: block;
}
.divButton .btnCart {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.divButton .right .btnCart {
    margin-left: 0;
}
}

@media all and (max-width:550px){
.cartField label,
.cartField .colRight{
    width: 100%;
    text-align: left;
}
.style_success{
    padding: 30px 35px;
}
.style_success .t1{
    font-size: 35px;
    line-height: 45px;
}
.style_success .codeSuccess .co{
    font-size: 35px;
    line-height: 45px;
}
}

@media all and (max-width:360px){
.boxTable .item .tools{
    display: block;
}
.style_success{
    padding: 15px 20px;
}
}