/*Hiệu ứng menu*/

.centery,
.centery-after:after,
.centery-before:before {
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ease-in-200 {
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@-webkit-keyframes slideInDown1 {
    0% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown1 {
    0% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown1 {
    -webkit-animation-name: slideInDown1;
    animation-name: slideInDown1
}


/**/

.fixed {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    animation: slideInDown1 1s 0s;
}


/*Hieu ung*/

.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform;
    transition-property: transform
}

.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, .35) 0, transparent 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0, transparent 80%);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity
}

.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}

.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px)
}

.hover_sang2 {
    position: relative;
    overflow: hidden;
}

.hover_sang2:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 10;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover_sang2:hover:before {
    transition: 1s;
    left: 100%;
}

.hover_sang {
    display: block;
    position: relative;
    overflow: hidden;
}

.hover_sang:hover:before {
    left: 0;
    top: 0;
}

.hover_sang:before {
    left: -100%;
    top: -100%;
}

.hover_sang:after {
    bottom: -100%;
    right: -100%;
}

.hover_sang:before,
.hover_sang:after {
    display: block;
}

.hover_sang:before,
.hover_sang:after {
    background: rgba(255, 255, 255, 0.3) none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 8;
}

.hover_sang:hover img {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.hover_sang img {
    transition: 0.7s;
}

.hover_sang:hover:after {
    right: 0;
    bottom: 0;
}


/*Xoay*/

.dichvu__item:hover .dichvu__img {
    transform: rotateY(360deg);
    transition: all 0.6s linear;
}


/*Phone anima*/

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/*Nhấp nháy*/

.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.hdanhmucdrops {
    position: relative;
    width: 280px;
    z-index: 10;
    background-color: #f3f3f3;
}

.hdanhmucdrops>.nicescl {
    display: none;
    top: 100%;
    position: relative;
}

.hdanhmucdrops .title {}

.click-icon-menu {
    height: 100%;
    margin-bottom: 0px;
}

.click-icon-menu>span i {
    position: unset;
}

.click-icon-menu span {
    display: block;
    font-family: 'Arimo';
    font-size: 17px;
    color: #fff;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    background-color: #271e01;
    padding: 12px 0px 12px;
    cursor: pointer;
}

.click-icon-menu span i {
    font-size: 20px;
    margin-left: 10px;
    position: relative;
    color: #fff;
}

.hdanhmucdrops ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.hdanhmucdrops ul>li {
    border-bottom: 1px solid #fff;
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(225, 225, 225, 1) 100%);
    padding: 0 10px 0 10px;
}

.hdanhmucdrops ul>li.line {
    width: 100%;
    margin: 0 auto;
}

.hdanhmucdrops .nicescl {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    left: 0;
    top: 100%
}

.hdanhmucdrops ul.content {
    overflow: auto;
    font-size: 14px;
}

.hdanhmucdrops li a {
    display: block;
    font-family: 'Arimo';
    font-size: 17px;
    color: #1d1d1d;
    line-height: normal;
    text-transform: capitalize;
    padding: 13px 0px;
}

.hdanhmucdrops li a span.text-split {
    -webkit-line-clamp: 1;
}

.hdanhmucdrops li a i {
    font-size: 15px;
    color: #1d1d1d;
}

.hdanhmucdrops ul ul {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%;
    display: none;
    position: absolute;
    left: calc(100% - 5px);
    left: -moz-calc(100% - 5px);
    left: -webkit-calc(100% - 5px);
    z-index: 9999;
}

.hdanhmucdrops ul ul li {
    position: relative;
}

.hdanhmucdrops ul>li:hover>ul {
    display: block;
    -webkit-animation: scale-up-hor-left .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-left .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both
}

.hdanhmucdrops ul>li:last-child {
    border-bottom: none
}

.hdanhmucdrops ul ul ul {
    left: 100%;
    top: 0 !important
}

.hdanhmucdrops li:hover>a,
.hdanhmucdrops li:hover>a i {
    color: #ec2d3f;
}


/**/

.hdanhmucdropsjs {
    position: relative;
    width: 280px;
    z-index: 9;
    background-color: #fff;
}

.hdanhmucdropsjs ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.hdanhmucdropsjs ul>li {
    border-bottom: 1px solid #fff;
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(225, 225, 225, 1) 100%);
    padding: 0 10px 0 10px;
}

.hdanhmucdropsjs ul>li.line {
    width: 100%;
    margin: 0 auto;
}

.hdanhmucdropsjs .nicescl {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    left: 0;
    top: 0%;
}

