/* DEFAULT AND MOBILE */
.pageContent{
    padding: 0 0 20vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.emailAlertForm{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding: 20px;
    gap: 50px 0;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #979797;
}
.emailAlertFormContainer{
    margin: 0 0 50px;
}
.emailAlertForm.edit{
    display: none;
    height: auto;
    min-height: 475px;
    width: 100%;
    transition: height 1s ease-in-out, opacity 1000ms ease-in-out, transform 1s ease-in-out;
    opacity: 0;
    transform: scaleY(0), translateY(-100%) !important;
    /* box-shadow: 0px 0px 10px #cd9300 !important; */
}
.emailAlertForm.fading-in{
    display: flex !important;
    /* height: 0px; */
    opacity: 1;
    transform: scaleY(1), translateY(100%) !important;
    /* box-shadow: 0px 0px 10px #d88200 !important; */
}
.emailAlertForm.fading-out{
    /* display: none; */
    /* height: 0px; */
    opacity: 1;
    height: 0%;
    transform: scaleY(0), translateY(-100%) !important;
}
.userEmailAlertEditor{
    display: none;
    height: auto;
    min-height: 475px;
    width: 100%;
    transition: opacity 1000ms ease-in-out, transform 1s ease-in-out;
    opacity: 0;
    transform: scaleY(0), translateY(-100%);
}
.userEmailAlertEditor.fading-in{
    display: block;
    /* height: 0px; */
    opacity: 1;
    transform: scaleY(1), translateY(100%) !important;
    /* box-shadow: 0px 0px 10px #d88200 !important; */
}
.userEmailAlertEditor.fading-out{
    /* display: none; */
    /* height: 0px; */
    opacity: 1;
    transform: scaleY(0), translateY(-100%) !important;
}
.formInputs{
    display: flex;
    flex-direction: column;
    gap: 50px 0;
}
.titleAndDescription{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.formColumn{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 335px;
}
.formColumn h3 {
    margin: 0 auto;
}
.imageContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    color: #0099FF;
    border-radius: 50%;
    border: 3px solid #0099FF;
    width: 58px;
    height: 58px;
}
.imageContainer img {
    width: 38px;
    height: 38px;
    fill: currentColor;
}
.priceContainer{
    /* position: relative; */
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 0 5px; */
    color: #979797;
    outline: 1px solid #0099FF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}
.dollar-sign-container{
    /* position: absolute; */
    width: 20px;
    height: 20px;
    margin: 0 10px;
    /* top: 50%; */
    /* left: 15px; */
    /* transform: translateY(-50%); */
    border: 1px solid #979797;
    border-radius: 50%;
}
.dollar-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px;
    /* color: #979797; */
    opacity: 0.6;
}
.priceInput {
    flex: 0 1 auto;
    padding: 10px 10px 10px 0 !important;
    height: 55px;
    margin: auto 0;
    outline: none !important;
    border: none !important;
    /* outline: 1px solid #0099FF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); */
    border-radius: 7px !important;
    background-color: #FFF !important;
}
.priceInput::placeholder{
    color: #979797 !important;
}
.priceInput:-webkit-autofill,
.priceInput:-webkit-autofill:hover,
.priceInput:-webkit-autofill:focus,
.priceInput:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}
.directFlightContainer{
    /* position: absolute; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 25px 0 0;
}
.directFlights{
    /* position: absolute; */
    color: #000;
    padding: 0px 0 0 10px;
}
.directFlightLabel{
    margin-right: 8px;
    color: #979797
}
.directFlight input[type="checkbox"]::-ms-check {
    display: none !important;
    outline: none !important;
}
.directFlight input[type="checkbox"]:checked::before {
    content: '' !important;
    display: none !important;
    outline: none !important;
}
.directFlight input[type="checkbox"]{
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    appearance: none !important;
    color: #979797;
    border: 1px solid #979797;
    outline: none !important;
}
.directFlight input[type="checkbox"]:checked {
    border-color: #979797 !important;
}
.date{
    width: 100%;
    /* height: 45px; */
    color: #000;
    outline: 1px solid #0099FF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    position: relative;
}
.calendar-img {
    width: 16px;
    height: 16px;
    margin: auto 10px auto 0;
    opacity: 0.6;
}
.calendar-input{
    border-radius: 5px;
}
.calendar{
    display: none;
    position: absolute;
    top: 60px;
    left: -1px;
    width: 100%;
    max-width: 375px;
    background: #fff;
    border: 1px solid #979797;
    z-index: 1000;
    padding: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}
