#vnt-home-main{
    border-top:solid 10px #dfdfdf;
}
/*================================================*/
.boxDomain .title {
    font-size: 18px;
    line-height: 26px;
    background: #0090eb;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    color: #ffffff;
    padding: 9px 0px;
}
.boxDomain .content{
	padding: 20px;
	background: #ffffff;
}
.listDomainBox .checkDomain{
	margin-bottom: 10px;
}
/*======================================*/
.titleResult {
    font-size: 30px;
    line-height: 38px;
    font-weight: 300;
    margin-bottom: 20px;
}
.portletDomain {
    background: #ffffff;
    padding: 0px 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    height: 90px;
}
.domainName{
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}
.domainName span{
    color:#f77225;
}
.domainInfo {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}
.domainPrice{
    text-align: right;
    margin-right: 20px;
}
.domainPrice .sll{
    color:#999999;
    text-decoration: line-through;
}
.domainPrice .slj {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
}
.domainPrice .slj .pri{
    color:#f77225;
}
.domainPrice .slk{
    font-size: 12px;
    line-height: 20px;
    color:#666666;
}
.domainTools{
    width:120px;
}
.domainTools .btnDomain{
    width:120px;
    height: 40px;
    background: #0090eb;
    font-size: 16px;
    line-height: 24px;
    color:#ffffff;
    border:none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.domainTools .btnDomain:hover{
    background: #f77225;
}
.domainTools .btnDomainView{
    width:120px;
    height: 40px;
    background: #cccccc;
    font-size: 16px;
    line-height: 24px;
    color:#ffffff;
    border:none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.domainTools .btnDomainView:hover{
    background: #666666;
}
.domainTools.buy .attendDomain{
    display: block;
}
.domainTools.buy .btnDomain{
    display: none;
}
.attendDomain{
    text-align: right;
    display: none;
}
.attendDomain .att{
    font-size: 18px;
    line-height: 26px;
    color:#f77225;
    margin-bottom: 5px;
    font-weight: 600;
}
.attendDomain .att span{
    padding-left: 30px;
    position: relative;
}
.attendDomain .att span:before{
    content: "\f046";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.attendDomain .del{
    padding-left: 25px;
    font-size: 13px;
    line-height: 21px;
    font-weight: 600;
    position: relative;
}
.attendDomain .del:before{
    content: "\f1f8";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 28px;
}
.portletDomain.selled .domainName{
    color:#bbbbbb;
}
.portletDomain.selled .domainName span{
    color:inherit;
}
.portletDomain.selled .domainPrice{
    display: none;
}
/*=============================================*/
.cartDomain{
    position: fixed;
    z-index: 13;
    right:25px;
    top:30%;
}
.cartDomain .wrap {
    width: 80px;
    height: 80px;
    background: #f77225;
    border-radius: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    position: relative;
    padding-top: 43px;
}
.cartDomain .wrap:before{
    content: "\f291";
    font-family: FontAwesome;
    position: absolute;
    top: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 25px;
    line-height: 33px;
}
.cartDomain:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 100%;
    box-shadow: 0px 0px 10px rgb(247, 114, 37);
    -webkit-animation: sonarEffect 1.3s ease-out 1s infinite;
    -o-animation: sonarEffect 1.3s ease-out 1s infinite;
    animation: sonarEffect 1.3s ease-out 1s infinite;
    opacity: 0;
}
.cartDomain:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 100%;
    border: solid 5px rgba(247, 114, 37, 0.25);
    -webkit-animation: sonarEffect 1.3s ease-out 1.6s infinite;
    -o-animation: sonarEffect 1.3s ease-out 1.6s infinite;
    animation: sonarEffect 1.3s ease-out 1.6s infinite;
    opacity: 0;
}
@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1.8);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        -moz-transform: scale(1.8);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
.wrapButtonDomain{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapButtonDomain a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    background: #0090eb;
    color: #ffffff;
    padding: 12px 40px;
    display: inline-block;
}
.wrapButtonDomain a:hover{
    background: #f77225;
}
/*========================TRANSFER DOMAIN==================================*/
.good{
    margin-bottom: 30px;
}
.good .img{
    width:150px;
    height:150px;
    border-radius: 100%;
    background: #ffffff;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
}
.good .img i{
    font-size: 52px;
    line-height: 60px;
    color:#0090eb;
    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%);
}
.good .tend{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    height:72px;
    overflow: hidden;
}
/*==================================TABLE DOMAIN===========================*/
.tableDomain table{
    width:100%;
    background: #ffffff;
    margin-bottom: 50px;
}
.tableDomain table thead th {
    font-size: 18px;
    line-height: 26px;
    color: #0090eb;
    font-weight: 600;
    text-align: center;
    height:56px;
    padding:0 15px;
    width:25%;
}
.tableDomain table thead th:first-child{
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color:#333333;
}
.tableDomain table tbody td{
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
    text-align: center;
    padding:18px 15px;
    width:25%;
}

