.col-1 {
    width: 8.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-2 {
    width: 16.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-3 {
    width: 25%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-4 {
    width: 33.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-5 {
    width: 41.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-6 {
    width: 50%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-7 {
    width: 58.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-8 {
    width: 66.666%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-9 {
    width: 75%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-10 {
    width: 83.333%;
    padding: 0 12px 0 12px;
    float: left;
}

.col-12 {
    width: 100%;
    padding: 0 12px 0 12px;
    float: left;
}




.form-group {
    margin-bottom: 15px;
}

.form-control {
    border: none;
    display: block;
    width: 100%;
    height: 67px;
    border: 3px solid #ddd;
    border-radius: 5px;
    padding: 9px 20px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    accent-color: var(--themeColor);
    transition: all .25s ease;
}

    .form-control:hover {
        border: 3px solid var(--themeColor);
    }

.form-group label {
    margin-left: 25px;
    letter-spacing: 2px;
}

.form-group input:focus {
    border: 3px solid rgb(66, 88, 110);
}

.btn {
    width: 100%;
    height: 67px;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-image: none;
    border: 5px solid #fff;
    border-radius: 5px;
    -webkit-transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
    transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 6px 12px;
    margin: 19px 0 20px 0;
}

.btn-warning {
    background-color: orange;
    border-color: orange;
}

.btn-success {
    background-color: rgb(47, 193, 47);
    border-color: rgb(47, 193, 47);
}

.btn-danger {
    background-color: rgb(255, 0, 0);
    border-color: rgb(255, 0, 0);
}

.btn-primary {
    background-color: var(--themeColor);
    border-color: var(--themeColor);
}

.btn:hover {
    filter: contrast(1.5);
}

.btn i {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}

.col-12 h3 {
    text-align: center;
    margin: 60px 0 0px 0;
}

.col-12 hr {
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}


input[type=file] {
    height: 65px;
    border: none;
}

    input[type=file]::file-selector-button {
        margin-right: 20px;
        border: none;
        background: var(--themeColor);
        padding: 10px 20px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        transition: background .2s ease-in-out;
    }

        input[type=file]::file-selector-button:hover {
            background: var(--themeColorHover);
        }

.ppFoto {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}










/*--- BTN OUTLINE START ---*/
.btn-outline-success {
    background-color: transparent;
    border-color: rgb(47, 193, 47) !important;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-success:hover {
        background-color: rgb(47, 193, 47);
    }



.btn-outline-warning {
    background-color: transparent;
    border-color: orange !important;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-warning:hover {
        background-color: orange;
    }



.btn-outline-primary {
    background-color: transparent;
    border-color: var(--themeColor) !important;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-primary:hover {
        background-color: var(--themeColor);
    }



.btn-outline-danger {
    background-color: transparent;
    border-color: red !important;
    transition: all 0.2s ease-in-out;
}

    .btn-outline-danger:hover {
        background-color: red;
    }
/*--- BTN OUTLINE START ---*/










.upperCase {
    text-transform: uppercase;
}

.lowerCase {
    text-transform: lowercase;
}




















/*--- INPUT GROUP START ---*/
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: 20px 0 20px 0;
}

    .input-group > .form-control,
    .input-group > .form-floating,
    .input-group > .form-select {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        border-right: 0;
        border-radius: 5px 0 0 5px !important;
    }

    .input-group .lcslt {
        min-width: 0;
        border-right: 0;
        border-radius: 5px 0 0 5px !important;
    }

.input-group-btn-start {
    margin: 0 !important;
    border: 3px solid #ddd;
    border-right: 0;
    border-radius: 5px 0 0 5px;
}

.input-group-btn-midle {
    margin: 0 !important;
    border: 3px solid #ddd;
    border-left: 0;
    border-right: 0;
    border-radius: 0 !important;
}

.input-group-btn-end {
    margin: 0 !important;
    border: 3px solid #ddd;
    border-left: 0;
    border-radius: 0 5px 5px 0 !important;
}

    .input-group-btn-start:hover, .input-group-btn-midle:hover, .input-group-btn-end:hover {
        border: 3px solid var(--themeColor);
    }
/*--- INPUT GROUP END ---*/















.p-0 {
    padding: 0 !important;
}
.d-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
























/*--- MODAL START ---*/
.modal {
    --bs-modal-zindex: 16;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: var(--bs-body-color);
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: #222;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transform: translate(0, -50px);
    transition: transform 0.3s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    --bs-backdrop-zindex: 15;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 1;
        /*opacity: var(--bs-backdrop-opacity);*/
        backdrop-filter: blur(3px);
        background-color: rgba(0, 0, 0, 0.5);
    }

.modal-header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-radius: 5px 5px 0 0;
}

/*    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
        margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
        margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
        margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
        margin-left: auto;
    }*/

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
    background-color: #f4f4f4;
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: #f4f4f4;
    border-radius: 0 0 5px 5px;
}

    .modal-footer > * {
        margin: calc(var(--bs-modal-footer-gap) * 0.5);
    }

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header,
    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-header,
        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-header,
        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-header,
        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-header,
        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-header,
        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }
}
/*--- MODAL END ---*/













































/*--- MOBILE START ---*/
@media all and (max-width: 1250px) and (min-width: 850px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6 {
        width: 50%;
    }

    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }

    /*- input group start -*/
    .input-group .lcslt {
        border: 3px solid #ddd;
        border-radius: 5px 5px 0 0 !important;
    }

    .input-group-btn-midle {
        border: 3px solid #ddd;
        border-radius: 0 0 0 5px !important;
    }

    .input-group-btn-end {
        border: 3px solid #ddd;
        border-radius: 0 0 5px 0 !important;
    }
    /*- input group end -*/
}

@media all and (max-width: 850px) and (min-width: 50px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        width: 100%;
    }

    /*- input group start -*/
    .input-group .lcslt {
        border: 3px solid #ddd;
        border-radius: 5px 5px 0 0 !important;
    }

    .input-group-btn-start {
        border: 3px solid #ddd;
        border-bottom: 0;
        border-radius: 5px 5px 0 0 !important;
    }

    .input-group-btn-midle {
        border: 3px solid #ddd;
        border-bottom: 0;
        border-top: 0;
        border-radius: 0 !important;
    }

    .input-group-btn-end {
        border: 3px solid #ddd;
        border-top: 0;
        border-radius: 0 0 5px 5px !important;
    }
    /*- input group end -*/
}
/*--- MOBILE END ---*/