.dateContainer{
    display: flex;
    flex-direction: row;
    padding: 10px;
    min-width: 280px;
    height: 55px;
    border: none !important;
    outline: none !important;
    border-radius: 7px;
    background-color: #FFF !important;
}
.date-input{
    border: none !important;
    outline: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    width: 120px !important;
    max-width: fit-content !important;
    min-width: 0 !important;
    display: inline-block !important;
    text-align: center !important;
}
.date-display-placeholder{
    margin: auto 0;
    color: #979797;
}
.calendar-title-container{
    display: flex;
    gap: 0 5px;
    justify-content: center;
    width: 100%;
}
.calendar-title{
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
    background-color: #FFF;
    width: fit-content;
}
.calendar-set-and-close-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
}
.calendar-controls {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.arrow-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0;
    width: 38px;
    height: 38px;
}
.arrow-container:hover{
    transition: all 100ms ease-in-out;
    scale: 1.3;
    cursor: pointer;
}
.arrow-prev{
    width: 10px;
    height: 10px;
    rotate: 45deg;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
}
.arrow-next{
    width: 10px;
    height: 10px;
    rotate: 45deg;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.day-range-controls{
    display: flex;
    gap: 0 5px;
    justify-content: center;
}
.calendar-controls .day-range-controls button, .calendar-controls .day-range-controls input {
    padding: 5px;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
}
.calendar-controls .day-range-controls input {
    min-width: 100px;
}
.week-day-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    color: #979797;
    margin: 15px 0 0;
}
.calendar-days{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* gap: 5px; */
    margin: 45px 0;
    overflow: visible;
    z-index: 10;
}
.calendar-day{
    /* padding: 10px; */
    /* background-color:#eaeaea; */
    text-align: center;
    /* border-radius: 5px; */
    transition: filter 100ms ease-in-out, color 100ms ease-in-out;
    position: relative;
    z-index: 1;
    user-select: none;
}
.highlighted{
    /* color: #0099FF; */
    /* filter: brightness(1.1); */
    outline: 3px solid #0099FF !important;
    /* border-top: 3px solid #0099FF !important;
    border-bottom: 3px solid #0099FF !important;
    box-sizing: border-box; */
    /* box-shadow: 0 0 10px rgba(0, 153, 255, 1); */
    font-weight: 700;
}
.calendar-day-label{
    background-color: #0099FF;
    color: #FFF;
    font-weight: 700;
    position: absolute;
    top: -33px;
    left: 0;
    height: 30px;
    min-width: 50px;
    padding: 0 5px;
    z-index: 1000;
    outline: 3px solid #0099FF;
    border-radius: 5px 5px 0 0;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    display: inline-block;
    font-size: 12px;
}
.calendar-day.selected{
    /* color: #0099FF; */
    background-color: #0099FF;
    /* filter: brightness(1.1); */
    outline: 3px solid #0099FF !important;
    /* border-top: 3px solid #0099FF !important;
    border-bottom: 3px solid #0099FF !important;
    box-sizing: border-box; */
    /* box-shadow: 0 0 10px rgba(0, 153, 255, 1); */
    z-index: 10;
}
.calendar-day:hover, .calendar-day:focus{
    /* color: #0099FF; */
    cursor: pointer;
    outline: 3px solid #070707 !important;
    /* filter: brightness(1.1); */
    font-weight: 700;
}
@keyframes arrow-loop-left {
    0% {
        opacity: 0;
        scale: 100%;
    }
    25% {
        opacity: 1;
        scale: 100%;
    }
    50% {
        opacity: 1;
        scale: 150%;
    }
    100% {
        opacity: 0;
        scale: 150%;
    }
}
@keyframes arrow-loop-right {
    0% {
        opacity: 0;
        scale: 100%;
    }
    25% {
        opacity: 1;
        scale: 100%;
    }
    50% {
        opacity: 1;
        scale: 140%;
    }
    100% {
        opacity: 0;
        scale: 140%;
    }
}
.arrow-container-left{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);    left: -20px;
    z-index: 999;
}
.arrow-container-right{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);    right: -20px;
    z-index: 999;
}
.arrow-sub-container-left{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.arrow-sub-container-right{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.arrow-animation-left, .arrow-animation-right {
    position: absolute;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    z-index: 999;
    transform: rotate(45deg);
    background-color: #0099FF;
}
.arrow-animation-left{
    right: -20px;
    animation: arrow-loop-left 1.5s infinite;
}
.arrow-animation-right {
    left: -20px;
    animation: arrow-loop-right 1.5s infinite;
}
.arrow-animation-right::before{
    z-index: 1111;
}
.formRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    gap: 0 10px;
    margin-top: 55px;
}
.giveErrorMessage{
    border: 2px dashed rgb(37, 15, 15);
    border-radius: 10px;
    background-color: #e4d1d1;
    font-size: larger;
    padding: 25px;
}
.airportContainer{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 55px;
    height: auto;
    border-radius: 7px;
    outline: 1px solid #0099FF;
    background-color: #FFF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    /* padding: 5px; */
    overflow-x: hidden;
    position: relative;
}
.location-img-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 24px;
    /* height: 100% !important; */
    z-index: 15;
    background-color: #FFF;
    position: relative;
}
.location-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.location-img{
    width: 16px;
    height: 16px;
    margin: auto 0 auto 5px;
    opacity: 0.6;
}
.airport-selections{
    display: flex;
    flex: 0 1 auto;
    margin: 5px 0;
    max-width: 70%;
    gap: 5px;
    outline: 0px solid #000;
    box-sizing: border-box;
    z-index: 10;
}
.selected-gate{
    display: flex;
    align-items: center;
    width: fit-content;
    min-width: fit-content;
    height: 45px;
    padding: 0 10px;
    gap: 0 10px;
    outline: 1px solid #000;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #005A9699;
    line-height: 16px;
    z-index: 11 !important;
}
.selected-gate:hover{
    filter: brightness(130%);
}
.dropdown-container{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom right, white 30%, #0099ff);
    margin: 0;
    padding: 10px;
    position: absolute;
    z-index: 10;
    border: 1px solid #000;
    overflow: hidden;
    box-shadow: 
        0 1px 5px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.1);
}
.dropdown-header{
    font-weight: 600;
}
.dropdown-list{
    display: flex;
    flex-direction: column;
    list-style: none !important;
    top: 0;
    margin: 0;
}
.dropdown-effect {
    position: absolute;
    top: 20%;
    right: 0;
    width: 50%;
    height: 50%;
    background: #FFF;
    border-radius: 50%;
    transform: scale(1.5);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    box-shadow:
        0 0 33px 2px rgba(255, 255, 255, 0.9),
        0 0 66px 4px rgba(255, 255, 255, 0.8),
        0 0 99px 6px rgba(255, 255, 255, 0.7),
        0 0 132px 8px rgba(255, 255, 255, 0.5),
        0 0 165px 10px rgba(255, 255, 255, 0.3),
        0 0 198px 12px rgba(255, 255, 255, 0.2),
        0 0 231px 14px rgba(255, 255, 255, 0.1);
}
.dropdown-header,
.dropdown-list,
.dropdown-item {
    z-index: 2;
}
.dropdown-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    gap: 0 10px;
}
.close-btn, .close-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.close-btn:hover, .close-btn2:hover{
    filter: brightness(.8) !important;
}
.airport-out, .airport-in{
    flex-grow: 1;
    flex-basis: 0;
    position: relative;
    outline: none !important;
    border: none !important;
    border-radius: 7px;
    background-color: #FFF !important;
    margin-left: 5px;
}
.airport-has-selection{
    outline: 1px solid #000;
}
.resultContainer{
    position: relative;
}
.airport-results{
    position: absolute;
    top: 0;
    outline: 1px solid #000;
    background: white;
    max-height: 200px;
    width: 100%;
    overflow-y: auto;
    display: none;
    margin-top: 0px;
    gap: 5px;
    z-index: 3;
}
.result-option{
    padding: 10px;
    width: 100%;
    cursor: pointer;
    min-height: 50px;
    z-index: 10;
}
.result-option:hover {
    background: #eee;
}
.result-item {
    padding: 10px;
    cursor: pointer;
}

