
/*.width100 {*/
/*    width: 100% !important;*/
/*}*/

/*.color-text {*/
/*    color: #FFFFFF;*/
/*    text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);*/
/*}*/
/*.btn-color {*/
/*    color: #ee3d56;*/
/*    border-color: #ee3d56;*/
/*}*/

/*.center {*/
/*    text-align: center;*/
/*}*/

:root {
    --primary-blue: #2e96ff;
    --primary-black: #252525;
    --primary-grey: #dee2e6;
    --secondary--blue: #d5eaff;
    --white-color: #ffffff;
    --red-color: #ee3d56;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Regular.eot');
    src: local('Montserrat-Light'), local('Montserrat-Regular'),
    url('../webfonts/Montserrat-Regular.woff2') format('woff2'),
    url('../webfonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Medium.eot');
    src: local('Montserrat-Light'), local('Montserrat-Medium'),
    url('../webfonts/Montserrat-Medium.woff2') format('woff2'),
    url('../webfonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

body {
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-main-white);
}

.login {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.login__wrapper {
    padding: 0 101px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
}

.login__inner {
    width: 438px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login__title {
    margin: 0;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 32px;
    line-height: 44px;
    color: rgba(37, 37, 37, 1);
}

.login__descr {
    margin: 0;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(187, 186, 190, 1);
}

.login__form {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.login__label {
    display: block;
    margin-bottom: 24px;
}

.login__label--password {
    position: relative;
}

.login__hint {
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(37, 37, 37, 1);
}

.login__input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(208, 210, 217, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(64, 64, 64, 1);
}

.login__input:focus {
    outline: none;
}

.login__input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(187, 186, 190, 1);
}

.login__show--password {
    position: absolute;
    top: 35px;
    right: 10px;
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/hide.svg);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    z-index: 1000;
    cursor: pointer;
}

.login__btn {
    margin: 0;
    padding: 16px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(46, 150, 255, 1);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login__link {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(37, 37, 37, 1);
}

.login__link a {
    padding-left: 20px;
    font-weight: 500;
    color: rgba(46, 150, 255, 1);
    background-image: url(../images/heart.svg);
    background-repeat: no-repeat;
}

.login__img {
    height: 100%;
    width: 640px;
    background-image: url(../images/start-page.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.table-bordered td {
    max-width: 100px;
}

.sidebar {
    background-color: var(--secondary--blue);
}
.nav-link span {
    color: var(--primary-black);
}
.sidebar-dark .sidebar-heading  {
    color: var(--primary-black) !important;
}

.nav-item.active {
    background-color: var(--primary-blue);
}
.nav-item.active span {
    color: white;
}
.nav-item.active  .fa-fw {
    color: white !important;
}
.fa-fw {
    color: var(--primary-black) !important;
}
.sidebar-brand {
    background-color: white;
}
.sidebar-dark #sidebarToggle {
    background-color: var(--primary-blue) !important;
}

.sidebar-brand-text {
    color: var(--primary-blue);
}

.sidebar-brand-icon .fa-laugh-wink {
    color: var(--primary-blue);
}
