body {
    width: 100%;
    height: 100%;
    margin: 0px;

    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    font-family: Calibri, Poppins, Rubik, Helvetica, Arial;
}
pre {
    margin: 0px;
}
input, textarea {
    user-select: text;
    -moz-user-select: text;
}
#wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.list-outer {
    background-color: #DDDDDD;
    border-right: 2px solid black;
}
.list-header {
    border-bottom: 1px solid black;
    text-align: center;
    height: 25px;
}
.image-list {
    display: block;
    width: 100px;
    height: calc(100% - 25px);
    margin: 0px;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}
.image-list::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}
.image-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.image-list::-webkit-scrollbar-thumb {
    background: #888;
}
.image-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.preview_image_element {
    position: relative;
    cursor: pointer;
    margin: 7px;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 14px);
    border: 1px solid black;
}
.button_container {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    bottom: 0px;
    font-size: 14px;
}
.preview_button {
    display: inline-block;
    -webkit-filter: drop-shadow(0px 0px 1px white);
	filter: drop-shadow(0px 0px 2px white);
}
.group-button {
    display: none;
    -webkit-filter: drop-shadow(0px 0px 1px white);
	filter: drop-shadow(0px 0px 2px white);
}
.label_ok {
    outline: 3px solid rgb(88, 163, 92);
}
.label_locked {
    outline: 3px solid rgb(241, 10, 10);
}
.label_marked {
    outline: 3px solid rgb(225, 0, 255);
}
.label_hidden {
    display: none;
}
.selected_image {
    border: 3px solid rgb(4, 0, 255);
}
.preview_image {
    width: 100%;
}

#main_view {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wearfits_viewer {
    position: absolute;
}

#permission_popup {
    display: flex;
    align-items: center;
    position: absolute;
    cursor: pointer;
    padding: 7px;
    right: 7px;
    bottom: 7px;
    z-index: 8;
    color: rgb(0, 0, 0);
    background-color: rgb(201, 201, 201);
    border: 1px solid black;
    border-radius: 15px;
}

#top_down_switch {
    display: flex;
    align-items: center;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 5;
}


#tryon_loader {
    z-index: 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    visibility: visible;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0,0,0,0.5);
}

#tryon_loader_info {
    font: 26px Poppins, Rubik, Helvetica, Arial;
    color: white;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

#progress_bar {
    width: 100%;
    background-color: #000000;
    text-align: center;
    color:#fff;
}

#progress_bar_fill {
    display: flex;
    justify-content: center;
    align-items: center;
    font: 20px Poppins, Rubik, Helvetica, Arial;
    height: 100%;
    color:#fff;
}

#settings_menu {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    min-width: 300px;
    padding: 7px;
    right: 5px;
    top: 5px;
    z-index: 5;
    border-radius: 15px;
    pointer-events: all;
}

.settings_button {
    cursor: pointer;
    background-color: rgb(255 255 255);
    padding: 7px;
    border-radius: 15px;
    font-weight: bold;
    color: black;
}

.restore_icon {
    font-size: 20px;
    display: inline-block;
    color: red;
    cursor: pointer;
    font-weight: bold;
}

#wearfits_logo {
    width: 15%;
    min-width: 100px;
    position: absolute;
    left: 7px;
    bottom: 9px;
    z-index: 5;
}

#debug_info_left_bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    font: 12px Poppins, Rubik, Helvetica, Arial;
    color: white;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 6;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
}

.wearfits-preset-list {
    margin: 0px;
    padding: 0;
    list-style: none;
    grid-template-rows: repeat(10, auto);
    grid-auto-flow: column;
    display: block;
    pointer-events: all !important;
    max-height: calc(100% - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    padding-bottom: 1px;
}
.wearfits-preset-list::-webkit-scrollbar {
    width: 7px;
}
.wearfits-preset-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.wearfits-preset-list::-webkit-scrollbar-thumb {
    background: #888;
}
.wearfits-preset-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.wearfits-preset-header {
    text-transform: capitalize;
    margin-left: 7px;
    margin-bottom: 7px;
}
.wearfits-preset-label {
    font-size: 10px;
    position: absolute;
    bottom: 0px;
}
.wearfits-material-preset {
    position: relative;
    cursor: pointer;
    margin-bottom: 7px;
    width: 75px;
    height: 75px;
    pointer-events: all !important;
}
.wearfits-disabled-preset {
    border: solid 2px red;
}
.wearfits-selected-preset {
    -webkit-filter: drop-shadow(0px 0px 2px black);
    filter: drop-shadow(0px 0px 2px black);
}
.wearfits-preset-image {
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
}

#wearfits_material_selection {
    font: 18px Poppins, Rubik, Helvetica, Arial;
    color: white;
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: 5;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
}