.result-item:hover {
    background: #f0f0f0;
}
.alertProbabilityContainer{
    position: relative;
    height: 0px;
}
.alertProbabilityText{
    position: absolute;
    top: 0;
    left: 0;
}
#directFlight{
    outline: 1px solid #000;
}
.dropDownContainer{
    position: relative;
    display: inline-block;
    width: 100%;
    /* height: 35px; */
    /* padding: 5px 0; */
    border: 1px solid #0099FF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
}
.tooltip-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #aaaaaa;
    cursor: pointer;
    border: 1px solid #aaaaaa;
    border-radius: 50%;
    z-index: 1;
}
.tooltip-icon:focus + .tooltip-dialog,
.tooltip-icon:hover + .tooltip-dialog {
    display: flex;
}
.tooltip-dialog {
    display: none;
    flex-direction: row;
    position: absolute;
    gap: 0 10px;
    width: 200px;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    color: #FFF;
    background-color: #0099FF;
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.tooltip-dialog-arrow{
    display: none;
    position: absolute;
    top: 0;
    left: -40px;
    width: 24px;
    height: 24px;
    background-color: #0099FF;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    transform: rotate(45deg);
    z-index: 3;
}
.tooltip-dialog span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    min-width: 24px;
    padding: 4px;
    margin: auto 0;
    border-radius: 50%;
    background-color: #75FF00;
}
.tooltip-dialog p{
    margin: auto 0;
}
.tooltip-dialog span img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-height: 20px;
    max-width: 20px;
    background-color: #75FF00;
}
.email-alert-dropdown{
    color: #000;
    outline: 1px solid #0099FF;
    height: 55px;
    border-radius: 7px;
}
.email-alert-dropdown[disabled] {
    color: #000000 !important; /* Ensures the text color is black */
    background-color: #acacac; /* Light background color for better contrast */
    opacity: .7 !important; /* Ensures the select element is fully opaque */
    -webkit-text-fill-color: #000000 !important; /* Ensures the text color remains black on Safari */
}
.optionDefault{
    background-color: #ddd;
    display: flex;
    align-items: center;
    gap: 6px;
}
.option-lock-icon{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    z-index: 5;
}
.buttonContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.email-alert-submit{
    background-color: #0099FF;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    color: white;
    width: 100%;
    max-width: 300px;
    height: 50px;
    margin-left: auto;
}
.email-alert-submit:hover, .email-alert-submit:focus{
    outline: 3px solid #000 !important;
    filter: brightness(1.1);
}