.hdanhmucdropsjs ul.content {
    overflow: auto;
    font-size: 14px;
}

.hdanhmucdropsjs li a {
    display: block;
    font-family: 'Arimo';
    font-size: 17px;
    color: #1d1d1d;
    line-height: normal;
    text-transform: capitalize;
    padding: 13px 0px;
}

.hdanhmucdropsjs li a span.text-split {
    -webkit-line-clamp: 1;
}

.hdanhmucdropsjs li a i {
    font-size: 15px;
    color: #1d1d1d;
}

.hdanhmucdropsjs ul ul {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%;
    display: none;
    position: absolute;
    left: calc(100% - 5px);
    left: -moz-calc(100% - 5px);
    left: -webkit-calc(100% - 5px);
    z-index: 9999;
}

.hdanhmucdropsjs ul ul li {
    position: relative;
}

.hdanhmucdropsjs ul>li:hover>ul {
    display: block;
    -webkit-animation: scale-up-hor-left .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-left .4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both
}

.hdanhmucdropsjs ul>li:last-child {
    border-bottom: none;
}

.hdanhmucdropsjs ul ul ul {
    left: 100%;
    top: 0 !important
}

.hdanhmucdropsjs li:hover>a,
.hdanhmucdropsjs li:hover>a i {
    color: #ec2d3f;
}

@-webkit-keyframes scale-up-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}

.box-app-slide {
    float: right;
    width: calc(100% - 280px*2);
}


/* width */

.hdanhmucdrops ::-webkit-scrollbar,
.hdanhmucdropsjs ::-webkit-scrollbar {
    width: 1px;
}

.drop-box ::-webkit-scrollbar,
.drop-box-fixed ::-webkit-scrollbar {
    width: 1px;
}


/* Track */

.hdanhmucdrops ::-webkit-scrollbar-track,
.hdanhmucdropsjs ::-webkit-scrollbar-track {
    background: #e80c0c;
}

.drop-box ::-webkit-scrollbar-track,
.drop-box-fixed ::-webkit-scrollbar-track {
    background: #e80c0c;
}


/* Handle */

.hdanhmucdrops ::-webkit-scrollbar-thumb,
.hdanhmucdropsjs ::-webkit-scrollbar-thumb {
    background: #e80c0c;
}

.drop-box ::-webkit-scrollbar-thumb,
.drop-box-fixed ::-webkit-scrollbar-thumb {
    background: #e80c0c;
}


/* Handle on hover */

.hdanhmucdrops::-webkit-scrollbar-thumb:hover,
.hdanhmucdropsjs::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.drop-box::-webkit-scrollbar-thumb:hover,
.drop-box-fixed::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}


/* Drop Box */

.drop-box {
    position: relative;
    width: 280px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.4);
}

.drop-box .drop-box-list {
    display: none;
}

.drop-box-title span {
    display: block;
    font-family: 'Arimo';
    font-size: 17px;
    color: #271e01;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    background: url(./../images/check-icon.png) center left no-repeat;
    background-size: auto;
    background-position-x: 10%;
    padding: 12px 0px 12px;
    cursor: pointer;
}

.drop-box-list {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
}

.drop-box-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: auto;
}

.drop-box-list ul li {
    border-bottom: 1px solid #fff;
    background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(225, 225, 225, 1) 100%);
    padding: 13px 10px;
}

.drop-box-list ul li:last-child {
    border-bottom: none;
}

.drop-box-item {
    line-height: normal;
}

.drop-box-numb {
    font-family: 'Arimo';
    font-size: 15px;
    color: #ffcc33;
    line-height: 32px;
    text-align: center;
    border-radius: 100%;
    background-color: #2c2c2c;
    width: 32px;
    height: 32px;
}

.drop-box-info {
    width: calc(100% - 35px);
}

.drop-box-name {
    font-family: 'Arimo-Bold';
    font-size: 17px;
    color: #232323;
}

.drop-box-desc {
    font-family: 'Arimo-Italic';
    font-size: 12px;
    color: #5c5c5c;
}

.drop-box-name.text-split,
.drop-box-desc.text-split {
    -webkit-line-clamp: 1;
}


/* Drop Box Fixed */

.drop-box-fixed {
    position: relative;
    width: 280px;
    z-index: 9;
    background-color: #fff;
}

.drop-box-fixed .drop-box-list {
    box-sizing: border-box;
    top: -1px;
    left: 0;
}

.drop-box-fixed .drop-box-list ul {
    overflow: auto;
}