:root {
    --color-red: #ec2d3f;
    --color-medium-red: rgb(204, 44, 50);
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #353434;
    --color-gray: #6c757d;
    --background-static: #3fa07e;
    --background-hover: #eceb1b;
    --color-static: #0D0D0D;
    --color-hover: #ffc107;
    --color-main: #0E72CF;
    --color-submain: #AD0000;
}

html, body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #F5F5F5;
    /* max-width: 1366px; */
    margin: 0px auto;
    padding: 0px !important;
    top: 0px !important;
}

#google_translate_element {
    display: none;
}
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
    display: none !important;
}

input::-webkit-input-placeholder {
    color: #313131;
    font-size: 14px;
}

input:-moz-placeholder {
    color: #313131;
}

input::-moz-placeholder {
    color: #313131;
    font-size: 14px;
}

input:-ms-input-placeholder {
    color: #313131;
    font-size: 14px;
}

a,
input,
textarea {
    outline: none;
    padding: 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    transition: all .2s ease-in-out;
    color: #333;
}
a:hover{
    color: var(--color-red);
}
a, a:hover {
    text-decoration: none;
}

blockquote:not(.tiktok-embed) {
    font-style: italic;
    font-family: Georgia,Times,"Times New Roman",serif;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px;
}
blockquote p{
    margin-bottom: 0;
}

img {
    /* max-width: 100%; */
    height: auto;
    vertical-align: top;
}

/* Lazyload */
img.lazy {
    opacity: 0;
}

img:not(.initial) {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
    opacity: 1;
}

img:not([src]) {
    visibility: hidden;
}

.fw-600 {
    font-weight: 600;
}
.font-oswald {
    font-family: "Oswald", sans-serif;
}

.border-dotted {
    border-style: dotted;
}


.btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    background-color: var(--color-main);
}
.btn-main:hover{
    color: #fff;
    background: #1563AC;
}
.btn-main.outline {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    text-transform: capitalize;
}
.btn-main.outline.active,
.btn-main.outline.choosed,
.btn-main.outline:hover{
    border-color: var(--color-main);
    background-color: var(--color-main);
    color: #fff !important;
}
.btn-main.outline.dark {
    color: #000;
    border: 1px solid var(--color-main);
}
.btn-main.outline.dark.active,
.btn-main.outline.dark:hover {
    color: #fff;
    background: var(--color-main);
}

.text-base {
    font-size: 16px !important;
}
.text-lg {
font-size: 20px !important;
}

#main-cube {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-main);
    z-index: 999999;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.logo_phee {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 161px;
    height: 161px;
    border-radius: 100%;
    overflow: hidden;
    background-color: #fff;
}

  
.loading-css {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 170px;
    height: 170px;
    border: 2px solid var(--color-submain);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-animation: spin 600ms infinite linear;
    -moz-animation: spin 600ms infinite linear;
    -o-animation: spin 600ms infinite linear;
    -ms-animation: spin 600ms infinite linear;
    animation: spin 600ms infinite linear;
}
  