.interactive:hover, .interactive:focus, .interactive:focus-within{
    outline: 3px solid #0099FF !important;
}
.interactiveAlt{
    box-sizing: border-box;
}
.interactiveAlt:hover, .interactiveAlt:focus, .interactiveAlt:focus-within{
    border: 3px solid #0099FF !important;
}

/* CURRENT EMAIL ALERTS STYLES */
.alertStatus{
    position: absolute;
    top: -13px;
    right: calc(min(100px, 5vw));
    display: none;
    justify-content: center;
    align-items: center;
    padding: 5px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 2;
    font-weight: 500;
    font-size: 14px;
    background-color: #F0F0F0;
    height: 100%;
    max-height: 26px;
}
.alertExpired{
    box-shadow: 0px 0px 10px #ff0000 !important;
}
.alertSent{
    box-shadow: 0px 0px 10px #75FF00;
}
.locationText{
    font-weight: 600;
    margin: 0;
}
.emailAlertRow{
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 0 10px;
}
.emailAlertRow p{
    display: inline;
    margin: 0;
}
.emailAlertColumn{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
}
.emailAlertColumn h4{
    display: block;
    word-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
}
.emailAlertColumn h4 .locationText {
    display: inline;
    margin: 0;
}
.userEmailAlert{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: auto;
    /* padding: 0 0 20px; */
    /* gap: 50px 0; */
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #0099FF;
    margin: 0 0 50px;
    gap: 10px 0;
    /* overflow: hidden; */
    transition: opacity 1000ms ease-in-out, transform 1s ease-in-out;
    opacity: 1;
    transform: scaleY(1), translateY(-100%);
}
.userEmailAlert.fading-in{
    display: flex;
    /* height: 475px; */
    /* overflow: hidden; */
    opacity: 1;
    transform: scaleY(1), translateY(100%) !important;
}
.userEmailAlert.fading-out{
    /* display: none; */
    /* height: 0px; */
    opacity: 0;
    transform: scaleY(0), translateY(-100%) !important;
}
.alertImageContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 50px;
    /* height: 100%; */
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
}
.alertImageWrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
}
.alertImageWrapper img {
    width: 38px;
    height: 38px;
    /* fill: currentColor; */
}
.alertButtonsContainer{
    display: flex;
    flex-direction: row;
    min-width: 50px;
    height: auto;
    overflow: hidden;
    background-color: #f0f0f0;
    border-top: 1px solid #ccc;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.alertButtons{
    height: 100%;
    min-height: 36px;
    max-height: 36px;
    width: 100%;
    background-color: #f0f0f0;
    border: 0px solid #fff;
    outline: 0px solid #fff;
    padding: 5px;
    box-sizing: border-box;
}
.alertButtons:hover{
    filter: brightness(1.1);
}

