:root {
    --c-blue: #004279;
    --c-green: #34743C;
    --c-orange: #D0A907;
    --c-primary: #1E1E1E;
    --c-gray: #F4F4F4;
}

.container {
    max-width: 1240px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: #1E1E1E;
}

main {
    margin-bottom: auto;
    padding-bottom: 72px;
}

body, html {
    min-height: 100%;
}

html {
    height: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: opacity .3s;
}

.btn:hover {
    opacity: .85;
}

.btn_back_bl {
    display: flex;
    margin-top: 20px;
}

.btn_back {
    padding: 0 20px;
    height: 40px;
}

.btn-red {
    color: white;
    background-color: #C40C37;
}

.btn-blue {
    color: white;
    background-color: var(--c-blue);
}

.btn-green {
    color: white;
    background-color: var(--c-green);
}

.btn-gray {
    color: rgba(30, 30, 30, 0.5);
    background-color: var(--c-gray);
}

.btn[data-disabled="true"] {
    opacity: .3;
    cursor: not-allowed;
}

textarea::placeholder, input::placeholder {
    opacity: .5;
    color: inherit;
}

.title-green {
    color: var(--c-green)!important;
}

.title-red {
    color: #C40C37!important;
}

.title-yellow {
    color: var(--c-orange)!important;
}

.title-blue {
    color: var(--c-blue)!important;
}

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

.mt-50 {
    margin-top: 50px;
}

.d-none {
    display: none;
}