
html {
    min-width: 500px;
}

body {
    font-family: Mulish;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.brd-shell {
    display: grid;
    grid-template-columns: 1px 1fr;
    grid-template-rows: 60px 1fr;
    grid-template-areas:
        'header header'
        'sidenav content'
        'sidenav content';
    min-height: 100%;
}

.brd-header {
    display: flex;
    align-items: center;
    padding: 0;
    color: black;
    box-sizing: border-box;
    border-bottom: 5px solid #3292d3;
    grid-area: header;
}

.brd-header-title {
    font-size: 18px;
    color: #3292d3;
    padding-left: 16px;
}

.brd-header-menu {
    width: 160px;
    height: 30px;
    border-right: 1px solid black;
}

.brd-header img {
    height: 72px;
    width: 96px;
}

.brd-header a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.title-group-title {
    border-left: 2px solid #3292d3;
    padding-left: 15px;
    font-weight: 400;
    font-size: 38px;
    margin-top: 74px;
}

.content-group {
    font-style: normal;
    font-weight: normal;
    margin-bottom: 48px;
    margin-top: 10px;
}


.main-container {
    position: relative;
    margin-left: 10vw;
}

form {
    display: none;
}

.button {
    padding: 8px 16px;
    background-color: #3292d3;
    color: white;
    border-radius: 2px;
    display: inline-block;
    line-height: 19px;
    cursor: pointer;
}

    .button[disabled] {
        cursor: not-allowed;
    }

    .button * {
        vertical-align: middle;
    }

    .button .icon {
        width: 16px;
        height: 16px;
    }

    .button > a {
        text-decoration: none;
        color: inherit;
    }

.success {
    color: green;
}

.fail {
    color: red;
}

.check .icon {
    width: 24px;
    height: 24px;
}

.check-title {
    font-weight: 400;
}

.check {
    font-size: 18px;
    display: flex;
    margin-bottom: 25px;
}

.icon {
    margin-right: 5px;
}

.btn-menu .button {
    margin-right: 25px;
    margin-bottom: 50px;
}

.button.outlined {
    background-color: white;
    color: #3292d3;
    border: 1px solid #3292d3;
}

.check-details {
    margin-left: 10px;
}

    .check-details > p {
        color: black;
        font-size: 14px;
        margin-top: 8px;
    }

.check-container {
    margin-bottom: 35px;
}

.loader {
    position: relative;
    border: 2px solid white;
    border-radius: 50%;
    border-top: 2px solid #3292d3;
    display: inline-block;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
