:root {
    --ones_bodybackground: 39, 44, 51;
    --ones_background_white: 255, 255, 255;
    --one_background_custom: 192, 82, 82;
    --one_background_input: 21, 24, 28;
    --ones_text_dark: 24, 24, 29;
    --ones_text_white: 247, 247, 247;
    --ones_padding_standard: 15px;
    --ones_padding_min: 10px;
    --ones_padding_slim: 5px;
    --ones_radius: 10px;
    --ones_radius_light: 5px;
    --ones_shadow: rgb(39 44 51 / 0.2);
    --ones_shadow_input: 0 0 0 2px rgb(192 82 82);
    --ones_f_weight_normal: 400;
    --ones_border: 192, 82, 82;
    --ones_border_dark: 39, 44, 51;
    --ones_button_dark: 21, 24, 28;
    --ones_button_dark-gradient: linear-gradient(315deg, #c05252 0%, #ea6969 74%);
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%
}

body {
    font-family: Roboto, Arial, sans-serif;
    background-color: rgb(var(--ones_bodybackground_white));
    color: rgb(var(--ones_text_dark));
    line-height: 1.5;
    font-weight: var(--ones_f_weight_normal);
    position: relative;
}

h3,
p {
    margin: 0;
    font-weight: var(--ones_f_weight_normal);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

footer {
    text-align: center;
    margin: 2rem;
    font-weight: bold;
    color: rgb(0 0 0 / 0.2);
}

#ones {
    position: relative;
    display: flex !important;
    min-height: 100%;
}

.ones-row {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.ones-container {
    width: 100%;
    margin: auto;
    position: relative;
}

.ones-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(var(--ones_text_white));
    background-color: rgb(var(--ones_bodybackground));
    border-radius: var(--ones_radius);
    border-bottom: 5px solid rgb(var(--ones_border));
    box-shadow: 0 0 20px 10px var(--ones_shadow);
    padding: 10px 20px;
    margin: 3rem 0 2rem;
}

.ones-nav img {
    max-width: 200px;
    margin-top: 10px;
}

.ones-list {
    background-color: rgb(var(--ones_bodybackground));
    padding: var(--ones_padding_standard) 0;
    border-radius: 0 0 var(--ones_radius) var(--ones_radius);
    box-shadow: 0 0 20px 10px var(--ones_shadow);
    color: rgb(var(--ones_text_white));
}

.ones-data {
    background: rgb(var(--one_background_custom));
    border-radius: var(--ones_radius) var(--ones_radius) 0 0;
    box-shadow: 0 0 20px 10px var(--ones_shadow);
    padding: var(--ones_padding_min) 0;
    font-weight: 700;
    color: rgb(var(--ones_text_white));
}

.ones-data-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
}

.ones-data-listcontent {
    position: relative;
}

.ones-data-listcontent:not(:first-child):not(:last-child) {
    margin: 0.5rem 0;
}

.ones-item {
    flex: 1 0 0;
    text-align: center;
    align-items: center;
}

.ones-block {
    cursor: no-drop;
    background: rgb(var(--one_background_custom));
}

.active {
    color: rgb(var(--one_background_custom)) !important;
}

.ones-form {
    padding: var(--ones_padding_slim) var(--ones_padding_min);
    color: rgb(var(--ones_text_white));
    background-color: rgb(var(--one_background_input));
    border-radius: var(--ones_radius_light);
    line-height: 1.6;
    border: none;
    margin: auto;
    transition: box-shadow 0.3s ease-in-out;
}

.ones-form:hover,
.ones-form:focus {
    box-shadow: var(--ones_shadow_input);
    outline: 0;
}

.ones-button {
    display: inline-block;
    color: rgb(var(--ones_text_white));
    padding: var(--ones_padding_slim) var(--ones_padding_standard);
    border-radius: var(--ones_radius_light);
    font-size: 15.5px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    transition: 0.2s all linear;
}

.ones-button:hover {
    transform: translateY(-3px);
}

.ones-dark {
    background: rgb(var(--ones_button_dark));
}

.ones-dark:hover {
    background-color: rgb(var(--one_background_custom));
    background-image: var(--ones_button_dark-gradient);
}

.ones-coverphoto {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.ones-coverphoto-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.jpg');
    background-position: center;
    background-size: cover;
}

.ones-datepicker-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-radius: var(--ones_radius);
    padding: var(--ones_padding_standard);
    background-color: rgb(var(--ones_bodybackground));
    box-shadow: 0 0 20px 10px var(--ones_shadow);
    border-bottom: 5px solid rgb(var(--ones_border));
}

.ones-datepicker-item a,
.ones-datepicker-item {
    color: rgb(var(--ones_text_white));
}

.ones-datepicker-item:not(:first-child) {
    margin-left: 25px;
}

.ones-datepicker {
    color: rgb(var(--ones_text_dark));
    font-weight: bold;
}

@media (min-width: 1200px) {
    .ones-container {
        max-width: 1540px;
    }
}

@media only screen and (max-width: 64em) {
    .ones-container {
        width: 100%;
    }

    .ones-data {
        display: none;
    }

    .ones-nav {
        margin: 0 0 1rem;
        border-radius: 0 0 var(--ones_radius) var(--ones_radius);
        display: block;
        text-align: center;
    }

    .ones-list {
        border-radius: var(--ones_radius);
        background: none;
        box-shadow: none;
    }

    .ones-item {
        margin: 10px 0;
    }

    .ones-data-list {
        display: block;
        background: rgb(var(--ones_bodybackground));
        border-radius: var(--ones_radius_light);
        padding: var(--ones_padding_standard);
        text-align: center;
    }

    .ones-datepicker-item {
        display: inline-block;
    }

    .ones-datepicker-item:not(:first-child):not(:last-child) {
        margin: 0 2px;
    }

    .ones-datepicker-manual {
        text-align: center;
    }

    .ones-datepicker-con {
        display: block;
    }
}