#debug_info_left_top {
    font: 12px Poppins, Rubik, Helvetica, Arial;
    color: white;
    position: absolute;
    left: 7px;
    top: 7px;
    z-index: 5;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
}

#debug_info_right_top {
    font: 12px Poppins, Rubik, Helvetica, Arial;
    color: white;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 5;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
}

#version_info_element {
    font: 9px Poppins, Rubik, Helvetica, Arial;
    color: rgb(127, 127, 127, 0.5);
    position: absolute;
    right: 1px;
    bottom: 1px;
    z-index: 5;
}

#toggle_user_height_popup_button {
    position: absolute;
    right: 7px;
    bottom: 7px;
    z-index: 5;
    width: 52px;
    height: 52px;
    box-sizing: border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    background: rgba(20, 22, 28, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#toggle_user_height_popup_button:hover {
    background: rgba(32, 36, 46, 0.72);
    border-color: rgba(255, 255, 255, 0.38);
    transform: scale(1.06);
}

#toggle_user_height_popup_button svg {
    width: 28px;
    height: 28px;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

#crop_region_element {
    position: absolute;
    z-index: 5;
    border: 3px solid red;
    box-sizing: border-box;
}

#crop_region_element_oflow {
    position: absolute;
    z-index: 5;
    border: 3px solid blue;
    box-sizing: border-box;
}

#snapshot_button {
    display: flex;
    width: 100px;
    height: 100px;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 5;
    margin: auto;
    bottom: 5%;
    pointer-events: all;
    cursor: pointer;
    justify-content: center;
}

#back_button {
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 5;
    margin: auto;
    top: 25px;
    right: 25px;
    pointer-events: all;
    cursor: pointer;
    justify-content: center;
}

#play_sound_button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 40px;
    height: 40px;
    padding: 7px;
    background-color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    line-height: normal;
    outline: none;
    color: black;
    filter: drop-shadow(0px 0px 2px #FFFFFF);
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 20px;
    pointer-events: all;
}

#not_detected_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 6;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

#not_detected_element_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    margin: auto;
    top: calc(50% - 150px);
    left: 0px;
    right: 0px;
    width: 90%;
    max-width: 400px;
}

.not_detected_text_element {
    font-weight: lighter;
    color: white;
    width: 80%;
    margin-bottom: 30px;
    line-height: 1.5;
    text-transform: uppercase;
}

#not_detected_image_element_footwear {
    position: relative;
    max-width: 50%;
}

#not_detected_image_element_pose {
    position: relative;
    max-width: 50%;
    max-height: 50%;
}

#detection_effect_element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 6;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

#snapshot_preview_container {
    max-width: calc(100% - 50px);
    max-height: calc(100% - 50px);
    box-sizing: border-box;
    background: black;
    position: relative;
    z-index: 7;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    filter: drop-shadow(0px 0px 25px rgb(0, 0, 0));
    pointer-events: all;
}

#snapshot_share_button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    display: flex;
    font-size: 28px;
    background: white;
    border-radius: 15px;
    padding: 7px;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 0px 15px #666666);
    width: 120px;
}

#snapshot_exit_button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    cursor: pointer;
    font-size: 48px;
    font-weight: bold;
    margin-top: 0px;
    margin-right: 15px;
    text-shadow: 0px 0px 4px white;
}

#snapshot_preview_element {
    max-width: 100%;
    max-height: 100%;
}

#swiping_hand_element {
    display: none;
    position: absolute;
    z-index: 6;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
}

#swiping_hand_image_element {
    position: absolute;
    width: 100px;
    height: 100px;

    animation: 2s linear 0s infinite normal moving-hand;
}