/* LARGER MOBILE */
@media (min-width: 468px){
    .alertStatus{
        right: calc(min(100px, 10vw));
    }
}

/* END OF MOBILE, BEGINNING OF TABLET */
@media (min-width: 768px){
    /* .alertStatus{
        right: 100px;
    } */
}

/* END OF TABLET, BEGINNING OF DESKTOP */
@media (min-width: 1024px){
    .userEmailAlert{
        flex-direction: row;
        gap: 0 20px;
    }
    .alertImageContainer{
        border-top-left-radius: 15px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 0px;
        border-right: 1px solid #ccc;
        border-bottom: 0px solid #ccc;
    }
    .emailAlertColumn h4{
        display: block;
    }
    .alertButtonsContainer{
        flex-direction: column;
        border-left: 1px solid #ccc;
        border-top: 0px solid #ccc;
        border-top-left-radius: 0px;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 15px;
    }
    .alertButtons{
        max-height: 100%;
    }
    .alertStatus{
        background-color: #FFF;
    }
}

/* LARGER SCREENS */
@media (min-width: 1280px){
    /* .emailAlertForm{
        display: flex;
        flex-direction: row;
        position: relative;
        width: 100%;
        padding: 20px;
        gap: 0 20px;
        border: 1px solid #ccc;
        border-radius: 15px;
        box-shadow: 0px 0px 10px #0099FF;
    } */
    .formInputs{
        display: flex;
        flex-direction: row;
        gap: 0 20px;
    }
}
/* FOR DEAL PAGE */
.modal-content{
    padding: 0;
    padding-top: 25px;
    padding-bottom: 275px;
    min-height: fit-content;
}