@-moz-keyframes spin { 100% {-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}
@-webkit-keyframes spin { 100% {-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}
@-o-keyframes spin { 100% {-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}
@keyframes spin { 100% {-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-o-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg)}}

.loader {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    padding-bottom: 3.125rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100001;
}

.popup-custom .modal-content {
border-radius: 0px;
border: 0px;
}

.popup-custom .modal-content .modal-body {
padding: 10px;
}

.popup-custom .close {
position: absolute;
top: 10px;
right: 10px;
width: 40px;
height: 40px;
z-index: 2;
color: #888888;
cursor: pointer;
border: 1px solid #eeeeee;
background-color: #ffffff;
opacity: 1 !important;
}

#popup-quickview .modal-dialog {
max-width: 1140px;
}

.control-owl {
position: absolute;
width: 100%;
z-index: 2;
left: 0px;
top: calc(50% - 45px / 2);
}

.control-owl button {
opacity: 0.5;
top: 0px;
position: absolute;
outline: none;
border: 0px;
padding: 0px;
margin: 0px;
display: block;
cursor: pointer;
color: #ffffff;
width: 45px;
height: 45px;
text-align: center;
font-size: 25px;
margin: 0px;
background-color: #000000;
border-radius: 3px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

.control-owl button:hover {
opacity: 1;
}

.control-owl button.owl-prev {
left: 20px;
}

.control-owl button.owl-next {
right: 20px;
}

.owl-coverflow {
    position: relative;
}
.owl-coverflow .owl-stage-outer {
    padding: 50px 0px;
}

.owl-coverflow .owl-item {
transform: scale(0.9);
transition: all 0.3s ease-in-out;
opacity: 0.5;
position: relative;
z-index: 1;
}

.owl-coverflow .owl-item.active.center {
    transform: scale(1.2);
    opacity: 1;
    z-index: 3;
}

.owl-coverflow .owl-item.active {
    opacity: 0.8;
    z-index: 2;
}

.owl-coverflow .owl-nav button.owl-prev,
.owl-coverflow .owl-nav button.owl-next {
background: transparent;
color: #333;
font-size: 24px;
position: absolute;
top: 50%;
transform: translateY(-50%);
}

.owl-coverflow .owl-nav button.owl-prev {
left: -30px;
}

.owl-coverflow .owl-nav button.owl-next {
right: -30px;
}

.owl-coverflow.owl-carousel {
perspective: 1000px;
}

.owl-coverflow.owl-carousel .owl-item {
transform-style: preserve-3d;
}

.owl-coverflow.owl-carousel .owl-item.active.center {
transform: scale(1.2) translateZ(50px);
}

.owl-coverflow.owl-carousel .owl-item.active:not(.center) {
transform: scale(0.9) translateZ(-50px);
}

.btn-more {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 20px;
    background: var(--color-main);
}
.btn-more:hover{
    color: #fff;
    background: var(--color-submain);
}

.btn-author {
    color: #898989;
    border: 1px solid #EFEBD3;
    background-color: #FAF9F2;
}


/* General */
.title-main {
    position: relative;
}
.title-main::after {
}

.title-main h2, .title-main h3, .title-main h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 0px;
    color: var(--color-main);
    font-family: "SVN-Poppins", serif;
    font-size: 46px;
    font-weight: 500;
    text-transform: uppercase;
}
.title-main h2{
}
.title-main h3 {
font-size: 30px;
}
.title-main h4 {
font-size: 20px;
}

.title-main.text-white h2{
    color: #fff;
}
.title-main.text-white::after{
    background-color: #fff;
}

.title-main h2 span,
.title-main h3 span,
.title-main h4 span{
    color: var(--color-submain);
}

.title-submain {
    font-weight: 400;
    font-size: 16px;
    color: #545454;
    margin-bottom: 30px;
}
.title-submain::after {
    content: '';
    display: block;
    width: 155px;
    height: 16px;
    margin: 10px auto 0px;
    background: url(../images/title_line_1.png) no-repeat center center;
}

.title-desc {
    margin-bottom: 30px;
}

.title-main-detail {
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.title-main-detail::before{
    top: 7px;
    left: 30%;
}
.title-main-detail h2 {
    font-size: 40px;
}

.time-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    color: #999999;
    font-size: 14px;
    line-height: 1;
}


/* Footer */
.footer {
    color: #fff;
}
.footer a{
    color: #fff;
}
.footer a:hover{
    color: var(--color-submain);
}

.footer .m-h-330 {
    min-height: 220px;
}

.footer .icon {
    border-radius: 100%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100%;
}
.footer .icon svg{
    color: #fff;
}

.footer .info span{
}

.footer .info {
    width: calc(100% - 50px);
    font-style: italic;
    font-size: 16px;
}

.footer-article{
    position: relative;
    background-color: var(--color-main);
}

.footer-title {
    font-family: 'SVN-Poppins', serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}
.footer-title:not(.no-line)::after{
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 1rem 0px;
}

.footer-title span{
    color: var(--color-main);
}

.company-name {
    position: relative;
    font-family: 'SVN-Poppins';
    font-size: 55px;
    font-weight: bold;
}

.footer-facebook {
    border: 1px solid #333;
    padding: 10px;
}
.footer-facebook .footer-title {
    position: relative;
    z-index: 2;
    margin-bottom: 0px;
    color: var(--color-main);
    font-family: "1FTV VIP Rostack";
    font-size: 40px;
    text-transform: uppercase;
}

.footer-ul {
    padding-left: 18px;
    margin: 0;
}

.footer-ul li {
    padding: 5px 0px;
}

.footer-ul li:last-child {
    border-bottom: 0px;
}

.footer-ul li a {
    font-size: 17px;
}

.footer-ul li a:hover {
}

.footer-tags {
    background: #eee;
}

.footer-tags .container {
    padding: 30px 15px;
}

.footer-tags-lists {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-tags-lists li {
    float: left;
}

.footer-tags-lists li a {
    padding-bottom: 0.375rem;
}

.footer-powered {
    text-align: center;
    color: #ffffff;
    background-color: #1469B9;
}

.footer-powered .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-powered p {
    margin-bottom: 0px;
}

.footer-statistic {
    text-align: right;
}

.footer-statistic span {
    padding-right: 10px;
}

.footer-statistic span:last-child {
    padding-right: 0px;
}

#footer-map {
    position: relative;
    height: 430px;
}

#footer-map iframe {
    width: 100%;
    height: 100%;
}
#fanpage-facebook {
}


