﻿.mt1 {
    margin-top: 10px;
}

.mt2 {
    margin-top: 20px;
}

.mt5 {
    margin-top: 5px;
}


#RegisterFormContainer {
    background-color: #eaf6ff5e;
    outline: 1px solid #00000059;
    margin: 20px 0;
    padding: 40px;
    border-radius: 10px;
    line-height: 1.4;
}

#FormDefination {
    margin-top: 20px
}

#FormDefination_Form {
    width: 40%
}

#FormDefination_Description {
    width: 60%;
}


#FormDefination_Form span {
    display: block;
    margin-top: 10px;
}

#FormDefination_Form input {
    margin: 5px;
    padding: 5px;
    width: 90%;
}

#FormDefination_Description div {
    margin-top: 20px;
}

    #FormDefination_Description div:nth-child(1) {
        font-weight: 600;
    }

.HourPlan_Day {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #00000059;
}

    .HourPlan_Day select {
        width: 100%;
        padding: 5px;
        font-family: inherit
    }

.HourPlan_Day_Name {
    display: flex;
    align-items: center;
    height:80px;
    width: 20%;
    font-weight: 600
}

.Day_OpeningHours {
    display: flex;
    width: 40%
}

.HourPlan_Day_Column {
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
}

    .HourPlan_Day_Column div:nth-child(2) {
        width: 90%
    }

.Day_BreakHours {
    display: flex;
    width: 40%
}



@media (max-width: 768px) {
    #RegisterFormContainer {
        background-color: #eaf6ff5e;
        outline: 1px solid #00000059;
        margin: 20px 10px;
        padding: 20px;
        border-radius: 10px;
    }

    #FormDefination {
        margin-top: 20px;
        flex-wrap: wrap;
    }

    #FormDefination_Form {
        width: 100%
    }

    #FormDefination_Description {
        margin-top: 20px;
        width: 100%;
    }


    .HourPlan_Day {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 170px;
        border-bottom: 1px solid #00000059;
        flex-wrap:wrap;
        margin-bottom:10px;
    }

        .HourPlan_Day select {
            width: 99%;
            padding: 5px;
            font-family: inherit
        }

    .HourPlan_Day_Name {
        display: flex;
        align-items: center;
        height: 30px;
        justify-content:center;
        width: 100%;
        font-weight: 600;
        margin-top:0px;
    }

    .Day_OpeningHours {
        display: flex;
        width: 100%
    }

    .HourPlan_Day_Column {
        width: 50%;
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        flex-direction: column;
        height: auto;
    }

        .HourPlan_Day_Column div:nth-child(2) {
            width: 90%
        }

    .Day_BreakHours {
        display: flex;
        width: 100%
    }
}







.checkbox-wrapper-30 .checkbox {
    --bg: #fff;
    --brdr: #d1d6ee;
    --brdr-actv: #1e2235;
    --brdr-hovr: #bbc1e1;
    --dur: calc((var(--size, 2)/2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 22px);
    position: relative;
}

    .checkbox-wrapper-30 .checkbox:after {
        content: "";
        width: 100%;
        padding-top: 100%;
        display: block;
    }

    .checkbox-wrapper-30 .checkbox > * {
        position: absolute;
    }

    .checkbox-wrapper-30 .checkbox input {
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        background-color: var(--bg);
        border-radius: calc(var(--size, 1) * 4px);
        border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
        color: var(--newBrdrClr, var(--brdr));
        outline: none;
        margin: 0;
        padding: 0;
        transition: all calc(var(--dur) / 3) linear;
    }

        .checkbox-wrapper-30 .checkbox input:hover,
        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdr: calc(var(--size, 1) * 2);
        }

        .checkbox-wrapper-30 .checkbox input:hover {
            --newBrdrClr: var(--brdr-hovr);
        }

        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdrClr: var(--brdr-actv);
            transition-delay: calc(var(--dur) /1.3);
        }

            .checkbox-wrapper-30 .checkbox input:checked + svg {
                --dashArray: 16 93;
                --dashOffset: 109;
            }

    .checkbox-wrapper-30 .checkbox svg {
        fill: none;
        left: 0;
        pointer-events: none;
        stroke: var(--stroke, var(--border-active));
        stroke-dasharray: var(--dashArray, 93);
        stroke-dashoffset: var(--dashOffset, 94);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2px;
        top: 0;
        transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
    }

    .checkbox-wrapper-30 .checkbox svg,
    .checkbox-wrapper-30 .checkbox input {
        display: block;
        height: 100%;
        width: 100%;
    }
