.colors {
    background-color: #212542;
    background-color: #303853;
    background-color: #EDEFFC;
    background-color: #C3EEB7;
    background-color: #86c973;
}

.schedule_change_backer {
    background-color: rgba(6, 10, 22, 0.55);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.schedule_change_card {
    background-color: #2b3260;
    width: 400px;
    height: 500px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 40px 3px #000000;
    animation: fadeInCard 0.4s ease;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.schedule_change_text {
    color: #F9F9FB;
    font-family: roboto;
    font-weight: 700;
    font-size: 20px;
}

.schedule_change_values_backer {
    background-color: transparent;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    margin-top: 30px;
}

.schedule_change_values_left_backer {
    background-color: transparent;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.schedule_change_values_right_backer {
    background-color: transparent;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.schedule_change_custom_list {
    position: absolute;
    top: -135%;
    left: 155px;
    width: calc(100% - 10px);
    max-height: 550px;
    overflow-y: auto;
    background-color: #191D17;
    padding: 3px 5px;
    z-index: 1000;
    display: none;
    font-family: sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    user-select: none;
}

.schedule_change_custom_list div {
    padding: 6px 10px;
    cursor: pointer;
    color: #fff;
    font-weight: 550;
    white-space: nowrap;
    font-family: sans-serif;
    border-radius: 10px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.schedule_change_custom_list div:hover {
    background-color: #30342D;
    color: #fff;
}


.schedule_change_values_middle_backer {
    background-color: transparent;
    width: 10%;
    height: 35px;
    background-image: url(../icons/arrow.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    rotate: 90deg;
}

.schedule_change_values_text {
    background-color: transparent;
    width: 140px;
    color: #F9F9FB;
    font-size: 14px;
    margin-top: 15px;
    font-family: Roboto;
}

.schedule_change_old_input {
    background-color: aliceblue;
    width: 120px;
    height: 30px;
    border: 2px solid grey;
    outline: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.schedule_change_new_input {
    background-color: aliceblue;
    width: 120px;
    height: 30px;
    border: 2px solid grey;
    outline: none;
    text-align: center;
    padding: 0 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.schedule_change_comment_backer {
    background-color: transparent;
    width: 340px;
    margin-top: 30px;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.schedule_change_values_comment {
    background-color: transparent;
    width: 100%;
    color: #F9F9FB;
    font-size: 14px;
    margin-top: 15px;
    font-family: Roboto;
}

.schedule_change_comment_input {
    background-color: aliceblue;
    width: 320px;
    height: 30px;
    border: 2px solid grey;
    outline: none;
    padding: 0 10px;
    border-radius: 5px;
}

.schedule_change_coloring_backer {
    background-color: transparent;
    width: 340px;
    height: 30px;
    margin-top: 30px;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.schedule_change_choose_color {
    width: 40px;
    height: 30px;

    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0;

    border-radius: 5px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background: none;
    box-shadow: none !important;
}

.schedule_change_choose_color::-webkit-color-swatch-wrapper {
    padding: 0;
}

.schedule_change_choose_color::-webkit-color-swatch {
    border: none;
    border-radius: 5px;
}

.color_to_change_radio_backer_w,
.color_to_change_radio_backer_g,
.color_to_change_radio_backer_o,
.color_to_change_radio_backer_ob,
.color_to_change_radio_backer_p,
.color_to_change_radio_backer_pb {
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.color_to_change_radio_backer_w {
    background-color: white;
}

.color_to_change_radio_backer_g {
    background-color: grey;
}

.color_to_change_radio_backer_o {
    background-color: orange;
}

.color_to_change_radio_backer_ob {
    background-color: orangered;
}

.color_to_change_radio_backer_p {
    background-color: pink;
}

.color_to_change_radio_backer_pb {
    background-color: purple;
}

.clear_selected_color_to_change {
    background-image: url(../icons/remove.png);
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    outline: none;
    user-select: none;
    transition: ease 0.1s;
    cursor: pointer;
}

.clear_selected_color_to_change:hover {
    background-color: grey;
    scale: 1.2;
}

input[type="radio"] {
    appearance: none;
    background-color: transparent;
    margin: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="radio"]:checked {
    border: 2px solid black
}

.schedule_change_buttons_backer {
    background-color: transparent;
    width: 100%;
    height: 40px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.schedule_change_cancel {
    background-color: #e04f5f;
    width: 100px;
    height: 30px;
    border: none;
    outline: none;
    color: #F9F9FB;
    border-radius: 5px;
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    transition: ease 0.3s;
}

.schedule_change_confirm {
    background-color: #4bae4f;
    width: 100px;
    height: 30px;
    border: none;
    outline: none;
    color: #F9F9FB;
    border-radius: 5px;
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    transition: ease 0.3s;
}

.schedule_change_cancel:hover,
.schedule_change_confirm:hover {
    scale: 1.1;
}
