.course-creation {
    .calendar-day {
        width: 145px;
        height: 100px;
        background-color: #4C478F;
        margin-left: 3px;
        margin-top: 3px;
        color: white;
        cursor: pointer;
    }

    .gary-out-day {
        opacity: 0.7;
        cursor: default;
    }

    .calendar-label {
        font-weight: bold;
    }

    .calendar-day-busy {
        background-color: #FF1744;
        cursor: default;
        color: black;
    }

    .calendar-week {
        display: flex;
    }

    .day-number {
        padding-right: 10px;
        padding-top: 5px;
        text-align: right;
        font-size: 15px;
    }

    .header-calendar {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .calendar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    button, .background-white {
        cursor: pointer;
        background-color: white;
    }

    .background-purple {
        background-color: #504494;
        text-transform: uppercase;
        color: white;
    }

    .selected {
        background-color: #26A69A;
        color: white;
    }

    #submit-button-calendar {
        background-color: white;
        cursor: pointer;
    }

    .course-block-inputs-container {
        width: 200px;
        border: 1px solid black;
        padding: 10px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .course-block-title {
        font-weight: bold;
    }

    .course-blocks-inputs-container {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
    }

    .course-creation-form-step-title {
        font-weight: bold;
        font-size: 25px;
        margin-bottom: 20px;
    }

    .course-creation-form-step-subtitle {
        font-weight: bold;
    }

    .course-block-label {
        font-size: 13px;
        margin-bottom: -15px;
        color: #9E9E9E;
    }

    .product-owner-fields-container {
        display: flex;
    }

    .three-fields {
        width: 30%;
    }

    .label-checkbox {
        color: black;
    }

    .label-checkbox-disabled {
        cursor: default !important;
    }

    .two-fields {
        width: 47%;
    }

    .flex-container {
        display: flex;
        justify-content: space-between;
    }

    .small-title-detail-form {
        font-weight: bold;
    }

    .flow-image {
        width: 100%;
        margin-top: 45px;
        margin-bottom: 45px;
    }

    .link-cancel {
        text-decoration: none;
        .big-margin-top {
            margin-top: 80px;
        }
    }

    .form-submit {
        text-transform: uppercase;
    }

    .button-container {
        display: flex;
        margin-top: 125px;
        gap: 10px;
    }

    .button-cancel-container {
        display: flex;
        margin-top: 25px;
        gap: 10px;
        align-items: center;
    }

    .step-label {
        margin-bottom: -8px;
        font-size: 15px;
    }

    .step-container {
        margin-top: 65px;
    }

    .input-endtime {
        color: gray;
        pointer-events: none;
    }

    #company-course-type-container {
        display: none;
    }

    #external-registration-link-container {
        display: none;
    }

    #external-registration-link-checkbox-container {
        display: block;
    }

    #confirmation-registration-sending-container {
//         display: none;
    }

    #course-reminder-sending-container {
//         display: none;
    }

    .flex-container-start {
        display: flex;
        align-items: center;
        @media only screen and (max-width: $breakpoint_small) {
            flex-wrap: wrap;
            #course-submission-button {
                margin-top: 30px;
            }
        }
    }

    .margin-top-bot-20 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .margin-top-100 {
        margin-top: 100px;
    }

    .checkbox-search-ensa {
        margin-left: 50px;
    }

    .input-string {
        margin-top: 10px;
    }

    .step-title-container {
        display: flex;
    }

    .no-margin-bottom {
        margin-bottom: 0px;
    }

    .margin-bottom-10px {
        margin-bottom: 10px;
    }

    .icon-container {
        margin-left: 10px;
        cursor: pointer;
    }

    .icon-container-label {
        display: flex;
        align-content: center;
    }

    .popup-outer-container {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        top: 0;
        left: 0;
        z-index: 1000;
        display: none;
    }

    .popup-inner-container {
        position: fixed;
        width: 70%;
        background-color: white;
        top: 20%;
        left: 15%;
        z-index: 1001;
        display: none;
    }

    .popup-text-container {
        padding: 25px;
        display: none;
    }

    .close {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        margin-right: 10px;
        cursor: pointer;
    }

    #block-1-start-date {
        pointer-events: none;
        color: gray;
    }

    #course-address-country {
        pointer-events: none;
        input {
            color: gray;
        }
    }

    .input-field.col label {
        left: 0px;
    }

    #flow-mobile {
        display: none;
    }

    main {
        margin-bottom: 80px;
    }

    .button-disabled {
        opacity: 0.5;
        pointer-events: none;
    }

    @media only screen and (max-width: $breakpoint-small) {
        #flow-mobile {
            display: block;
        }

        #flow-desktop {
            display: none;
        }
    }

    @media only screen and (max-width: $breakpoint-medium) {
        .three-fields {
            width: 100%;
        }

        .two-fields {
            width: 100%;
        }

        .flex-container {
            flex-wrap: wrap;
        }

        .button-container, .button-cancel-container {
            flex-wrap: wrap;
        }

        .calendar-day {
            width: 50px;
        }

        #save-for-later-button {
            margin-top: 20px;
        }

        .popup-inner-container {
            width: 90%;
            top: 5%;
            left: 5%;
        }

        label {
            font-size: 0.8rem;
        }

        #course-country-label {
            transform: scale(0.8);
        }
    }

    .calendar-caption {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 15px;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        width: 100%;

        .caption-container {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: flex-start;
            align-items: center;
            gap: 6px;

            .caption-circle {
                width: 12px;
                height: 12px;
                border-radius: 6px;
            }
        }

    }

    .small-size-span {
        font-size: 15px;
    }

    .disabled-events {
        pointer-events: none;
    }

    .disabled {
        opacity: 1;
    }

    [type="checkbox"]:not(:checked):disabled+span:not(.lever):before {
        background-color: transparent;
        border: 2px solid gray;
        cursor: default;
    }

    input:invalid {
        border-bottom:1px solid #FF0000;
    }

    .checkbox-descriptive-text {
        font-size: 0.75rem !important;
        margin-top: -40px;
        margin-left: 36px;
    }

    @media only screen and (max-width: $breakpoint-medium) {
        .checkbox-descriptive-text {
            font-size: 0.65rem !important;
        }
    }

    .disabled {
        pointer-events: none;
        opacity: 0.4;
    }
}

.course-status-color-DRAFT {
    color: gray;
}

.course-status-color-APPROVAL {
    color: orange;
}

.course-status-color-PUBLISHED {
    color: green;
}

.course-status-color-CANCELLED {
    color: black;
}

.course-status-color-CLOSED {
    color: black;
}

.calendar-outside-constraint {
    background-color: lightgrey;
    pointer-events: none;
    opacity: 0.7;
}

.calendar-selected {
    background-color: $zim_green;
    a {
        color: white;
    }
}

.calendar-courselist-container {
    margin-top: 50px;
}

.course_creation_info_icon {
    cursor: pointer;
    margin-left: 10px;
}

#course-creation-info-popup-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
}

#course-creation-info-popup {
    width: 30vw;
    min-width: 250px;
    margin: 20vh auto;
    top: 0 !important;
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    z-index: 10;
    background-color: white;

    .cc-popup-close {
        float: right;
        margin-right: 12px;
        font-size: 30px;
        position: relative;
        top: 0;
        right: 0;
        cursor: pointer;
    }

    .modal-container {
        padding: 0 50px 50px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .modal-main {
            display: flex;
            flex-direction: column;
        }
    }
}