.footer-news:nth-child(4) {width: 17%;}
.footer-news:nth-child(3) {width: 20%;}
.footer-news:nth-child(2) {width: 30%;}
.footer-news:nth-child(1) {width: 25%;}
.footer-news .icon {
    border: 1px solid #fff;
    border-radius: 100%;
    line-height: 30px;
    text-align: center;
    width: 36px;
    height: 36px;
}
.footer-news .info {
    margin-left: 10px;
    width: calc(100% - 46px);
}


/* Breadcrumb */
.breadCrumbs {
    padding: 10px 0px;
    background-color: #f2f2f2;
    margin-top: 5px;
}
  
.breadCrumbs .container .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .container .breadcrumb-item a {
    color: #212529;
}

.breadCrumbs .container .breadcrumb-item.active a {
    color: #6c757d;
}

.cursor-pointer {
    cursor: pointer;
}

.sidebar {
    position: sticky;
    top: 0px;
    z-index: 10;
}
.widget {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #F0F0F0;
    background-color: #f9f9f9;
}
.widget-title {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    text-align: left;
    color: var(--color-main);
    padding: 5px 0px;
}
.widget-content {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
}
.widget.category, .widget.service {
    padding: 0px;
    overflow: hidden;
    border: 0px;
    border-bottom: 1px solid var(--color-main);
}
.widget.category .widget-title,
.widget.service .widget-title{
    padding: 14px 10px 14px;
    background-color: var(--color-main);
    color: #fff;
}
.widget.category .widget-title svg{
    margin: -5px 0;
    fill: #fff;
}
.widget.category .widget-content,
.widget.service .widget-content {
    padding: 0px;
}

.widget-ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.widget-ul li{
    position: relative;
    display: block;
    padding-left: 15px;
}
.widget-ul > li{
    border-top: 1px solid #F0F0F0;
    padding-left: 30px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 100%);
}
.widget-ul > li:first-child{
    border-top: 0px;
}
.widget-ul > li::before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #F4EFEF;
    position: absolute;
    top: 19px;
    left: 19px;
    box-shadow: inset 1px 1px #ccc;
}


.widget-ul li a{
    display: block;
    font-size: 17px;
    text-transform: capitalize;
    padding: 11px 10px 11px 10px;
}
.widget-ul li .icon{
    position: absolute;
    display: block;
    padding: 10px;
    font-size: 20px;
    top: 10px;
    right: 5px;
    cursor: pointer;
}

.widget-ul li .icon::before,
.widget-ul li .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: currentColor;
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out
}
.widget-ul li .icon::before {
    width: 11px;
    height: 1px;
    opacity: 1
}

.widget-ul li .icon::after {
    width: 1px;
    height: 11px
}

.widget-ul li.active > .icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

.widget-ul li.active > .icon::before {
    opacity: 0
}


.widget-ul li:hover{
    background-color: #f2f2f2;
}

.widget-ul li.active > a,
.widget-ul li:hover > a{
    color: #f00;
}

.widget-ul li.has-child:after {
    content: "";
    position: absolute;
    top: 18px;
    right: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid #333;
    border-top: 0px;
    border-left: 0px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.widget-ul li ul{
    display: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.widget-ul li.active > ul {
    display: block;
    padding: 10px 0px;
}

.widget.other {
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.15);
}
.widget.other .widget-title {
    padding: 10px 0px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.widget.other .widget-content {
    padding: 0px;
    background: transparent;
}
.widget.other .widget-ul li{
    transition: all .3s ease-in-out;
    background: #fff;
    margin: 5px 0px;
    padding-left: 0px;
    border-radius: 5px;
}
.widget.other .widget-ul li:hover{
    transform: scale(1.05);
}
.widget.other .widget-ul li::before{
    display: none;
}
.widget.other .widget-ul li a{
    font-size: 15px;
}


/* Like Share */
.share {
    padding: 17px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}
  
.share b {
    display: block;
    margin-right: 20px;
}
.social-plugin {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
color: #555555;
font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
color: #ffffff;
background-color: #555555;
border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
text-align: center;
}

.pagination-ajax a {
display: inline-block;
vertical-align: top;
margin: 0px 3px 3px 3px;
width: 35px;
height: 35px;
line-height: 33px;
border-radius: 100%;
color: #666 !important;
border: 1px solid #e6e6e6;
font-size: 13px;
cursor: pointer;
text-decoration: none !important;
background-color: #ffffff;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
color: #ffffff !important;
border-color: var(--color-main);
background-color: var(--color-main);
}

.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
text-indent: -9999px;
position: relative;
background-color: #ffffff !important;
}

.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 2;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
}

