/* School Selector Component Styles */
.studentDropdown {
    display: flex;
    max-width: 540px;
    justify-content: space-between;
    margin: 0 auto;
    gap: 61px;
}

@media (max-width: 768px) {
    .studentDropdown {
        gap: 4px;
    }
}

.studentDropdown > select {
    max-width: 237px;
    margin-bottom: 0 !important;
}

.studentDropdown .select2-container {
    width: 100% !important;
    max-width: 237px;
}

.studentDropdown .select2-container .select2-selection--single {
    height: 48px;
    background: #F6F6F6;
    border: 1px solid #000168;
    box-sizing: border-box;
    border-radius: 5px;
}

.studentDropdown .select2-container .select2-selection--single .select2-selection__rendered {
    height: 100%;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: #000168;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .studentDropdown .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 17px;
        line-height: 25px;
    }
}

.studentDropdown .select2-container .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
    color: inherit;
    text-align: left;
}

.studentDropdown .select2-container .select2-selection--single .select2-selection__rendered .form-item-selected:first-child {
    color: inherit;
    text-align: left;
    font-weight: 700;
    font-size: 25px;
    line-height: 29px;
}

@media (max-width: 768px) {
    .studentDropdown .select2-container .select2-selection--single .select2-selection__rendered .form-item-selected:first-child {
        font-size: 17px;
        line-height: 25px;
    }
}

.studentDropdown .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.studentDropdown .select2-container .select2-selection--single .select2-selection__arrow b {
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjE3OTMgMC43NUw2LjUgMTEuODk4NUwwLjgyMDY2MyAwLjc1TDEyLjE3OTMgMC43NVoiIGZpbGw9IiNBN0VDRjMiIHN0cm9rZT0iIzAwMDE2OCIvPgo8L3N2Zz4K);
    width: 20px;
    height: 20px;
    border: none;
    margin-left: -15px;
    background-position: center;
    transform: translateY(-50%);
}

.studentDropdown a.studentButtonPrices {
    width: 100% !important;
    max-width: 237px;
    background: #E86E14;
    border: 1px solid #000168;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    -webkit-box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.4), inset -2px -2px 0 0 rgba(0, 0, 0, 0.4);
    box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.4), inset -2px -2px 0 0 rgba(0, 0, 0, 0.4);
    padding: 10px 5px;
    font-weight: 700;
}

.studentDropdown a.studentButtonPrices:hover {
    color: #fff;
    background: #ef984c;
    -webkit-box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px -1px 0 0 rgba(0, 0, 0, 0.4);
    box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px -1px 0 0 rgba(0, 0, 0, 0.4);
}

.studentDropdown a.studentButtonPrices:not([href]),
.studentDropdown a.studentButtonPrices[href="Select School"] {
    cursor: not-allowed;
    user-select: none;
}

@media (max-width: 768px) {
    .studentDropdown a.studentButtonPrices {
        font-size: 20px;
        line-height: 25px;
    }
}

