:root {
    --primary-green-2: #349936;
    --bs-gray-dark: #343a40;
    --primary-green-3: #75B62C;
}

div.alert {
    position: fixed;
    z-index: 99999;
    width: 400px;
    left: 50%;
    margin-left: -200px;
    top: 200px;
}

.muted {
    color: #575756;
    font-weight: 400;
    line-height: 1.2;
    font-size: 16pt;
}

.certificate {
    max-width: 100%;
    width: 300px;
    border: 1px solid #dddddd;
}

.text-align-left {
    text-align: left !important;
}

.align-self {
    align-self: center;
}

.num-list-padding {
    padding-right: 5px;
    padding-left: 35px;
}

.color-green {
    color: #5eb325;
    font-size: 12pt;
    font-weight: bold;
}

.form-checkbox_text::before {
    position: relative;
    display: block;
    /* background-image: url(../images/svg/check.svg); */
    background-image: url(/images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0;
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    top: 3px;
    border: 1px solid #ABB5BE;
    border-radius: 2px;
    transition: 0.3s border-width, 0.3s border-color;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 2px;
}

.p-4 {
    padding: 1.5rem !important;
}

.lh-160 {
    line-height: 169.231%;
}

.fs-9 {
    font-size: 12px;
}

.text-grey-700 {
    color: #495057;
}

.text-decoration-none {
    text-decoration: none !important;
}

.usoft-btn-orange, .usoft-btn-green, .usoft-btn-grey, .usoft-btn-purple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    color: #ffffff;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
}

.usoft-btn-green {
    background: var(--primary-green-2);
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

.usoft-btn-green:hover {
    background-color: var(--primary-green-3);
}

.form-checkbox_input:checked + .form-checkbox_text::before {
    border-color: transparent;
    background-color: var(--primary-green-2);
    background-size: 12px;
}

.form-checkbox_text {
    display: flex;
    align-items: start;
    grid-gap: 8px;
    font-size: 13px;
    color: var(--bs-gray-dark);
    line-height: 166%;
}

.cookies-accept-box {
    position: fixed;
    left: calc((100% - 455px) / 2);
    bottom: 30px;
    max-width: 455px;
    z-index:9999;
}

@media (max-width: 576px) {
    .cookies-accept-box {
        left: 10px;
        right: 10px;
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .d-sm-flex {
        display: flex !important;
    }
}

