/*
Theme Name: VinaWebsite.VN
Description: Templates develop by vinahost.vn
Author: VINAHOST.VN
Template: flatsome
Support: website@vinahost.vn
Version: 1.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* font Segoe UI */
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/segoeui.otf);
	font-weight: 400;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/segoeuib.otf);
	font-weight: 700;
}
/*@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI_Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI_Light_Italic.ttf);
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI.ttf);
	font-weight: 400;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI_Bold.ttf);
	font-weight: 700;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI_Bold_Italic.ttf);
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: Segoe UI;
	src: url(assets/fonts/Segoe_UI/SVN_Segoe_UI_Italic.ttf);
	font-style: italic;	
}*/
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Black.ttf);
	font-weight: 900;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-BlackItalic.ttf);
	font-weight: 900;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Bold.ttf);
	font-weight: 700;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-BoldItalic.ttf);
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Italic.ttf);
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Light.ttf);
	font-weight: 300;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-LightItalic.ttf);
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Medium.ttf);
	font-weight: 500;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-MediumItalic.ttf);
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Regular.ttf);
	font-weight: 400;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-Thin.ttf);
	font-weight: 100;
}
@font-face {
	font-family: Roboto;
	src: url(assets/fonts/Roboto/Roboto-ThinItalic.ttf);
	font-weight: 100;
	font-style: italic;
}
@font-face {
	font-family: Calistoga;
	src: url(assets/fonts/Calistoga/Calistoga-Regular.ttf);
	font-weight: 400;
}
.kenit-alo-circle 
{
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    border-color: var(--secondary_color);
    opacity: 0.5;
}
.kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--secondary_color);
    opacity: 0.5;
    right: -10px;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes zoomIn
{
	0% {
	    opacity: 0;
	    -webkit-transform: scale3d(0.3, 0.3, 0.3);
	    -ms-transform: scale3d(0.3, 0.3, 0.3);
	    transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
	    opacity: 1;
	}
}
@keyframes fadeIn
{
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
@keyframes pulse
{
	0% {
	    -webkit-transform: scale3d(1, 1, 1);
	    -ms-transform: scale3d(1, 1, 1);
	    transform: scale3d(1, 1, 1);
	}
	50% {
	    -webkit-transform: scale3d(1.05, 1.05, 1.05);
	    -ms-transform: scale3d(1.05, 1.05, 1.05);
	    transform: scale3d(1.05, 1.05, 1.05);
	}
	100% {
	    -webkit-transform: scale3d(1, 1, 1);
	    -ms-transform: scale3d(1, 1, 1);
	    transform: scale3d(1, 1, 1);
	}
}
@keyframes opacity
{
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes btn_pulse {
	0% {
	    -webkit-transform: scale(1);
	    -ms-transform: scale(1);
	    transform: scale(1);
	}
	50% {
	    -webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    transform: scale(1.1);
	}
	100% {
	    -webkit-transform: scale(1);
	    -ms-transform: scale(1);
	    transform: scale(1);
	}
}