#toast_element {
    font-size: 20px;
    color: white;
    display: flex;
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    top: 15px;
    margin: auto;
    width: fit-content;
    max-width: 90%;
    height: auto;
    pointer-events: none;
    border-radius: 32px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

@keyframes moving-hand {
    0% {
      left: 30%;
    }
    50% {
      left: calc(70% - 100px);
    }
    100% {
      left: 30%;    
    }
}


#relative_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

#main_view_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.tryon-info-text {
    font: 16px Poppins, Rubik, Helvetica, Arial;
    text-transform: uppercase;
    text-align: center;
    color: white;
    opacity: 60%;
}

#marker_container {
    width: 100%;
    height: 100%;
}

#debug_points_container {
    width: 100%;
    height: 100%;
}

#debug_view_element {
    display: block;
    position: absolute;
    bottom: 40px;
    left: 15px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    border: 1px solid rgb(255, 255, 255);
}

#camera_preview {
    position: fixed;
    width: 1px;
    height: 1px;
    opacity: 0.001;
    left: 50%;
    top: 50%;
}

.marker_custom {
    position: absolute;
    width: 1px;
    height: 1px;
    z-index: 5;
    color: white;
    -webkit-filter: drop-shadow(0px 0px 3px black);
	filter: drop-shadow(0px 0px 3px black);
}

.marker {
    position: absolute;
    display: flex;
    flex-direction: row;
    width: 10px;
    height: 10px;
    background-color: black;
    border: 1px solid black;
    border-radius: 50%;
    z-index: 5;
    -webkit-filter: drop-shadow(0px 0px 3px black);
	filter: drop-shadow(0px 0px 3px black);
}

.marker-left {
    outline: 1.5px solid rgb(146, 0, 0);
    -webkit-filter: drop-shadow(0px 0px 3px rgb(146, 0, 0));
	filter: drop-shadow(0px 0px 3px rgb(146, 0, 0));
}

.marker-right {
    outline: 1.5px solid rgb(0, 136, 0);
    -webkit-filter: drop-shadow(0px 0px 3px rgb(0, 136, 0));
	filter: drop-shadow(0px 0px 3px rgb(0, 136, 0));
}

.custom-marker {
    border: 2px solid white;
}

.marker-label {
    margin-left: 10px;
    font-size: 8px;
    color: white;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
    z-index: 4;
    pointer-events: none;
}

.marker-label-debug {
    margin-left: 3px;
    font-size: 8px;
    color: white;
    -webkit-filter: drop-shadow(0px 0px 1px black);
	filter: drop-shadow(0px 0px 1px black);
    z-index: 4;
    pointer-events: none;
}

#tools_container {
    display: flex;
    position: relative;
    width: 350px;
    height: 100%;
    background-color: #DDDDDD;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border-left: solid 1px black;
}

#tools_container_tryon {
    display: flex;
    position: relative;
    width: 350px;
    height: 100%;
    background-color: #DDDDDD;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    border-left: solid 1px black;
    max-height: 100%;
}

#tools_container_inner {
    width: 336px;
    padding: 7px;
    background-color: #DDDDDD;
}
.line {
    height: 30px;
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.vertical_line {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
    overflow: hidden;
}
.calibration_data_record {
    display: flex;
    flex-direction: row;
    height: 30px;
    align-items: center;
}

.input_number {
    width: 70px;
}

.input_select {
    height: 90%;
}

.input_slider {
    width: 200px;
    margin-right: 15px;
    margin-left: 15px;
}

#drop_images_area {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    background-color: rgb(65, 139, 65);
    font-size: large;
    font-weight: bold;
    z-index: 10;
}

#video_convert_details {
    display: none;
    position: absolute;
    width: 500px;
    height: 600px;
    max-width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background-color: white;
    justify-content: flex-start;
    flex-direction: column;
    font-size: large;
    font-weight: bold;
    z-index: 11;
    border: 3px solid black
}

#upload_ml_model {
    display: none;
    position: absolute;
    width: 500px;
    height: 600px;
    max-width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background-color: white;
    justify-content: flex-start;
    flex-direction: column;
    font-size: large;
    font-weight: bold;
    z-index: 11;
    border: 3px solid black
}

