* {
    box-sizing: border-box;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: var(--color-3);
}

::selection {
    color: white;
    background: var(--color-3);
}

*,
*:focus,
*:hover {
    outline: none;
}

html,
body {
    margin: 0;
    height: 100%;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    padding: 6px 10px;
    display: inline-block;
    background-color: var(--form-background-color);
    color: var(--form-text-color);
    transition: background-color 1s, color 1s;
    margin: 0;
    border-radius: 0;
    -webkit-appearance: none;
}

input[type=file] {
    padding: 0;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email] {
    width: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type=checkbox] {
    position: relative;
    top: 2px;
    -webkit-appearance: checkbox;
}

input[type=date],
input[type=time] {
    width: 200px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 5px 10px;
}

input[type=submit] {
    font-family: 'Catamaran', sans-serif;
    font-size: inherit;
}

fieldset {
    border: none;
}

input[type=radio] {
    -webkit-appearance: auto;
}


textarea {
    width: 100%;
    height: 150px;
    border-color: #CCCCCC;
    box-sizing: border-box;
}

select {
    display: inline-block;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

@media (min-width:500px) and (max-width:999999999px) {

    /* Only show custom scrollbar on screens wide enough */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.07);
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: var(--color-1);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-1);
    }
}

.width_5,
.width_10,
.width_12,
.width_15,
.width_20,
.width_25,
.width_30,
.width_33,
.width_35,
.width_40,
.width_45,
.width_50,
.width_55,
.width_60,
.width_65,
.width_70,
.width_75,
.width_80,
.width_85,
.width_90,
.width_95,
.width_100 {
    height: auto;
    float: left;
}

.width_5 {
    width: 5%;
}

.width_10 {
    width: 10%;
}

.width_12 {
    width: 12%;
}

.width_15 {
    width: 15%;
}

.width_20 {
    width: 20%;
}

.width_25 {
    width: 25%;
}

.width_30 {
    width: 30%;
}

.width_33 {
    width: 33.3%;
}

.width_35 {
    width: 35%;
}

.width_40 {
    width: 40%;
}

.width_45 {
    width: 45%;
}

.width_50 {
    width: 50%;
}

.width_55 {
    width: 55%;
}

.width_60 {
    width: 60%;
}

.width_65 {
    width: 65%;
}

.width_70 {
    width: 70%;
}

.width_75 {
    width: 75%;
}

.width_80 {
    width: 80%;
}

.width_85 {
    width: 85%;
}

.width_90 {
    width: 90%;
}

.width_95 {
    width: 95%;
}

.width_100 {
    width: 100%;
}

.height_10 {
    height: 10vh;
}

.height_20 {
    height: 20vh;
}

.height_30 {
    height: 30vh;
}

.height_40 {
    height: 40vh;
}

.height_50 {
    height: 50vh;
}

.height_60 {
    height: 60vh;
}

.height_70 {
    height: 70vh;
}

.height_80 {
    height: 80vh;
}

.height_90 {
    height: 90vh;
}

.height_100 {
    height: 100vh;
}

.text_center {
    text-align: center;
}

.text_left {
    text-align: left;
}

.text_right {
    text-align: right;
}

.full_width {
    width: 100%;
    margin: 0 auto;
}


.screen_width {
    width: 1440px;
    margin: 0 auto;
}

.small_break {
    height: 1vh;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: none;
}

.break {
    height: 2vh;
    width: 100%;
    height: auto;
    overflow: hidden;
    border: none;
}

.large_break {
    height: 3vh;
    width: 100%;
    overflow: hidden;
    border: none;
}

.extra_large_break {
    height: 7vh;
    width: 100%;
    overflow: hidden;
    border: none;
}

.margin_0 {
    margin: 0 !important;
}

.float_right {
    float: right;
}

.float_left {
    float: left;
}

.float_none {
    float: none;
}

.vertical_center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.horizontal_spread {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.horizontal_evenly {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.horizontal_center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.vertical_spread {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.horizontal_right {
    display: flex;
    justify-content: right;
    flex-wrap: wrap;
}

.mirror_element_y {
    transform: scaleY(-1);
}

.mirror_element_x {
    transform: scaleX(-1);
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6 {
    display: grid;
    gap: 1rem;
}

.grid_1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid_2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid_3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid_5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid_6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid_span_2 {
    grid-column: span 2;
}

.grid_span_3 {
    grid-column: span 3;
}

.grid_span_4 {
    grid-column: span 4;
}

.grid_span_5 {
    grid-column: span 5;
}

.grid_span_6 {
    grid-column: span 6;
}

.ipad_only {
    display: none;
}

@media (min-width:320px) and (max-width:1400px) {
    .ipad_only {
        display: block;
    }

    .screen_width {
        width: 80%;
    }
}

.mobile_only {
    display: none;
}

@media (min-width:320px) and (max-width:767px) {

    .mobile_grid_1,
    .mobile_grid_2,
    .mobile_grid_3,
    .mobile_grid_4,
    .mobile_grid_5,
    .mobile_grid_6 {
        display: grid;
        gap: 1rem;
    }

    .mobile_grid_1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .mobile_grid_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile_grid_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile_grid_4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .mobile_grid_5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .mobile_grid_6 {
        grid-template-columns: repeat(6, 1fr);
    }

    .mobile_grid_span_1 {
        grid-column: span 1;
    }

    .mobile_only {
        display: block;
    }

    .mobile_float_right {
        float: right;
    }

    .mobile_float_left {
        float: left;
    }

    .mobile_disable {
        display: none !important;
    }

    .mobile_reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .mobile_flexbox * {
        flex-basis: 100%;
    }

    .mobile_width_100 {
        width: 100%;
        height: auto;
        float: left;
        overflow: hidden;
    }

    .mobile_width_50 {
        width: 50%;
        height: auto;
        float: left;
        overflow: hidden;
    }

    .mobile_height_auto {
        height: auto !important;
    }
}