.check-toolbar { display: none; position: fixed; right: 30px; bottom: 100px; width: 18px; height: 50px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; z-index: 999; }
.check-toolbar label { position: absolute; bottom: 0; left: 6px; width: 6px; height: 50px; border-radius: 32px; background: linear-gradient(to bottom, #b3b3b3, #e6e6e6); cursor: pointer; transition: all 0.3s ease; opacity: 0.7; box-shadow: 0px 0px 3px 0px rgb(255 255 255 / 50%); }
.check-toolbar label:after { content: ''; position: absolute; bottom: 1px; left: -3px; width: 12px; height: 20px; border-radius: 3px; background-color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.check-toolbar input[type="checkbox"]:checked + label { background: var(--color-main); opacity: 1; }
.check-toolbar input[type="checkbox"]:checked + label:after { transform: translateY(-29px); }
.check-toolbar label:hover { background: linear-gradient(to bottom, #b3b3b3, #e6e6e6); }
.check-toolbar label:hover:after { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
.yep { position: absolute; top: 0px; left: -6px; width: 30px; height: 50px; opacity: 0; }
.toolbar-app { width: 100%; bottom: 0px; position: fixed; z-index: 111; left: 0px; display: none; -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)); }
.toolbar-app.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; }
.toolbar-app .list-phone { position: absolute; bottom: 100%; left: 30px; opacity: 0; transform: scale(0); transform-origin: 50% 100%; display: none; }
.toolbar-app .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; }
.toolbar-app .list-phone svg { max-width: 30px; max-height: 30px; }
.toolbar-app .list-phone span { display: block; width: calc(100% - 40px); color: #333; font-weight: 700; }
.toolbar-app .phone { position: relative; width: 50px; height: 50px; z-index: 99; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; margin: 0 0px -25px 30px; transition: transform .2s ease-in-out; }
.toolbar-app .phone span { color: #333; display: block; position: relative; }
.toolbar-app .phone span:before, .toolbar-app .phone span:after { position: absolute; content: ''; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(135deg); width: 30px; height: 3px; border-radius: 2rem; background-color: var(--color-main); opacity: 0; transition: opacity .2s ease-in-out; }
.toolbar-app .phone span:after { transform: translate(-50%, -50%) rotate(45deg); }
.toolbar-app .phone svg { max-width: 27px; max-height: 27px; display: block; position: relative; fill: var(--color-main); }
.toolbar-app.is-active .phone { transform: rotate(-180deg); }
.toolbar-app.is-active .phone svg { opacity: 0; }
.toolbar-app.is-active .phone span:before, .toolbar-app.is-active .phone span:after { opacity: 1; }
.toolbar-app ul { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 0px; margin: 0px; --size: 33px; -webkit-mask: radial-gradient(var(--size) at 55px 0px, #0000 99%, #fff 101%) 100%; background: #fff; padding: 10px 0; padding-left: 100px; border-radius: 10px 10px 0px 0px; }
.toolbar-app ul li { text-align: center; width: 25%; line-height: 1; }
.toolbar-app ul li a { display: block; width: 100%; font-size: 27px; color: #ffff; }
.toolbar-app ul li .icon { position: relative; margin: 0 auto; text-align: center; }
.toolbar-app ul li a span { display: none; font-weight: 400; font-size: 11px; margin-top: 5px; color: #333; text-transform: capitalize; }
.toolbar-app ul li a img, .toolbar-app ul li svg { max-height: 30px; fill: var(--color-main); width: 100%; }
.toolbar-app .phone svg { animation: tada 1.2s infinite; fill: var(--color-main); }
.tada { animation: tada 1.2s infinite; }
.lang-toolbar-app { display: flex; justify-content: center; align-items: center; }
.toolbar-app ul li.lang-toolbar-app a { display: inline-block; width: unset; margin: 0px 2px; font-size: unset; }
.toolbar-app ul li.lang-toolbar-app a img { height: 10% !important; }
.ex6 path { fill: #fff; stroke: var(--color-main); stroke-width: 0.5; stroke-dasharray: 1500; stroke-dashoffset: 1500; -webkit-animation: dash 5s ease forwards; animation: dash 5s ease forwards; }
@-webkit-keyframes dash {
to { fill: var(--color-main); stroke-dashoffset: 0; }
}
@keyframes dash {
to { fill: var(--color-main); 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); }
}
@media (max-width:1024px) {
    body {padding-top: 70px;}
    .toolbar-app { display: block; }
    .show-toolbar { transition: padding-top 0.7s ease; }
    .hidden-toolbar { padding-top: 0px; transition: padding-top 0.7s ease; }
    .hidden-toolbar .toolbar-app { transform: translateY(120%); transition: 0.7s; }
    .hidden-toolbar .header { transform: translateY(-120%); transition: 0.7s; }
    .show-toolbar .toolbar-app { transform: translateY(0); transition: 0.7s; }
    .show-toolbar .header { transform: translateY(0); transition: 0.7s; }
    .show-toolbar .footer-powered { padding-bottom: 80px; }
    .check-toolbar { display: block; }
    .scrollToTop { display: none !important; }
}