.tableDomain table tbody td .tran{
    color:#f77225;
}
.tableDomain table tbody td:first-child{
    text-align: left;
}
.tableDomain table tbody tr:nth-child(odd) td{
    background: #f5f5f5;
}
.listOption ul li{
    font-size: 16px;
    line-height: 24px;
    color:#333333;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}
.listOption ul li:before{
    content: "\f046";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 28px;
    color:#f77225;
}
/*=========================================================================*/
/*=========================RESPONSIVE======================================*/
/*=========================================================================*/
@media all and (max-width: 1420px){
.formSearchDomain {
    background-size: 33%;
}
}

@media all and (max-width: 991px){
.formSearchDomain {
    background-size: 33%;
}
.formSearch {
    padding-left: 0;
}
.formSearchDomain {
    padding-top: 35%;
    background-position: center top;
    background-size: 50%;
}
.wrapButtonDomain{
    margin-bottom: 40px;
}
table#table-step1,
table#table-step1 tbody,
table#table-step1 tfoot{
    text-align: left;
    display: block;
}
#table-step1 thead {
    display: none;
}
table#table-step1 tfoot tr,
table#table-step1 tfoot td{
    display: block;
}
#table-step1>tbody>tr {
    padding-bottom: 25px;
    border-bottom: solid 1px #e5e5e5;
    display: block;
    margin-bottom: 20px;
    position: relative;
}
#table-step1>tbody>tr>td {
    display: block;
    padding: 0;
    border: none;
    padding-left: 115px;
    position: relative;
    margin-bottom: 10px;
}
#table-step1>tbody>tr>td:before {
    content: attr(data-con);
    position: absolute;
    left: 0;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: #0090eb;
    font-weight: 600;
}
#table-step1>tbody>tr>td:after {
    content: ":";
    position: absolute;
    top: 3px;
    left: 95px;
    font-size: 14px;
    line-height: 14px;
    color: #333333;
    font-weight: normal;
}
table#table-step1 tr td:last-child:before{
    content: initial;
}
.table-qua .grid-qua {
    text-align: left;
}
#table-step1>tbody>tr>td.table-delete{
    padding:0;
}
#table-step1>tbody>tr>td.table-delete:after {
    content: initial;
}
.table-delete a {
    width: 45px;
    height: 45px;
    border: solid 1px #e5e5e5;
    display: block;
    text-align: Center;
    padding-top: 5px;
    position: absolute;
    bottom: 0;
    right: 0;
}
#table-step1>tbody>tr>td.table-total-price,#table-step1>tbody>tr>td:last-child {
    margin: 0;
}
#table-step1 tfoot tr td {
    padding: 0;
    border: none !important;
}
.good .tend{
    height:48px;
}
}

@media all and (max-width: 768px){
.portletDomain {
    display: block;
    height: initial;
    padding: 20px 20px;
}
.domainInfo{
    justify-content: space-between;
}
.domainPrice{
    text-align: left;
    margin-right: 0;
}
.domainName {
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px #e5e5e5;
}
.portletDomain.selled {
    display: flex;
}
.portletDomain.selled .domainName{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.success {
    background-position: center top;
    padding: 0;
    padding-top: 197px;
    background-size: 180px;
    text-align: center;
}
.good .tend{
    height:initial;
}
.tableDomain table thead th{
    display: block;
}
.tableDomain table thead th:first-child {
    text-align: center;
    height: initial;
    padding: 16px 20px;
    background: #f77225;
    color: #ffffff;
}
.tableDomain table thead th:nth-child(1) ~ th{
    display: none; 
}
.tableDomain table tbody tr:nth-child(odd) td{
    background: #ffffff;
}
.tableDomain table tbody tr {
    display: block;
    padding: 10px;
    position: relative;
    border-bottom: solid 1px #CCCCCC;
    padding-left: 160px;
}
.tableDomain table tbody tr:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width:150px;
    background: #434343;
}
.tableDomain table thead th,
.tableDomain table tbody td{
    width:100%;
}
.tableDomain table tbody td{
    padding:0;
    display: block;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
}
.tableDomain table tbody td:before{
    content: attr(data-con);
    width:150px;
    left:-150px;
    color:#ffffff;
    font-weight: normal;
    position: absolute;

}
}

@media all and (max-width: 640px){
.formSearchDomain form input {
    font-size: 18px;
    line-height: 26px;
    width: -webkit-calc(100% - 130px);
    width: -moz-calc(100% - 130px);
    width: -o-calc(100% - 130px);
    width: calc(100% - 130px);
}
.formSearchDomain form button {
    font-size: 16px;
    line-height: 24px;
    width:130px;
}
.wrapButtonDomain{
    display: block;
}
.wrapButtonDomain a{
    display: block;
    margin-bottom: 10px;
    text-align: center;
}
}

@media all and (max-width: 500px){
.formSearchDomain form button {
    font-size: 0;
}
.formSearchDomain form input {
    width: -webkit-calc(100% - 60px);
    width: -moz-calc(100% - 60px);
    width: -o-calc(100% - 60px);
    width: calc(100% - 60px);
}
.formSearchDomain form button {
    width:60px;
}
.formSearchDomain form button span:before{
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
}

@media all and (max-width: 460px){
.formSearchDomain form input {
    font-size: 14px;
    line-height: 22px;
}
.domainTools{
    width:100%;
}
.domainInfo {
    display: block;
}
.domainPrice {
    margin-bottom: 5px;
}
.portletDomain.selled{
    display: block;
}
.portletDomain.selled .domainName {
    margin-bottom: 5px;
}
.attendDomain {
    text-align: left;
}
}

