#social,
.toolbar,
.toolbar-custom {
	box-sizing: border-box;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

[data-social-id][data-draggable="true"] {
	touch-action: none;
	user-select: none;
	-webkit-user-drag: none;
	cursor: grab;
}

[data-social-id][data-draggable="true"].is-social-positioned {
	position: fixed !important;
	left: var(--social-drag-left) !important;
	top: var(--social-drag-top) !important;
	right: auto !important;
	bottom: auto !important;
	margin: 0 !important;
	z-index: 9998 !important;
}

[data-social-id][data-draggable="true"].is-social-dragging {
	cursor: grabbing;
	transition: none !important;
	animation: none !important;
	z-index: 9999 !important;
}

#social {
	position: fixed;
	z-index: 12;
	left: auto !important;
	right: 18px !important;
	top: auto;
	bottom: 64px;
	display: none;
	--social-app-accent: #ffc20e;
	--social-app-blue: #004f9f;
	--social-app-blue-soft: rgba(0, 79, 159, 0.3);
	--social-app-accent-soft: rgba(255, 194, 14, 0.28);
	--social-app-accent-ring: rgba(255, 194, 14, 0.58);
	--social-app-navy: #001b36;
	pointer-events: none;
}

#social.social-left-floating .social-left-floating__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: 180px; */
	height: auto;
	min-height: 58px;
	margin: 0 0 10px;
	z-index: 1;
	cursor: pointer;
	transition: transform 0.22s ease, filter 0.22s ease;
	animation: socialAppFloat 2.8s ease-in-out infinite;
	pointer-events: auto;
}

#social.social-left-floating .social-left-floating__item:hover {
	filter: brightness(1.05);
	animation: socialAppShake 0.55s ease-in-out;
}

#social.social-left-floating .social-left-floating__item i {
	position: relative;
	z-index: 2;
	display: flex;  
	align-items: center;
	justify-content: center;
	/* width: 180px; */
	height: auto;
	min-height: 58px;
	overflow: visible;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

#social.social-left-floating .social-left-floating__item img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 180px;
	max-height: none;
	object-fit: contain;
	object-position: center center;
	border-radius: 0;
	/* background: transparent;
	filter: drop-shadow(0 8px 16px rgba(0, 21, 42, 0.35));
	transform: none; */
}

#social.social-left-floating .social-left-floating__circle {
	display: none;
}

#social.social-left-floating .social-left-floating__fill {
	display: none;
}

@keyframes socialAppPulse {
	0% {
		transform: scale(0.86);
		opacity: 0.86;
	}
	70% {
		transform: scale(1.46);
		opacity: 0;
	}
	100% {
		transform: scale(1.46);
		opacity: 0;
	}
}

@keyframes socialAppRing {
	0% {
		transform: scale(0.9);
		opacity: 0.9;
	}
	70% {
		transform: scale(1.38);
		opacity: 0;
	}
	100% {
		transform: scale(1.38);
		opacity: 0;
	}
}

@keyframes socialAppFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-2px);
	}
}

@keyframes socialAppShake {
	0%, 100% {
		transform: translateY(0) rotate(0deg) scale(1);
	}
	18% {
		transform: translateY(-2px) rotate(-7deg) scale(1.05);
	}
	36% {
		transform: translateY(1px) rotate(7deg) scale(1.05);
	}
	54% {
		transform: translateY(-1px) rotate(-5deg) scale(1.04);
	}
	72% {
		transform: translateY(1px) rotate(5deg) scale(1.03);
	}
}

@media (max-width: 767px) {
	#social {
		right: 14px !important;
		top: auto;
		bottom: 72px;
	}
	#social.social-left-floating .social-left-floating__item {
		/* width: 160px; */
		height: auto;
		min-height: 54px;
		margin-bottom: 9px;
	}
	#social.social-left-floating .social-left-floating__item i {
		/* width: 160px; */
		height: auto;
		min-height: 54px;
	}
	#social.social-left-floating .social-left-floating__item img {
		width: auto !important;
		height: auto !important;
		/* max-width: 81px; */
		max-height: none;
		transform: none;
	}
	.scrollToTop {
		right: 18px !important;
		bottom: 218px !important;
		top: auto !important;
	}
}

@media (max-width: 390px) {
	#social {
		right: 10px !important;
		bottom: 68px;
	}
	#social.social-left-floating .social-left-floating__item {
		width: 142px;
		height: auto;
		min-height: 50px;
	}
	#social.social-left-floating .social-left-floating__item i {
		width: 142px;
		height: auto;
		min-height: 50px;
	}
	#social.social-left-floating .social-left-floating__item img {
		max-width: 142px;
		max-height: none;
	}
	.scrollToTop {
		right: 14px !important;
		bottom: 206px !important;
		top: auto !important;
	}
}


/* TODO: Toolbar */
.toolbar {
    background: var(--background);
    width: 100%;
    padding: 10px;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
    max-height: 72px;
	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 {
    width: auto !important;
    height: auto !important;
    max-width: 72px;
    max-height: 38px;
    object-fit: contain;
    object-position: center;
    -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;
    display: block;
    margin-top: 2px;
}

@media (max-width: 390px) {
    .toolbar {
        max-height: 68px;
    }

    .toolbar ul li a img {
        max-width: 64px;
        max-height: 34px;
    }
}

/* toolbar 3*/
.toolbar-custom {
    width: 100%;
    bottom: 0px;
    position: sticky;
    z-index: 500;
    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));
    margin-top: -25px;
}

.toolbar-custom.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-custom .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
    display: none;
}

.toolbar-custom .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-custom .list-phone svg {
    max-width: 30px;
    max-height: 30px;
    fill: var(--background);
}

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

.toolbar-custom .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-custom .phone a {
    color: #333;
    display: block;
    position: relative;
}

.toolbar-custom .phone span:before, .toolbar-custom .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(--background);
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.toolbar-custom .phone span:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

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

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

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

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

.toolbar-custom 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: var(--background);
    padding: 10px 0;
    padding-right: 10px;
    padding-left: 100px;
    border-radius: 10px 10px 0px 0px;
}

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

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

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

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

.toolbar-custom ul li a img {
    width: auto !important;
    height: auto !important;
    max-width: 72px;
    max-height: 38px;
    object-fit: contain;
    object-position: center;
}

.toolbar-custom ul li svg {
    max-height: 30px;
    fill: var(--main-color);
}

.toolbar-custom .phone svg {
    animation: tada 1.2s infinite;
    fill: var(--background);
}

.tada {
    animation: tada 1.2s infinite;
}

.lang-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.ex6 path {
    fill: #fff;
    stroke: var(--main-color);
    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(--main-color);
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        fill: var(--main-color);
        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);
    }
}
