.full_screen_wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
    left: 0;
}

.absolute_block {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.white_block {
    width: 38%;
    background: #f7f7f7;
    border-radius: 3px;
    box-shadow: 0 0 340px 1620px #000000bf;
    padding: 20px;
    text-align: center;
    position: relative;
}

.white_block h1 {
    color: #0073bd;
}

.white_block img {
    width: 90px !important;
}

.dateChangerTrigger {
    display: flex;
    align-items: center;
    color: black;
}

.dateChangerTrigger:hover {
    color:black;
}

.dateChangerTrigger img {
    width: 20px;
    margin-top: -5px;
    margin-left: 7px;
}

.change_dates {
    display: flex;
    justify-content: flex-end;
}


.extraOptions {
    margin-top: 50px;
    max-height: 370px;
    overflow-y: scroll;
}

.close_icon {
    position: absolute;
    top: 5px;
    right: 5px;
    margin-top: -5px;
    cursor: pointer;
}

.close_icon img {
    width: 20px !important;
}


@media (max-width: 1199.98px) {

    .white_block {
        width: 45%;
    }

}



@media (max-width: 991.98px) {


    .white_block {
        width: 60%;
    }

}

@media (max-width: 767.98px) {


    .white_block {
        width: 80%;
    }


}

@media (max-width: 575.98px) {

    .white_block {
        width: 90%;
    }

    .white_block h1 {
        color: #0073bd;
        font-size: 1.5rem;
    }

}

@media (max-width: 375px) {

 .dateChangerTrigger {
     font-size: 0.7rem;
 }

}



