
.loggedOutMenu .normal {
    margin-right: 15px;
}

.plain-banner {
    /* background-color: #134A84; */
    border-radius: 10px;
    /* min-height: 300px; */
}

.plain-banner .mobile{
    display: none;
}

header .mntContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mntContainer {
    width: 90%;
}

.plain-banner {
    margin: 30px 0;
}

.webinar-listing {
    margin: 30px 0;
}

.webinar-list-headline{
    margin-bottom: 15px;
}

.webinar-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.webinar-card {
    width: 32%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.webinar-card-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 5px;
}
.webinar-card a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.webinar-card a:focus,.webinar-card a:active{
    box-shadow: none;
    background: unset;
}

.webinar-card-caption.webinar-live-now {
    background-color: #FFFAEA;
}

.webinar-card-caption.webinar-live-now span {
    font-size: 14px;
    font-weight: 700;
    color: #EB983E;
}

.webinar-card-caption.webinar-live-now span:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #EB983E;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.webinar-card-image {
    position: relative;
}

.webinar-card-image img {
    width: 100%;
    object-fit: cover;
}

.webinar-card-caption.webinar-date {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.webinar-card-headline {
    padding: 15px;
}

.experts-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expert-card {
    width: 15%;
    box-shadow: 0 3px 6px #00000029;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 11px;
    cursor: pointer;
}

.expert-card-image {
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.expert-card-detials p {
    margin-bottom: 0;
    text-align: center;
}

.expert-card-detials h5 {
    margin-bottom: 4px;
}

.r_web_card {
    box-shadow: 0 3px 6px #00000029;
    border-radius: 10px;
    display: flex;
    width: 48%;
    margin-bottom: 30px;
    position: relative;
}
.r_web_card a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.r_web_card a:focus,.r_web_card a:active{
    box-shadow: none;
    background: unset;
}

.course_listing_data.related_webinar_cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.r_data {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.r_web_card img {
    border-radius: 10px;
}

p.r-date {
    color: #ccc;
}

/* Highlight N stars from the left using nth-last-of-type */
#rateForm[data-rating="1"] .rate label:nth-last-of-type(-n+1) {
    color: #EB983E;
}
#rateForm[data-rating="2"] .rate label:nth-last-of-type(-n+2) {
    color: #EB983E;
}
#rateForm[data-rating="3"] .rate label:nth-last-of-type(-n+3) {
    color: #EB983E;
}
#rateForm[data-rating="4"] .rate label:nth-last-of-type(-n+4) {
    color: #EB983E;
}
#rateForm[data-rating="5"] .rate label:nth-last-of-type(-n+5) {
    color: #EB983E;
}

/**Override CSS for MNT**/
.course_link_tabs .course_content_links li{
    flex: unset;
    margin-right: 30px;
}
@media screen and (max-width: 1200px){
    .r_web_card {
        width:100%
    }
}
@media screen and (max-width: 900px){
    .webinar-card {
        width: 47%;
    }
    .expert-card {
        width: 32%;
    }
}
@media screen and (max-width: 600px){
        .r_web_card{
        flex-direction: column;
    }
} 
@media screen and (max-width: 480px){
    .webinar-card {
        width: 100%;
    }
    .experts-cards{
        justify-content: space-between;
        gap: 0;
    }
    .expert-card{
        width: 48%;
    }

    .plain-banner .mobile{
        display: block;
    }
  
    .plain-banner .desktop{
        display: none;
    }
    .webinar-page .activity_user_actions {
        justify-content: flex-start;
    }
}

.course_activity_share{
    display: none !important;
}