:root {
    --defaultTextColor: #272727;
    --white: #fff;
    --primary: #1570F2;
    --primary-2: #EBF2FF;
    --secondary: #515151;
    --warning: yellow;
    --danger: red;
    --border-1: #EEEEEE;
    --border-2: #9AA6AC;
    --border-3: #E5E9EB;
    --placeholder: #ADADAD;
    /* tipografy */
    --fotnFamily: 'Inter', sans-serif;
    --defaultFontSize: 14px;
    --defaultLineHeight: 16px;
    --h1Size: 50px;
    --h2Size: 24px;
    --h3Size: 20px;
    --h4Size: 18px;
    --h5Size: 16px;
    --defaultRaduis: 6px;
    --header-fixed-padding: 76px
}

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%;
    color: var(--defaultTextColor);
}

body.lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: bold;
    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: 5px 10px;
    font-size:  var(--defaultFontSize);
    min-height: 36px;
    width: 100%;
    background-color: transparent;
}
input,
button,
textarea {
    font-family: var(--fotnFamily);
}

.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: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

/* colors */

.color-white{
    color: var(--white);
}
.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);
}