.pagination-ajax a.first:before {
background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
display: none !important;
width: 0px !important;
height: 0px !important;
visibility: hidden !important;
overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
display: none;
}

/* Scroll Top */
.scrollToTop {
width: 41px;
height: 41px;
text-align: center;
font-weight: bold;
color: #444;
text-decoration: none;
position: fixed;
bottom: 65px;
right: 25px;
display: none;
z-index: 10;
cursor: pointer;
}

/* Text Hide */
.text-split {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 3;
}
.text-split-1 {
-webkit-line-clamp: 1;
}
.text-split-2 {
-webkit-line-clamp: 2;
}

/* Transition All */
.transition,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
-webkit-transition: 0.3s all;
transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.scale-img img {
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
}

.scale-img:hover > img {
-webkit-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.scale-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 10;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.scale-img:hover:before {
    transition: 1s;
    left: 130%;
}
#noidung {
    padding-bottom: 50px;
    max-height: 580px;
    overflow-y: hidden;
    position: relative;
}
#noidung.show-full-content {
    max-height: 100%;
    padding-bottom: 50px;
}
#toc-content {
    position: relative;
}
.hide-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 80px 0 0 0;
    z-index: 1;
    text-align: center;
    background: -webkit-linear-gradient(transparent, #fff 100%);
    background: -o-linear-gradient(transparent, #fff 100%);
    background: linear-gradient(transparent, #fff 100%);
}
.hide-content.removeBlur {
    background: transparent;
    padding-bottom: 0px;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.toolbar2 {
    width: 100%;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    left: 0px;
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar2.is-active .list-phone {
    display: block;
    -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar2 .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
    display: none;
    width: 230px;
}

.toolbar2 .list-phone a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    max-width: 240px;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 50px;
    padding-right: 30px;
}

.toolbar2 .list-phone svg {
    max-width: 30px;
    max-height: 30px;
}

.toolbar2 .list-phone span {
    display: block;
    width: calc(100% - 40px);
    color: #333;
    font-weight: 700;
}

.toolbar2 .phone {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    border-radius: 50%;
    margin: 0 0px -25px 30px;
    transition: transform .2s ease-in-out;
}

.toolbar2 .phone a {
    color: #333;
    display: block;
    position: relative;
}

.toolbar2 .phone a:before,.toolbar2 .phone a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 30px;
    height: 3px;
    border-radius: 2rem;
    background-color: #fff;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.toolbar2 .phone a:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar2 .phone svg {
    max-width: 27px;
    max-height: 27px;
    display: block;
    position: relative;
    fill: #fff;
}

.toolbar2.is-active .phone {
    transform: rotate(-180deg);
}

.toolbar2.is-active .phone svg {
    opacity: 0;
}

.toolbar2.is-active .phone a:before,.toolbar2.is-active .phone a:after {
    opacity: 1;
}

.toolbar2 ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    --size: 33px;
    -webkit-mask: radial-gradient(33px at 55px 0px, #0000 99%, #fff 101%) 100%;
    background: var(--color-main);
    padding: 10px 0;
    padding-left: 100px;
    border-radius: 10px 10px 0px 0px;
}

.toolbar2 ul li {
    text-align: center;
    width: 25%;
    line-height: 1;
}

.toolbar2 ul li a {
    display: block;
    width: 100%;
    font-size: 27px;
    color: #ffff;
}

.toolbar2 ul li .icon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.toolbar2 ul li a span {
    display: none;
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    text-transform: capitalize;
}

.toolbar2 ul li a img,.toolbar2 ul li svg {
    max-height: 30px;
    fill: #fff;
    width: 100%;
}

.toolbar2 .phone svg {
    animation: tada 1.2s infinite;
    fill: #fff;
}

.tada {
    animation: tada 1.2s infinite;
}

@-webkit-keyframes dash {
    to {
        fill: #0F4334;
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        fill: #0F4334;
        stroke-dashoffset: 0;
    }
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes quickShow {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}