@import url(https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css);
@import '../select2.css';

.form-group {
    margin-top: 10px;
    margin-right: 10px
}

.trailing-submit-btn {
    position: relative;
    top: 35px;
    height: min-content;
}

label {
    font-size: 1rem;
}

.form-control {
    width: 100%;
    font-size: 1rem !important;
    font-weight: 400 !important;
    font-family: 'Gotham' !important;
    padding: .375rem .5rem .375rem .75rem !important;
    border-radius: var(--bs-border-radius) !important;
}

.form-control:focus {
    border-color: gray !important;
    outline: 0 !important;
    -webkit-box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25) !important;
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25) !important;
}

.accordion-collapse {
    overflow: hidden;
    /* Ensures smooth transitions */
    height: auto;
    /* Default height when expanded */
    transition: height 0.3s ease;
    /* Smooth height animation */
}

.accordion-collapse:not(.show) {
    height: 0;
    /* Collapsed state height */
}

#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
    width: 100%;
    transition: 0.3s ease;
}

/* Tabs menu */
.tabs {
    margin: 0;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    border-radius: 2px 2px 0px 0px;
}

@media screen and (max-width: 512px) {
    .tabs {
        height: 40px;
    }
}

/* Tab Links */
.tablinks {
    background: transparent;
    background-image: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.2) 100%);
    border: none;
    outline: none;
    cursor: pointer;
    width: auto;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-family: 'Gotham' !important;
    ;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
}

@media screen and (max-width: 512px) {
    .tablinks {
        height: 40px;
        font-size: 12px;
    }
}

.tablinks:before {
    background-image: linear-gradient(135deg, #000000 0%, #817c85 100%);
    content: "";
    width: 100%;
    height: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

/*tab buttons hover*/
.tablinks:hover::before {
    height: 100%;
    z-index: 2;
    bottom: 0;
}

@media screen and (max-width: 512px) {
    .tablinks:hover::before {
        height: 0;
    }
}

/* Tab active */
.tablinks.active {
    background-color: white;
    z-index: 0;
    border-right: 0px;
    border-left: 0px;
    /* height: 80px; */
    bottom: 0px;
    overflow: hidden;
}

@media screen and (max-width: 512px) {
    .tablinks.active {
        height: 60px;
    }
}

.tablinks.active:before {
    content: "";
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
}

/* Tabs text */
.tablinks.active p,
.tablinks.active:hover p {
    opacity: 1;
    background: -webkit-linear-gradient(135deg, #000000 0%, #817c85 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tablinks p {
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.5s ease;
    padding: 0;
    margin: 0;
    color: #686868;
    backface-visibility: hidden;
    font-weight: 400;
}

.tablinks:hover p {
    color: white;
    opacity: 1;
}

@media screen and (max-width: 512px) {
    .tablinks:hover p {
        color: #686868;
        opacity: 0.6;
    }
}

/* Tabs text bigger */
.tablinks p:before {
    content: attr(data-title);
    position: absolute;
    height: auto;
    width: auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    font-size: 40px;
    transition: 1s ease-out;
    z-index: -1;
    font-weight: 600;
    top: 110%;
}

@media screen and (max-width: 512px) {
    .tablinks p:before {
        display: none;
    }
}

.tablinks:hover p:before {
    opacity: 0.1;
    font-size: 40px;
    top: -80%;
}

/* tab content */
.wrapper_tabcontent {
    background-color: white;
    margin-top: 0px;
    z-index: 0;
    position: relative;
    opacity: 1;
    padding: 20px 0px;
    overflow: hidden;
    transition: all 1s ease;
    top: 0;
}

.tabcontent {
    display: none;
    min-height: 180px;
}

@keyframes tabEffect {
    from {
        top: -40px;
    }

    to {
        top: 0px;
    }
}

.tabcontent.active {
    transition: all 1s ease;
    display: block;
}

/* Tab content line */
.wrapper_tabcontent:after {
    content: "";
    height: 5px;
    width: 100%;
    position: absolute;
    background-image: linear-gradient(135deg, #000000 0%, #817c85 100%);
    left: 0;
    bottom: 0;
    z-index: -2;
    transition: all 1s ease;
}