#list-domain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 0 10px;
    background: rgba(84,84,84,.5);
    margin: 10px 0px;
}
.domain-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: calc(100% / 4 - 11px);
    height: 55px;
    border: 1px solid rgba(255,255,255,.25);
    background: #1c2026;
    border-radius: 3.5rem;
    -webkit-transition: all .3s!important;
    transition: all .3s!important;
    text-align: center;
    padding: 0.5rem;
    margin: 1rem .5%;
}
.domain-item .domain-idx {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    background: -webkit-linear-gradient(to bottom,#ff7c02 0%,#ff860d 47%,#ffcb52 100%);
    background: -webkit-gradient(linear,left top,left bottom,from(#ff7c02),color-stop(47%,#ff860d),to(#ffcb52));
    background: -webkit-linear-gradient(top,#ff7c02 0%,#ff860d 47%,#ffcb52 100%);
    background: linear-gradient(to bottom,#ff7c02 0%,#ff860d 47%,#ffcb52 100%);
}.domain-item span {
    line-height: 1;
}.domain-item .domain-idx span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: #1c2026;
    font-size: 1rem;
    color: #fff;
    margin: auto;
}.domain-item .domain-info {
    width: 25%;
    color: #fff;
    margin-left: 1rem;
}.domain-item .domain-info>span:nth-child(1), .domain-item .domain-info>span:nth-child(2) {
    font-size: 12px;
}.domain-item .domain-info>span {
    display: block;
    text-align: left;
    line-height: 1.4rem;
}.domain-item .domain-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ff7c02;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 0.5rem;
    margin: auto;
}.domain-item .domain-link div:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}.domain-item .domain-link div {
    width: 75%;
    height: 2px;
    background: #ff7c02;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}.domain-item:hover {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 0 8px rgb(255 124 2 / 50%);
    box-shadow: 0 0 8px rgb(255 124 2 / 50%);
}.domain-item:hover .domain-link {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 2rem;
    border: none;
    text-decoration: none;
    padding: 0.2rem 1rem 0.2rem 0.5rem;
    background: -webkit-linear-gradient(to bottom, #ff7c02 0%, #ff860d 47%, #ffcb52 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff7c02), color-stop(47%, #ff860d), to(#ffcb52));
    background: -webkit-linear-gradient(top, #ff7c02 0%, #ff860d 47%, #ffcb52 100%);
    background: linear-gradient(to bottom, #ff7c02 0%, #ff860d 47%, #ffcb52 100%);
}.domain-item:hover .domain-link:before {
    content: "Truy cập";
    font-size: 12px;
    color: #000;
}.domain-item:hover .domain-link div {
    width: 10%;
    position: absolute;
    bottom: 37%;
    right: 0.3rem;
    background: #000;
}.domain-item:hover .domain-link div:first-child {
    top: 37%;
}