html, body {
    overscroll-behavior: none;  /* No more scrolling above html */
}

.standard_button {
    padding-left: 13px !important;
    padding-right: 13px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-weight: 800 !important;
    font-family: 'Nunito' !important;

}

.standard_button:hover {
    box-shadow: rgba(136, 136, 164, 0.20) 0px 1px 3px, rgba(136, 136, 164, 0.30) 0px 1px 2px !important;
}

.add_button {
    background: none !important;
    color: rgba(67, 65, 254, 1) !important;
}

.cancel_button {
    background: none !important;
    color: rgb(14,14,68) !important;
}

.deactivated_button {
    background: none !important;
    color: rgb(218, 218, 225) !important;
}

.grey_border {
    border: 4px rgb(218, 218, 225) solid !important;
}

.medium_grey_border {
    border: 4px rgb(136, 136, 164) solid !important;
}

.standard_border {
    border: 4px rgb(218, 218, 225) solid !important;
    border-radius: 4px !important;
}

.errorlist {
    color: #F92633;
    font-family: 'Nunito' !important;
}

.transparent_layer {
    background-color: rgba(0, 0, 0, 0);
}

.shnake_container {
    border-radius: 20px;
    padding: 1.5%
}

.white_border {
    border: 4px white solid !important;
}

.green_border {
    border: 4px rgb(46, 196, 182) solid !important;
}

.blue_color {
    color: #3941FE !important;
}

.light_blue_color {
    color: rgb(32, 164, 243) !important;
}

.dark_blue_color {
    color: rgb(14,14,68) !important;
}

.green_color {
    color: rgb(46, 196, 182);
}

.yellow_color {
    color: rgb(249, 210, 79);
}

.light_grey_color {
    color: rgb(218, 218, 225);
}

.medium_grey_color {
    color: rgb(136, 136, 164);
}

.yellow_underline {
    text-decoration: underline #F9D24F solid;
    text-decoration-skip-ink: none;
}

.underline_large {
    text-decoration-thickness: 7px;
    text-underline-offset: -6px;
}

.underline_extra_large {
    text-decoration-thickness: 12px;
    text-underline-offset: -10px;
}

.box_shadow_blue {
    box-shadow: 0px 0px 5px 0px #3941FE;
}

.box_shadow_black {
    box-shadow: 0px 0px 5px 0px black;
}

.blue_background {
    background-color: #3941FE !important;
}

.blue_background_transparent {
    background-color: rgba(67, 65, 254, 0.7) !important;
}

.light_blue_background {
    background-color: rgb(32, 164, 243) !important;
}

.dark_blue_background {
    background-color: rgb(14,14,68) !important;
}

.light_grey_background {
    background-color: rgb(218, 218, 225) !important;
}

.yellow_background {
    background-color: #F9D24F;
}

.yellow_background_transparent {
    background-color: rgba(249, 210, 79, 0.7);
}

.red_background {
    background-color: #F92633;
}

.red_background_transparent {
    background-color: rgba(249, 38, 51, 0.7);
}

.font_bold {
    font-weight: 800;
}

.font_italic {
    font-style: italic !important;
}

.font_extra_small {
    font-family: 'Nunito' !important;
}
.font_small {
    font-family: 'Nunito' !important;
}

.font_medium {
    font-family: 'Nunito' !important;
}

.font_large {
    font-family: 'Nunito' !important;
    font-weight: 800;
    font-style: italic;
}

.font_extra_large {
    font-family: 'Nunito' !important;
    font-weight: 800;
    font-style: italic;
}

.standard_form_Input{
    flex: 1;
    border: 4px rgb(218, 218, 225) solid;
    border-radius: 10px;
    padding: 8px;
    padding-right: 12px;
    padding-left: 12px;
    color: rgb(14,14,68);
}

.standard_form_Input:focus {
    outline: none;
    border: 4px rgba(67, 65, 254, 1) solid;
}

.standard_form_Input::placeholder {
    color: rgb(218, 218, 225);
}

.flexi_row {
    display: flex;
}

.flexi_row_reverse {
    display: flex;
}

@media screen and (max-width: 767px) {
    .desktop_only {
        display: none !important;
    }
    .font_extra_small {
        font-size: 10px !important;
    }
    .font_small {
        font-size: 13px !important;
    }
    .font_medium {
        font-size: 18px !important;
    }
    .font_large {
        font-size: 25px !important;
    }
    .font_extra_large {
        font-size: 45px !important;
    }
    .standard_button {
        font-size: 13px !important;
    }
    .empty_space_div_desktop_only {
        display: none;
    }
    .flexi_row {
        flex-direction: column;
    }
    .flexi_row_reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) {
    .mobile_only {
        display: none !important;
    }
    .font_extra_small {
        font-size: 13px !important;
    }
    .font_small {
        font-size: 16px !important;
    }
    .font_medium {
        font-size: 22px !important;
    }
    .font_large {
        font-size: 30px !important;
    }
    .font_extra_large {
        font-size: 50px !important;
    }
    .standard_button {
        font-size: 16px !important;
    }
    .empty_space_div_mobile_only {
        display: none;
    }
    .flexi_row {
        flex-direction: row;
    }
    .flexi_row_reverse {
        flex-direction: row;
    }
}