html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

    body.bodymax {
        height: 100vh;
        overflow: hidden;
        position: relative;
        margin: 0 auto;
    }

button.clear-text {
    position: absolute;
    top: 16px;
    right: 0px;
    height: 100%;
    line-height: 100%;
    width: 30px;
    color: #253fab;
    outline: none;
    border: unset;
    border-left: unset;
    background-color: unset;
    box-sizing: border-box;
    padding: 0;
}

    button.clear-text.pt-0 {
        top: 0;
    }

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-title h1 {
        display: table-cell;
        vertical-align: middle;
    }

.card {
    width: 100%;
}

.relative {
    position: relative;
}


.body-mark {
    z-index: 9999999999999999;
    display: none;
}

.fade.in {
    opacity: 1;
}

.body-mark.active {
    display: block;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.in {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

.body-mark .modal-backdrop {
    float: left;
    width: 100%;
    height: 100%;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: calc(50% - 30px);
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #0D69B3;
    border-bottom-color: #0D69B3;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 4px solid transparent;
        border-top-color: #F27323;
        border-bottom-color: #F27323;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 4px solid transparent;
        border-top-color: #1FB34A;
        border-bottom-color: #1FB34A;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#modal-area.hide {
    display: none;
}

#modal-area.show {
    display: block;
}

textarea {
    resize: none;
}

.full {
    width: 100%;
}

label.required::after {
    content: '*';
    width: 20px;
    height: 20px;
    color: red;
    margin-left: 4px;
}
