﻿body {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex: 1 1 100vh;
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #323130;
    font-family: "Segoe UI Web (West European)",Segoe UI,-apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,sans-serif;
    font-size: 14px;
}

#msccBanner {
    position: fixed;
    bottom: 0px;
    right: 0;
    left: 0;
}


.focus {
    font-weight: 600;
}

p {
    margin: 0;
    padding: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.main-header-container {
    z-index: 20;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.main-banner-container__wrapper {
    margin-top: 30px;
}

.main-content-wrapper__banner-container {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
}

@media (min-width: 768px) {
    .main-content-wrapper__banner-container{
        min-height: 480px;
    }
}
.language-bar-wrapper {
    background: #fff;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 8px;
}

.language-link {
    color: #333;
    font-size: 12px;
    line-height: 15px;
    margin: 0 4px;
}

.landing-languge-dropdown {
    margin-right: 8px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", "Helvetica Neue", "sans-serif";
}

html[dir="rtl"] .landing-languge-dropdown {
    margin-left: 8px;
}

.landing-languge-dropdown option {
    background-color: rgb(244, 244, 244);
    color: rgb(68, 68, 68);
    cursor: pointer;
    padding: 0px 8px;
    font-family: inherit;
}

.header-wrapper__main-nav-wrapper {
    -webkit-transition: all 100ms;
    transition: all 100ms;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.main-content-wrapper {
    overflow-y: hidden;
}


.main-get-started-button {
    background: transparent;
    padding: 8px 16px;
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 700;
    max-width: 120px;
    font-family: inherit;
    box-sizing: content-box;
    font-size: 14px;
    cursor: pointer;
}

.banner-heading {
    text-align: left;
    font-size: 32px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    overflow-wrap: break-word;
    line-height: 44px;
    text-shadow: rgba(0, 0, 0, 0.12) 2px 2px 8px;
}

.cards-wrapper {
    padding: 32px 8%;
}

.category-wrapper__heading {
    font-size: 21px;
    line-height: 20px;
    font-weight: 100;
    color: #333333;
    padding: 24px 16px;
    overflow-wrap: break-word;
}

.category-wrapper__course-container {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px;
    align-self: flex-start;
    justify-content: flex-start;
}

.course-card-container {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    flex: 0 1 calc(33% - 32px);
    margin: 16px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 0px;
    cursor: pointer;
    border-radius: 4px;
}

.course-card-container:hover {
    outline: 1px solid #777777;
}

.course-card-container__course-image {
    width: 100%;
    object-fit: cover;
}

.course-card-container__course-image-div {
    position: relative;
    padding-top: 56.25%;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    border-bottom: 1px solid #dedede;
}

.course-card-container__picture-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.course-card-container__course-name {
    display: -webkit-box;
    line-height: 24px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 16px;
    max-width: 300px;
    margin-right: 8px;
    margin-left: 8px;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 300;
    color: rgb(51, 51, 51);
    text-align: left;
    overflow: hidden;
    word-break: break-word;
}

html[dir="rtl"] .course-card-container__course-name {
    text-align: right;
}

.footer-container {
    display: flex;
    display: -webkit-flex;
    flex: 1 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(244, 244, 244);
    margin-bottom: 5px;
    color: rgb(133, 133, 133);
    padding: 20px 16px;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

.footer-container > * {
    margin: 8px 0;
}

.footer-container__footer-title {
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    line-height: 28px;
    color: #696969;
}

.footer-container__footer-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #696969;
}

.static-footer-container__message{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 0;
}

.static-footer-container {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex: 0 0 44px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background-color: #696969;
    padding: 8px 16px;
}

@media (min-width: 320px) and (max-width : 375px) {
    .static-footer-container {
        font-size: 12px;
    }
}

.empty-courses-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.static-footer-link-container {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
}

.static-footer-container__link {
    color: inherit;
}

.footer-link-divider {
    padding: 0px 5px;
}

.footer-link-divider:after{
    content: "|";
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-wrapper-opera {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-flex-wrapper {
    display: flex;
    display: -webkit-flex;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.modal-flex-wrapper-opera {
    position: relative;
    height: 100%;
    width: 100%;
}

.modal-content {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 90%;
    max-width: 420px;
    height: 75vh;
    border-radius: 2px;
}

.opera-content {
    background-color: #fefefe;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 8px;
    text-align: center;
    align-items: center;
    overflow: auto;
    height: 90%;
    width: 90%;
}

.opera-list-container {
    text-align: center;
    width: 90%;
}

.opera-list__item {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
    margin: 4px 0;
}

.opera-icon {
    display: inline-block;
    height: 16px;
    width: 16px;
}

.opera-image {
    height: 160px;
    margin: 8px auto;
}

.modal-container___content-scroll {
    height: 100%;
    overflow: auto;
    padding: 16px;
}

.modal-container___heading {
    font-size: 21px;
    font-weight: 100;
    margin-bottom: 8px;
}

.modal-container___subheading {
    font-size: 13px;
    font-weight: 400;
    margin: 16px 0px;
}

.modal-container__footer-actions {
    display: -webkit-flex;
    display: flex;
    flex: 0 0 48px;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid #dedede;
    justify-content: flex-end;
    padding: 0 8px;
}

.modal-container__footer-actions > * {
    margin-left: 8px;
}

.themed-button-secondary {
    background: rgb(244, 244, 244);
    border: none;
    color: rgb(51, 51, 51);
    text-align: center;
    cursor: pointer;
    min-width: 80px;
    height: 32px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    text-decoration: none;
    border-radius: 0px;
}

.modal-close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    height: 16px;
    width: 16px;
}

.loader-container {
    display: -webkit-flex;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .cards-wrapper {
        padding: 32px 8px;
    }

    .course-card-container {
        flex: 1 0 calc(100% - 16px);

    }
}

@media (max-width: 480px) {
    .header-wrapper__main-nav-wrapper {
        padding: 0 8px !important;
    }

    .empty-courses-footer {
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

.error-message {
    padding-top: 30px;
    font-size: 20px;
    line-height: 1.25em;
    text-align: center;
}

.error-modal {
    position: relative;
    max-height: 40vh;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

@media (min-width: 481px) and (max-width: 768px) and (orientation: portrait) {
    .main-content-wrapper__banner-container {
        flex-direction: column-reverse;
    }

    .main-content-wrapper__heading-wrapper {
        padding: 36px !important;
        max-width: 100% !important;
        align-items: center;
        margin: 0px;
    }

    .main-content-wrapper__banner-wrapper {
        background-position-x: center;
    }

    .banner-heading {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content-wrapper__banner-container {
        flex-direction: column-reverse;
    }
    
    .landing-language_menu-modal{
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
        transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    }

    .show-landing-language__modal{
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    }

    .landing-language_menu-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 0.5rem 1rem;
        width: 17.5rem;
        box-sizing: border-box;
        border-radius: 0.5rem;
    }

    .landing-language__radio-list{
        text-align: left;
        padding: 0.75rem 0rem;
    }

    .main-content-wrapper__banner-wrapper {
        background-position-x: center;
    }

    .main-content-wrapper__heading-wrapper {
        background-color: #fff!important;
        margin: 0px;
    }

    .banner-heading {
        font-size: 1.375rem;
        line-height: 2rem;
        text-align: center;
        width: 100%;
    }
}


@media screen and (min-width: 1400px) {
    .course-card-container {
        flex: 0 1 calc(25% - 32px);
    }
}

@media screen and (min-width: 1600px) {
    .course-card-container {
        flex: 0 1 calc(20% - 32px);
    }
}

@media screen and (max-width: 765px) {
    .language-bar-wrapper {
        display: block;
        white-space: nowrap;
        overflow-x: auto;
        text-align: right;
    }
}

.empty-state__container {
    height: 100%;
    text-align: center;
}

.empty-state__image {
    width: 100%;
    max-width: 280px;
}

@media screen and (max-width: 320px) {
    .logo {
        height: auto;
        width: 80%;
    }
}