#help_info {
    display: none;
    position: absolute;
    width: 700px;
    height: 700px;
    max-width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background-color: white;
    justify-content: flex-start;
    flex-direction: column;
    font-size: large;
    font-weight: bold;
    z-index: 11;
    -webkit-filter: drop-shadow(0px 0px 15px black);
	filter: drop-shadow(0px 0px 15px black);
}

#vendor_banner {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 55px;
    overflow: hidden;
    top: 0px;
    color: white;
    background-color: black;
    pointer-events: all;
    z-index: 6;
    border-bottom: 2px solid white;
}

#vendor_banner_text {
    font-weight: bold;
    
    font: 20px Poppins, Rubik, Helvetica, Arial;
    padding-left: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
}

#vendor_banner_icon {
    padding: 7px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

.hide-on-desktop {
    display: none;
}

.hidden-options {
    padding-left: 15px;
    border-left: solid 1px black;
}

#user_height_popup {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 1);
    z-index: 10;
}
#user_height_popup_inner {
    font-family: "Verdana";
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: white;
    width: 90%;
    max-width: 300px;
    margin: auto;
    background-color: transparent;
    z-index: 1000;
    pointer-events: all;
}
#user_height_popup_input {
    font-size: 24px;
    color: #ffffff;
    font-weight: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 7px;
    border-bottom: 2px solid #ffffff;
    border-radius: 0;
    width: 50%;
}

/* Hide spinner/arrows for number input in specific browsers */
#user_height_popup_input::-webkit-outer-spin-button,
#user_height_popup_input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#user_height_warning_info {
    font-size: 12px;
    color: #ffffff;
    font-weight: lighter;
    max-width: 220px;
    display: flex;
    justify-content: center;
}
#user_height_popup_next_button {
    margin-top: 35px;
    color: #ffffff;
    font-weight: lighter;
    text-decoration: underline;
    cursor: pointer;
}
#user_height_unit_selector {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
#user_height_unit_selector_cm, #user_height_unit_selector_in {
    cursor: pointer;
    color: #9C9A98;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.user_height_unit_selected {
    color: #ffffff!important;
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
    text-decoration: underline;
}
#user_height_vertical_number_picker_separator {
    width: 100%;
    height: 40px;
    background-color: black;
    text-align: center;
    position: relative;
}
#user_height_vertical_number_picker_separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    width: 40px;
    background-color: #9C9A98;
    margin: auto;
}
#user_height_vertical_number_picker {
    font-family: "Verdana";
    font-size: 16px;
    width: 100%;
    height: 300px;
    background-color: black;
    color: #9C9A98;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #fff 0,
        #fff calc(100% - 80px),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #fff 0,
        #fff calc(100% - 80px),
        transparent 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.user_height_vertical_number_picker_option {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    scroll-snap-align: center;
}
.user_height_vertical_number_picker_option.selected {
    background-color: #141414;
}

.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 24px;
    margin-bottom: 0px;
    border: solid 1px black;
    border-radius: 50px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255, 140, 140);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 21px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: lightgreen;
}

input:focus + .switch-slider {
    box-shadow: 0 0 1px lightgreen;
}

input:checked + .switch-slider:before {
    -webkit-transform: translateX(52px);
    -ms-transform: translateX(52px);
    transform: translateX(52px);
}

@media (max-width: 600px) {
    .hide-on-mobile {
        display: none!important;
    }
    .hide-on-mobile-vertical {
        display: none!important;
    }
    .hide-on-desktop {
        display: unset;
    }
    #wrapper {
        flex-direction: column;
    }
    #tools_container {
        width: 100%;
        height: unset!important;
    }
    #tools_container_tryon {
        width: 100%;
        height: unset!important;
        max-height: unset!important;
        border-left: unset;
        flex-direction: column;
    }
}

@media (min-height: 3000px) {
    
    #settings_menu {
        font-size: 2rem;
        padding: 1rem;
    }

    .line {
        height: 3rem;
        margin-bottom: 1rem;
    }

    .calibration_data_record {
        height: 3rem;
        margin-bottom: 1rem;
    }

    .calibration_data_record > div{
        font-size: 3rem;
    }

    .input_number {
        width: 8rem;
        font-size: 2rem;
    }

    .input_slider {
        width: 15rem;
        margin-right: 2rem;
        margin-left: 2rem;
    }
    
    #toast_element {
        font-size: 4rem;
    }
}