html, body {
    height: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    box-sizing: border-box;
}

.br-m {
    border-radius: 8px;
}

@media only screen and (max-width: 1260px) {
    .wrapper {
        width: 960px;
    }
}

@media only screen and (max-width: 1020px) {
    .wrapper {
        width: 720px;
    }
}

@media only screen and (max-width: 752px) {
    .wrapper {
        width: 320px;
    }
}

.mr-xs {
    margin-right: 9px;
}

.mr-s {
    margin-right: 14px;
}

.mr-m {
    margin-right: 24px;
}

.mr-l {
    margin-right: 39px;
}

.mb-xs {
    margin-bottom: 9px;
}

.mb-s {
    margin-bottom: 14px;
}

.mb-m {
    margin-bottom: 24px;
}

.mb-l {
    margin-bottom: 39px;
}

.mt-xs {
    margin-top: 9px;
}

.mt-s {
    margin-top: 14px;
}

.mt-m {
    margin-top: 24px;
}

.mt-l {
    margin-top: 39px;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-grow-2 {
    flex-grow: 2;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    width: 100%;
    z-index: 100;
}

.header .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header__user
{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main {
    background-color: #f4f5f6;
    margin-top: 84px;
    padding: 14px 0;
    overflow: auto;
}

#main-nav__dropdown-button:focus {
    outline: none;
}

#header__main-nav .dropdown-item.active, #header__main-nav .dropdown-item:active {
    background-color: #1797CC;
    color: white;
}