#social {
    position: fixed;
    z-index: 999;
    left: var(--left, inherit);
    right: var(--right, inherit);
    bottom: var(--bottom, inherit);
    display: none;
}

#social .btn-frame {
    position: relative;
    margin: 30px 0px;
}

#social .btn-frame i {
    background: none;
}


/* #social .btn-frame img{border-radius:50%;} */

#social .btn-frame .kenit-alo-circle {
    border: 2px solid var(--background);
    border-color: var(--background);
}

#social .btn-frame .kenit-alo-circle-fill {
    background-color: var(--background);
}


/* TODO:Toolbar */


/* .toolbar{background:var(--background);width:100%;padding:10px;bottom:0px;position:fixed;z-index:500;height:auto;left:0px;max-height:65px;display:none;}
.toolbar ul{list-style:none;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-moz-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0px;margin:0px;}
.toolbar ul li{text-align:center;width:25%;}
.toolbar ul li a{display:block;width:100%;cursor:pointer;}
.toolbar ul li a img{height:20px;width:20px;-webkit-animation:tada 1.2s infinite;-moz-animation:tada 1.2s infinite;-o-animation:tada 1.2s infinite;animation:tada 1.2s infinite;}
.toolbar ul li a span{color:var(--color);font-size:10px;} */

.toolbar {
    position: fixed;
    right: 0;
    bottom: 0px;
    left: 0px;
    z-index: 1010;
    display: none;
    max-width: 1920px;
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    margin: 0 auto;
}

.toolbar.is-active .list-phone {
    display: block;
    -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    -moz-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    -o-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 .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    display: none;
}

.toolbar .list-phone a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background: var(--background);
    max-width: 240px;
    padding: 5px 10px;
    margin: 10px 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding-right: 30px;
}

.toolbar .list-phone svg {
    max-width: 26px;
    max-height: 26px;
}

.toolbar .list-phone span {
    display: block;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    color: var(--color);
    font-weight: 700;
}

.toolbar .phone {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 99;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--background);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 0px -35px 30px;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    -o-transition: -o-transform .2s ease-in-out;
    -moz-transition: transform .2s ease-in-out, -moz-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out, -moz-transform .2s ease-in-out, -o-transform .2s ease-in-out;
}

.toolbar .phone a {
    color: var(--color);
    display: block;
    position: relative;
}

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

.toolbar .phone a:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar .phone svg {
    max-width: 27px;
    max-height: 27px;
    display: block;
    position: relative;
    fill: var(--main-color);
}

.toolbar.is-active .phone {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.toolbar.is-active .phone img {
    opacity: 0;
}

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

.toolbar ul {
    --size: 33px;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    -webkit-mask: -webkit-radial-gradient(55px 0px, var(--size), #0000 99%, #fff 101%) 100%;
    mask: -webkit-radial-gradient(55px 0px, var(--size), #0000 99%, #fff 101%) 100%;
    background: var(--background);
    padding: 5px 0;
    padding-left: 90px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}

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

.toolbar ul li a {
    display: block;
    width: 100%;
    color: var(--color);
}

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

.toolbar ul li a span {
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
    color: var(--color);
    text-transform: capitalize;
}

.toolbar ul li a img,
.toolbar ul li svg {
    max-height: 26px;
    fill: var(--main-color);
}

.toolbar .phone img {
    -webkit-animation: tada 1.2s infinite;
    -moz-animation: tada 1.2s infinite;
    -o-animation: tada 1.2s infinite;
    animation: tada 1.2s infinite;
    fill: var(--main-color);
}

.tada {
    -webkit-animation: tada 1.2s infinite;
    -moz-animation: tada 1.2s infinite;
    -o-animation: tada 1.2s infinite;
    animation: tada 1.2s infinite;
}

.lang-toolbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.toolbar ul li.lang-toolbar a {
    display: inline-block;
    width: unset;
    margin: 0px 2px;
    font-size: unset;
}

.toolbar ul li.lang-toolbar a img {
    height: 10% !important;
}

.ex6 path {
    fill: transparent;
    stroke: var(--main-color);
    stroke-width: 0.5;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    -webkit-animation: dash 5s ease forwards;
    -moz-animation: dash 5s ease forwards;
    -o-animation: dash 5s ease forwards;
    animation: dash 5s ease forwards;
}

@-webkit-keyframes dash {
    to {
        fill: var(--main-color);
        stroke-dashoffset: 0;
    }
}

@-moz-keyframes dash {
    to {
        fill: var(--main-color);
        stroke-dashoffset: 0;
    }
}

@-o-keyframes dash {
    to {
        fill: var(--main-color);
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        fill: var(--main-color);
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%,
    20% {
        -moz-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -moz-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -moz-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        -moz-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-o-keyframes tada {
    0% {
        -o-transform: scaleX(1);
        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 {
        -o-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        -moz-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        -moz-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        -moz-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-webkit-keyframes quickShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes quickShow {
    0% {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes quickShow {
    0% {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes quickShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
