:root {
    --defaultTextColor:  #131515;
    --white: #fff;
    --primary: #336BB3;
    --secondary: #cbcbcb;
    --secondary-2: #5D677E;
    --warning: yellow;
    --danger: #ff4f01;
    /* tipografy */
    --fotnFamily: var(--roboto);
    --roboto: 'Roboto', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --helvetica: 'Helvetica', sans-serif;
    --muli: 'Muli';
    --defaultFontSize: 16px;
    --defaultLineHeight: 18px;
    --h1Size: 50px;
    --h2Size: 40px;
    --h3Size: 30px;
    --h4Size: 24px;
    --h5Size: 10px;
    --defaultRaduis: 5px;
    --header-fixed-padding: 72px;
    --header-fixed-padding2: 138px;
    --w-sidebar: 468px;
}
.helvetica{font-family:var(--helvetica);}
.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);
}
.color-secondary-2 {
    color: var(--secondary-2);
}

/* 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);
}



/* loadin animation */
.loading-animtion {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    --webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s linear;
    overflow-x: hidden;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: 0.9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: "";
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

/* end loading animation */

.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;
}
