/* ----------------------------------------------------------------
        Custom CSS

        Add all your Custom Styled CSS here for New Styles or
        Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.sticky-header #header-wrap,
#header-wrap,
#header {
    /* background-color: var(--color1); */
    /* background-image: linear-gradient(135deg, #000000, var(--color1), #000000); */
}

.content-wrap {
    min-height: calc(100vh - 284px);
}

.register-form-box {
    padding: 20px;
    margin-bottom: 15px;
    
    border: solid 1px rgba(var(--color1rgb), 0.8);
    box-shadow: 0px 0px 20px var(--color1) inset;
    
    background-color: rgba(var(--color3rgb), 0.8);
}
.form-box-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

label,
label.white {
    color: #eeeeee;
    font-size: 1rem;
    margin-bottom: 0px;
}

.menu-link {
    color: #ffffff;
}

.background-blue {
    background: url(../images/bg-blue.jpg) top center repeat;
    background-size: 100%;
}
.background-light {
    background: url(../images/granite-low.jpg) top center repeat;
}
.background-dark {
    background: url(../images/granite-dark-low.jpg) top center repeat;
}

a:hover,
.white {
    color: #ffffff;
}

.black {
    color: #555555;
}

.display-2 {
    font-weight: bold;
}

.radio-style:checked + .radio-style-2-label:before {
    /* background-color: var(--color2); */
    background-color: #F29A08 !important;
}
.section-s2023::before {
    height : 100% !important;
}

.radio-style-2-label.radio-small:before {
    /* border: 2px solid var(--color2); */
    border: 2px solid #F29A08 !important;
}
.radio-style-2-label {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}


input.form-control:focus,
input.form-control {
    /* background-color: transparent; */
    /* border: none; */
    border-bottom: solid 1px #cccccc;
    border-radius: 8px;
    /* color: #333333; */
    color: #000000;
}
input.form-control-file {
    height: auto;
}
input.form-document {
    padding: 6px 10px !important;
}


@keyframes fadeInDown {
    from {
        transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        transform: translate3d(-100px, 0, 0);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInRight {
    from {
        transform: translate3d(100px, 0, 0);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* xs: phone - portrait */
/* default. no media */

/* sm: phone - landscape */
@media (min-width: 576px) {
}
/* md: tablet */
@media (min-width: 768px) {
}
/* lg: desktop */
@media (min-width: 992px) {

    .section-s2023 {
        padding-top: 8rem;
    }

    label {
        font-size: 1.2rem;
    }
    input.form-control {
        font-size: 1.1rem;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .mb-lg-2 {
        margin-bottom: 1.70rem !important;
    }
}
/* xl: wide */
@media (min-width: 1200px) {
}
/* super wide */
@media (min-width: 1440px) {
}
