:root {
    --defaultTextColor:  #131515;
    --white: #fff;
    --primary: #1A659E;
    --secondary: #cbcbcb;
    --warning: yellow;
    --danger: #ff4f01;
    /* tipografy */
    --fotnFamily: 'Helvetica', sans-serif;
    --roboto: 'Roboto', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --muli: 'Muli';
    --defaultFontSize: 16px;
    --defaultLineHeight: 18px;
    --h1Size: 50px;
    --h2Size: 40px;
    --h3Size: 30px;
    --h4Size: 24px;
    --h5Size: 10px;
    --defaultRaduis: 5px;
    --header-fixed-padding: 60px;
    --header-fixed-padding2: 138px;
    --w-sidebar: 468px;
}
.roboto{font-family:var(--roboto);}
.poppins{font-family:var(--poppins);}
body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--fotnFamily);
    font-weight: 400;
    font-size: var(--defaultFontSize);
    line-height: var(--defaultLineHeight);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background: #eef2fa;
    color: var(--defaultTextColor);
}

body.lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
    font-family: var(--fotnFamily);
    line-height: 120%;
}

h1 {
    font-size: var(--h1Size);
}

h2 {
    font-size: var(--h2Size);
}

h3 {
    font-size: var(--h3Size);
}

h4 {
    font-size: var(--h4Size);
}

h5 {
    font-size: var(--h5Size);
}

.input,
.textarea {
    padding: 10px 0;
    font-size:  var(--defaultFontSize);
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #d0d5dd;
    padding: 10px;
}
input,
button,
textarea {
    font-family: var(--fotnFamily);
}
input::placeholder,
textarea::placeholder {
    opacity: .5;
}
.radius-5 {
    border-radius: var(--defaultRaduis);
}
.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}
.header-fixed {
    padding-top: var(--header-fixed-padding);
}
.content {
    flex: auto;
}
.container {
    max-width: none;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

/* colors */

.color-primary {
    color: var(--primary);
}
.color-danger {
    color: var(--danger);
}
.color-warning {
    color: var(--warning);
}
.color-secondary {
    color: var(--secondary);
}

/* bg-colors */

.bg-primary {
    background-color: var(--primary);
}
.bg-danger {
    background-color: var(--danger);
}
.bg-warning {
    background-color: var(--warning);
}
.bg-secondary {
    background-color: var(--secondary);
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;

}

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 

.loader_outer{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #8080805e;
	    z-index: 1000;
}
