:root{
    --ics-blue: #0F4C66;
    --ics-dark-blue: #0C3F55;
    --ics-grey: #99B6BF;
    --ics-sky: #4CACBF;
    --ics-red: #BD3755;
    --ics-plum: #8C3885;
    --ics-grey-tint: #EEF3F6;
    --ics-grey-tint-1: #DDE8ED;
    --ics-grey-tint-4: #EEF3F6;
    
    --ics-black: #000000;
    --ics-white: #ffffff;

    --left-nav-width: 240px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.icst-redesign h1,
body.icst-redesign .h1,
body.icst-redesign h2,
body.icst-redesign .h2,
body.icst-redesign h3,
body.icst-redesign .h3,
body.icst-redesign h4,
body.icst-redesign .h4,
body.icst-redesign h5,
body.icst-redesign .h5,
body.icst-redesign h6,
body.icst-redesign .h6{
    margin: 0 0 15px 0;
    padding: 0;
}

p{
    margin-bottom: 15px;
}
p:last-child:not(.userprofile-detail){
    margin-bottom: unset;
}
/* 
########  ##     ## ######## ########  #######  ##    ## 
##     ## ##     ##    ##       ##    ##     ## ###   ## 
##     ## ##     ##    ##       ##    ##     ## ####  ## 
########  ##     ##    ##       ##    ##     ## ## ## ## 
##     ## ##     ##    ##       ##    ##     ## ##  #### 
##     ## ##     ##    ##       ##    ##     ## ##   ### 
########   #######     ##       ##     #######  ##    ## 
*/
.icst-button{
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    min-width: 160px;
    border-radius: 40px;
    background-color: var(--ics-sky);
    color: var(--ics-white);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}
.icst-button.icst-button-tiny{
    padding: 8px 11px;
    min-width: unset;
    font-size: 10px;
}
.icst-button:hover,
.icst-button:active,
.icst-button:focus{
    background-color: var(--ics-dark-blue);
    color: var(--ics-white);
    text-decoration: none;
    outline: none;
}
.icst-button.icst-button-hover-white:hover,
.icst-button.icst-button-hover-white:active,
.icst-button.icst-button-hover-white:focus{
    background-color: var(--ics-white);
    color: var(--ics-dark-blue);
}
.icst-button.icst-button-blue{
    background-color: var(--ics-blue);
}
.icst-button.icst-button-blue:hover,
.icst-button.icst-button-blue:active,
.icst-button.icst-button-blue:focus{
    background-color: var(--ics-sky);
    color: var(--ics-white);
}
.icst-button.icst-button-blue.icst-button-hover-white:hover,
.icst-button.icst-button-blue.icst-button-hover-white:active,
.icst-button.icst-button-blue.icst-button-hover-white:focus{
    background-color: var(--ics-white);
    color: var(--ics-dark-blue);
}
/*
 ######   #######  ##    ## ########    ###    #### ##    ## ######## ########  
##    ## ##     ## ###   ##    ##      ## ##    ##  ###   ## ##       ##     ## 
##       ##     ## ####  ##    ##     ##   ##   ##  ####  ## ##       ##     ## 
##       ##     ## ## ## ##    ##    ##     ##  ##  ## ## ## ######   ########  
##       ##     ## ##  ####    ##    #########  ##  ##  #### ##       ##   ##   
##    ## ##     ## ##   ###    ##    ##     ##  ##  ##   ### ##       ##    ##  
 ######   #######  ##    ##    ##    ##     ## #### ##    ## ######## ##     ## 
*/
.icst-main{}
.icst-container{}
.icst-container-fluid{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
.icst-fullpage {
    width: 100%;
    display: flex;
}
.page-main-content{
    display: flex;
    flex: 1 auto;
    flex-direction: column;
    position: relative;
    min-height: calc(100vh - 51px - 52px);
    z-index: 1;
}
.page-main-content .page-inner-content{
    width: 100%;
    max-width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 70px; */
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}
.inner-page-body.inner-page-body-container-fluid.icst-width-100 .container{
    width: 100%;
}
.inner-page-body.inner-page-body-container-fluid.width-unset .container{
    width: unset;
}
.inner-page-body.inner-page-body-container-fluid.margin-minus .container{
    margin-left: -15px;
    margin-right: -15px;
}
/* 
##     ## ########    ###    ########  ######## ########  
##     ## ##         ## ##   ##     ## ##       ##     ## 
##     ## ##        ##   ##  ##     ## ##       ##     ## 
######### ######   ##     ## ##     ## ######   ########  
##     ## ##       ######### ##     ## ##       ##   ##   
##     ## ##       ##     ## ##     ## ##       ##    ##  
##     ## ######## ##     ## ########  ######## ##     ## 
*/
header.header{
    display: flex;
    width: 100%;
    background-color: var(--ics-blue);
    border-bottom: 1px solid var(--ics-grey-tint-1);
    z-index: 2;
}
header.header .header-container{
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
header.header .header-left{
    min-width: 240px;
    display: flex;
    align-items: center;
    margin-left: -10px;
    gap: 12px;
}
header.header .icst-toggle-menu{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.3s ease 0s;
}
header.header .icst-toggle-menu-wrap{
    width: 20px;
    height: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
header.header .icst-toggle-menu-wrap span{
    width: 100%;
    height: 3px;
    background-color: var(--ics-white);
    border-radius: 3px;
    transition: all 0.3s ease 0s;
}
header.header .icst-toggle-menu:hover{
    background-color: #ffffff20;
}
header.header .icst-toggle-menu:hover .icst-toggle-menu-wrap span,
header.header .icst-toggle-menu.active .icst-toggle-menu-wrap span{
    width: 3px;
}
header.header .icst-toggle-menu.active:hover .icst-toggle-menu-wrap span{
    width: 100%;
}
header.header .icst-logo{
    display: flex;
}
header.header .icst-logo a{
    display: flex;
}
header.header .icst-logo a img{
    max-width: 80px;
}
header.header .header-right{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header.header .header-right{
    display: flex;
    gap: 40px;
}
header.header .header-right .icst-menu{
    display: none;
}
header.header .header-right .header-right-links{
    display: flex;
    align-items: center;
    gap: 40px;
}
header.header .header-right .header-right-links > ul{
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}
header.header .header-right .header-right-links > ul > li{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
header.header .header-right .header-right-links > ul > li > a{
    font-size: 14px;
    color: var(--ics-grey);
    text-decoration: none;
    padding: 10px 0;
}
header.header .header-right .header-right-links > ul > li > a:hover{
    color: var(--ics-white);
    text-decoration: none;
}
header.header .header-right .header-right-links > ul > li.icst-admin-menu{
    position: relative;
}
header.header .header-right .admin-nav-menu{
}
header.header .header-user{
    display: flex;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.3s ease 0s;
    /* padding: 5px; */
    position: relative;
}
header.header .header-user:hover{
    background-color: #ffffff20;
}
header.header .header-user-wrap{
    display: flex;
    /* width: 50px; */
    width: 60px;
    padding: 5px;
    gap: 5px;
    align-items: center;
}
header.header .header-user-icon{
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #91D5EF;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}
header.header .header-user-icon span.icst-icon{
    color: var(--ics-white);
    font-size: 22px;
    display: flex;
}
header.header .header-user span.user-dropdown-icon{
    width: 10px;
    display: flex;
    color: var(--ics-white);
    height: 16px;
    font-size: 20px;
    pointer-events: none;
}
header.header .admin-nav-menu,
header.header .header-user-nav-menu{
    display: none;
    background-color: var(--ics-white);
    padding: 16px 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px #00000026;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
}
header.header .admin-nav-menu ul,
header.header .header-user-nav-menu ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
header.header .admin-nav-menu ul li,
header.header .header-user-nav-menu ul li{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
header.header .header-user-nav-menu ul li.header-user-nav-menu-logout{
    position: relative;
    padding-top: 2px;
    margin-top: 4px;
}
header.header .header-user-nav-menu ul li.header-user-nav-menu-logout::before{
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #DDE8ED;
}
header.header .admin-nav-menu ul li a,
header.header .header-user-nav-menu ul li a{
    display: flex;
    justify-content: space-between;
    flex: 1;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ics-blue);
    text-wrap: nowrap;
    text-decoration: none;
    padding: 3px 10px 3px 10px;
    border-radius: 7px;
}
header.header .header-user-nav-menu ul li a span.dot-number{
    width: 16px;
    height: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 100;
    background-color: #E00000;
    color: var(--ics-white);
}
header.header .admin-nav-menu ul li a:hover,
header.header .header-user-nav-menu ul li a:hover{
    text-decoration: none;
    /* background-color: var(--ics-grey-tint-1); */
    color: var(--ics-sky);
}
header.header .admin-nav-menu ul li a span.icst-icon,
header.header .header-user-nav-menu ul li a span.icst-icon{
    display: flex;
    font-size: 18px;
    margin-top: 3px;
}
header.header .header-user-nav-menu ul li.header-user-manage,
header.header .header-user-nav-menu ul li.header-transactions{
    display: none;
}

/*
##       ######## ######## ########    ##    ##    ###    ##     ## 
##       ##       ##          ##       ###   ##   ## ##   ##     ## 
##       ##       ##          ##       ####  ##  ##   ##  ##     ## 
##       ######   ######      ##       ## ## ## ##     ## ##     ## 
##       ##       ##          ##       ##  #### #########  ##   ##  
##       ##       ##          ##       ##   ### ##     ##   ## ##   
######## ######## ##          ##       ##    ## ##     ##    ###    
*/
.left-nav-bar{
    /* min-width: var(--left-nav-width); */
    min-width: 240px;
    display: flex;
    background-color: var(--ics-blue);
    transition: min-width 0.3s ease 0s;
    position: relative;
    z-index: 2;
}
.left-nav-bar.icon-only{
    min-width: 54px;
}
.left-nav-bar .left-nav-bar-inner{
    display: flex;
    flex: 1 auto;
}
.left-nav-bar .left-nav-bar-box{
    display: flex;
    flex: 1 auto;
    padding: 70px 10px 10px 10px;
}
.left-nav-bar ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 10px;
}
.left-nav-bar ul li{
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}
.left-nav-bar ul li a{
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 6px 8px;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    border-radius: 7px;
    font-weight: 500;
    position: relative;
}
.left-nav-bar ul li a span.icst-icon{
    font-size: 18px;
    opacity: 0.6;
    margin-top: 3px;
    margin-bottom: -1px;
}
.left-nav-bar ul li a:hover,
.left-nav-bar ul li.active a{
    background-color: #ffffff20;
}
.left-nav-bar ul li a:hover span.icst-icon,
.left-nav-bar ul li.active a span.icst-icon{
    opacity: 1;
}
.left-nav-bar ul li a span:not(.icst-icon){
}
@media screen and (min-width: 1025px) {
    .left-nav-bar ul.icon-only-list li a span:not(.icst-icon){
        display: none;
        position: absolute;
        background-color: var(--ics-blue);
        color: var(--ics-white);
        padding: 5px 15px;
        border-radius: 7px;
        left: calc(100% + 18px);
        top: 2px;
    }
    .left-nav-bar ul.icon-only-list li a:hover span:not(.icst-icon){
        display: block;
    }
    .left-nav-bar ul.icon-only-list li a span:not(.icst-icon)::before{
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: var(--ics-blue);
        transform: rotate(45deg);
        top: calc(50% - 6px);
        left: -4px;
    }
}
/*
########  ########  ########    ###    ########   ######  ########  ##     ## ##     ## ########  
##     ## ##     ## ##         ## ##   ##     ## ##    ## ##     ## ##     ## ###   ### ##     ## 
##     ## ##     ## ##        ##   ##  ##     ## ##       ##     ## ##     ## #### #### ##     ## 
########  ########  ######   ##     ## ##     ## ##       ########  ##     ## ## ### ## ########  
##     ## ##   ##   ##       ######### ##     ## ##       ##   ##   ##     ## ##     ## ##     ## 
##     ## ##    ##  ##       ##     ## ##     ## ##    ## ##    ##  ##     ## ##     ## ##     ## 
########  ##     ## ######## ##     ## ########   ######  ##     ##  #######  ##     ## ########  
*/
.page-main-content .page-inner-content .page-breadcrumb{
    min-height: 70px;
    padding: 10px 0;
}
.page-main-content .page-inner-content .page-breadcrumb p{
    font-size: 14px;
    color: var(--ics-grey);
}
.page-main-content .page-inner-content .page-breadcrumb p a{
    color: var(--ics-sky);
}
.page-main-content .page-inner-content .page-breadcrumb .icts-breadcrumb{
    padding: unset;
    margin-bottom: unset;
    list-style: none;
    background-color: unset;
    border-radius: unset;
    line-height: 1.3;
}
.page-main-content .page-inner-content .page-breadcrumb ol.icts-breadcrumb li a{
    color: var(--ics-grey);
    font-size: 14px;
    font-weight: 500;
}
.page-main-content .page-inner-content .page-breadcrumb ol.icts-breadcrumb li.active span{
    color: var(--ics-sky);
    font-size: 14px;
    font-weight: 500;
}
/* 
########  #######   #######  ######## ######## ########  
##       ##     ## ##     ##    ##    ##       ##     ## 
##       ##     ## ##     ##    ##    ##       ##     ## 
######   ##     ## ##     ##    ##    ######   ########  
##       ##     ## ##     ##    ##    ##       ##   ##   
##       ##     ## ##     ##    ##    ##       ##    ##  
##        #######   #######     ##    ######## ##     ## 
*/
footer.footer{
    display: flex;
    width: 100%;
    background: unset;
    background-color: var(--ics-dark-blue);
    padding: 0;
    margin: 0;
    clear: unset;
    position: unset;
    font-size: unset;
    color: var(--ics-grey);
    font-size: 14px;
    font-weight: 400;
}
footer.footer .footer-container{
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
footer.footer p,
footer.footer a{
    color: var(--ics-grey);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}
footer.footer .footer-left{
    display: flex;
}
footer.footer .footer-right{
    display: flex;
}
footer.footer .footer-right ul{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
footer.footer .footer-right ul li{
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid var(--ics-grey);
    line-height: 1;
}
footer.footer .footer-right ul li a{
    line-height: 1;
}
footer.footer .footer-right ul li:first-child{
    padding-left: 0;
}
footer.footer .footer-right ul li:last-child{
    padding-right: 0;
    border-right: unset;
}
/* 
##     ##  #######  ##     ## ######## 
##     ## ##     ## ###   ### ##       
##     ## ##     ## #### #### ##       
######### ##     ## ## ### ## ######   
##     ## ##     ## ##     ## ##       
##     ## ##     ## ##     ## ##       
##     ##  #######  ##     ## ######## 
*/
.page-main-content .home-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-main-content .home-heading-day{
    color: var(--ics-blue);
    font-size: 18px;
    font-weight: 500;
}
.page-main-content .home-heading-user h2{
    font-size: 32px;
    font-weight: 700 !important;
    text-align: center;
    color: var(--ics-black);
    margin: 6px 0;
    padding-bottom: 10px;
}

.home-heading-activity-bar{
    display: flex;
    gap: 20px;
    padding: 11px 40px;
    border-radius: 25px;
    background-color: var(--ics-grey-tint);
}
.home-heading-activity-bar .home-heading-activity-bar-label{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--ics-black);
    border-right: 1px solid var(--ics-grey);
    font-weight: 400;
    padding-right: 15px;
    white-space: nowrap;
}
.home-heading-activity-bar ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 65px;
    margin: 0;
    padding: 0;
    list-style: none;;
    padding: 0 43px;
}
.home-heading-activity-bar ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.home-heading-activity-bar ul li .icst-icon{
    color: var(--ics-grey);
    font-size: 20px;
    margin-top: 4px;
}
.home-heading-activity-bar ul li .activity-number{
    font-size: 20px;
    font-weight: 500;
    color: var(--ics-black);
}
.home-heading-activity-bar ul li .activity-name{
    font-size: 12px;
    font-weight: 400;
    color: var(--ics-black);
}

/* Home Video Slider */
.icst-home-slider-section{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 342px;
}
.icst-home-video-slider{
    width: 100%;
    /* max-width: calc(100vw - 240px - 200px); */
}
.icst-home-video-slide{
    display: flex;
    justify-content: space-between;
    background-color: var(--ics-grey-tint-1);
    padding: 24px 30px;
}
.icst-home-video-slide-left{
    width: 100%;
    max-width: calc(100% - 416px - 30px);
    display: flex;
}
.icst-home-video-slide-left-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}
.icst-home-video-slide-title{
    width: 100%;
    max-width: 353px;
}
.icst-home-video-slide-title h2{
    font-size: 26px;
    font-weight: 700 !important;
    color: var(--ics-blue);
    line-height: 1.3 !important;
    margin: 0;
    padding: 0;
}
.icst-home-video-slide-content{
    width: 100%;
    max-width: 353px;
    padding-bottom: 30px;
}
.icst-home-video-slide-content p{
    font-size: 14px;
    font-weight: 400;
}
.icst-home-video-slide-cta{
    display: flex;
}
.icst-home-video-slide-right{
    width: 100%;
    max-width: 416px;
    display: flex;
}
.icst-home-video-slide-right .icst-home-video-box{
    width: 416px;
    height: 234px;
    display: flex;
    background-color: var(--ics-dark-blue);
    cursor: pointer;
    position: relative;
}
.icst-home-video-slide-right .icst-home-video-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icst-home-video-slide-right .icst-home-video-box .icst-home-play-video{
    background-image: url('../images/play-icon.png');
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 98px;
    height: 64px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.widget-programmes-empty-wrap{
    display: flex;
    width: 100%;
}
.widget-programmes-empty-wrap .empty-programmes-message{
    padding: 16px 16px 10px 16px;
    width: 100%;
}
.widget-programmes-body{
    flex-direction: column;
}
.widget-programmes-wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    gap: 21px;
}
.widget-programmes-wrap ul{
    display: flex;
    flex: 1;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget-programmes-wrap ul li{
    display: flex;
    list-style: none;
    width: 100%;
    max-width: calc(33.33% - 16px);
    margin: 0;
    padding: 0;
}
.widget-programmes-wrap ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--ics-black);
}
.widget-programmes-wrap ul li a:hover{
    text-decoration: none;
    color: var(--ics-blue);
    background-color: var(--ics-grey-tint);
}
.widget-programmes-wrap ul li a span.add-programmes-icon{
    min-width: 60px;
    width: 60px;
    min-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transition: all 0.3s ease 0s;
    background-color: var(--ics-blue);
}
.widget-programmes-wrap ul li a:hover span.add-programmes-icon{
    /* background-color: var(--ics-sky); */
}
.widget-programmes-wrap ul li a span.icst-icon{
    font-size: 26px;
    display: flex;
    color: var(--ics-white);
    transition: all 0.3s ease 0s;
}
.widget-programmes-wrap ul li a span.add-programmes-label{
    display: flex;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}
.widget-programmes-wrap ul li a.create-programmes-link{
    color: var(--ics-grey);
}
.widget-programmes-wrap ul li a.create-programmes-link:hover{
    color: var(--ics-blue);
}
.widget-programmes-wrap ul li a.create-programmes-link span.add-programmes-icon{
    border: 1px dashed var(--ics-grey);
    background-color: unset;
}
.widget-programmes-wrap ul li a.create-programmes-link:hover span.add-programmes-icon{
    border-color: var(--ics-blue);
}
.widget-programmes-wrap ul li a.create-programmes-link span.icst-icon{
    font-size: 10px;
    color: var(--ics-grey);
}
.widget-programmes-wrap ul li a.create-programmes-link:hover span.icst-icon{
    color: var(--ics-blue);
}

.widget-collection-wrap{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
}
.widget-collection-wrap ul{
    display: flex;
    flex: 1;
    gap: 3px;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget-collection-wrap ul li{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget-collection-wrap ul li a{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    text-decoration: none;
    color: var(--ics-black);
    border-radius: 7px;
}
.widget-collection-wrap ul li a:hover{
    text-decoration: none;
    color: var(--ics-blue);
    background-color: var(--ics-grey-tint);
}
.widget-collection-wrap ul li a span.add-collection-icon{
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    transition: all 0.3s ease 0s;
    background-color: var(--ics-sky);
}
.widget-collection-wrap ul li a:hover span.add-collection-icon{
    /* background-color: var(--ics-blue); */
}
.widget-collection-wrap ul li a span.icst-icon{
    font-size: 26px;
    display: flex;
    color: var(--ics-white);
    transition: all 0.3s ease 0s;
}
.widget-collection-wrap ul li a span.add-collection-label{
    display: flex;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}
.widget-collection-wrap ul li a.create-collection-link{
    color: var(--ics-grey);
}
.widget-collection-wrap ul li a.create-collection-link:hover{
    /* color: var(--ics-blue); */
}
.widget-collection-wrap ul li a.create-collection-link span.add-collection-icon{
    border: 1px dashed var(--ics-grey);
    background-color: unset;
}
.widget-collection-wrap ul li a.create-collection-link:hover span.add-collection-icon{
    /* border-color: var(--ics-blue); */
}
.widget-collection-wrap ul li a.create-collection-link span.icst-icon{
    font-size: 10px;
    color: var(--ics-grey);
}
.widget-collection-wrap ul li a.create-collection-link:hover span.icst-icon{
    /* color: var(--ics-blue); */
}

.widget-favourites-wrap{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
    padding: 6px 6px 0 6px;
    flex: 1;
}
.widget-favourites-wrap ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ics-grey-tint-1);
    flex: 1;
}
.widget-favourites-wrap ul li{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--ics-grey-tint-1);
}
.widget-favourites-wrap ul li a{
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 9px 0;
    color: var(--ics-black);
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
}
.widget-favourites-wrap ul li a:not(.no-fav-link):hover{
    color: var(--ics-blue);
}
.widget-favourites-wrap ul li a .icst-icon{
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-top: 2px;
    margin-bottom: -2px;
    color: var(--ics-red);
    transition: all 0.3s ease 0s;
}
.widget-favourites-wrap ul li a:not(.no-fav-link):hover .icst-icon{
    transform: scale(1.2);
}
.widget-favourites-wrap ul li a.no-fav-link{
    color: var(--ics-grey);
    cursor: default;
}
.widget-favourites-wrap ul li a.no-fav-link .icst-icon{
    color: var(--ics-grey);
}
body.icst-redesign #mainonboardingpopup .modal-header{
    display: flex;
    justify-content: flex-end;
}
body.icst-redesign #mainonboardingpopup .modal-header .modalclosebutton{
    font-size: 22px;
    color: var(--ics-blue);
    opacity: 0.2;
    cursor: pointer;
}
body.icst-redesign #mainonboardingpopup .modal-header .modalclosebutton:hover{
    opacity: 0.5;
}
/*
 ######  ##       ####  ######  ##    ## 
##    ## ##        ##  ##    ## ##   ##  
##       ##        ##  ##       ##  ##   
 ######  ##        ##  ##       #####    
      ## ##        ##  ##       ##  ##   
##    ## ##        ##  ##    ## ##   ##  
 ######  ######## ####  ######  ##    ## 
*/
.slick-slider .slick-slide {
    margin: 0 10px;
}
.slick-slider .slick-list {
    margin: 0 -10px;
}
.slick-slider button.slick-arrow{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: unset !important;
    background-color: #EEF3F660 !important;
    font-size: 0 !important;
    letter-spacing: unset !important;
    line-height: unset !important;
    border: 0 !important;
    border-radius: unset !important;
    outline: none !important;
    top: calc(50% -  15px);
    left: 10px;
    transition: all 0.3s ease 0s;
    z-index: 2;
}
.slick-slider button.slick-arrow:hover{
    background-color: var(--ics-sky) !important;
}
.slick-slider button.slick-arrow.slick-next{
    left: unset !important;
    right: 10px;
    transform: rotate(180deg) !important;
}
.slick-slider button.slick-arrow::before{
    font-family: "icst" !important;
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

    content: '\6c';
    color: var(--ics-white);
    font-size: 36px;
    margin-top: 5px;
}
.slick-slider .slick-dots{
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
}
.slick-slider .slick-dots li{
    display: flex;
}
.slick-slider .slick-dots li button{
    font-size: 0 !important;
    min-width: unset !important;
    width: 15px !important;
    height: 15px !important;
    border: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: var(--ics-grey-tint-4) !important;
}
.slick-slider .slick-dots li.slick-active button,
.slick-slider .slick-dots li.slick-active:hover button{
    background-color: var(--ics-sky) !important;
}
.slick-slider .slick-dots li:hover button{
    background-color: var(--ics-grey) !important;
}
/* 
##      ## #### ########   ######   ######## ######## 
##  ##  ##  ##  ##     ## ##    ##  ##          ##    
##  ##  ##  ##  ##     ## ##        ##          ##    
##  ##  ##  ##  ##     ## ##   #### ######      ##    
##  ##  ##  ##  ##     ## ##    ##  ##          ##    
##  ##  ##  ##  ##     ## ##    ##  ##          ##    
 ###  ###  #### ########   ######   ########    ##    
*/
.icst-widget{
    display: flex;
}
.icst-widget .icst-widget-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.icst-widget .icst-widget-heading{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.icst-widget .icst-widget-icon{
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.icst-widget .icst-widget-icon span.icst-icon{
    font-size: 16px;
    display: flex;
    margin-top: 4px;
}
.icst-widget .icst-widget-title{
    font-size: 18px;
    font-weight: 500;
    flex: 1;
}
.icst-widget-wrap{
    display: flex;
    position: relative;
}
.icst-widget .icst-widget-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.3s ease 0s;
}
.icst-widget .icst-widget-nav:hover{
    background-color: #ffffff20;
}
.icst-widget .icst-widget-nav > span{
    display: flex;
    justify-content: space-between;
    width: 21px;
    pointer-events: none;
}
.icst-widget .icst-widget-nav > span span{
    width: 5px;
    height: 5px;
    background-color: var(--ics-black);
    border-radius: 5px;
}
.icst-widget .icst-widget-body{
    display: flex;
    width: 100%;
    border: 1px solid var(--ics-grey-tint-1);
    border-top: unset;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 14px;
    flex: 1;
}
.icst-widget .icst-widget-nav-menu{
    display: none;
    background-color: var(--ics-white);
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px #00000026;
    position: absolute;
    top: 100%;
    right: 0;
}
.icst-widget .icst-widget-nav-menu ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.icst-widget .icst-widget-nav-menu ul li{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.icst-widget .icst-widget-nav-menu ul li a{
    display: flex;
    flex: 1;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ics-blue);
    text-wrap: nowrap;
    text-decoration: none;
    padding: 3px 16px;
    border-radius: 7px;
    /* background-color: var(--ics-blue); */
}
.icst-widget .icst-widget-nav-menu ul li a:hover{
    text-decoration: none;
    /* background-color: var(--ics-grey-tint-1); */
    color: var(--ics-sky);
}
.icst-widget .icst-widget-nav-menu ul li a span.icst-icon{
    display: flex;
    font-size: 18px;
    margin-top: 3px;
}
.icst-widget .icst-widget-nav-menu ul li a:hover span.icst-icon{
    color: var(--ics-blue);
}
.icst-widget .widget-show-more-link{
    display: flex;
    padding-left: 6px;
    padding-bottom: 6px;
}
.icst-widget .widget-show-more-link a{
    color: var(--ics-blue);
}

/* Widget colors*/
.icst-widget.widget-blue .icst-widget-heading{
    background-color: var(--ics-blue);
}
.icst-widget.widget-blue .icst-widget-icon{
    background-color: var(--ics-white);
}
.icst-widget.widget-blue .icst-widget-icon span.icst-icon{
    color: var(--ics-blue);
}
.icst-widget.widget-blue .icst-widget-title{
    color: var(--ics-white);
}
.icst-widget.widget-blue .icst-widget-nav > span span{
    background-color: var(--ics-white);
}

.icst-widget.widget-sky .icst-widget-heading{
    background-color: var(--ics-sky);
}
.icst-widget.widget-sky .icst-widget-icon{
    background-color: var(--ics-white);
}
.icst-widget.widget-sky .icst-widget-icon span.icst-icon{
    color: var(--ics-sky);
}
.icst-widget.widget-sky .icst-widget-title{
    color: var(--ics-white);
}
.icst-widget.widget-sky .icst-widget-nav > span span{
    background-color: var(--ics-white);
}

.icst-widget.widget-red .icst-widget-heading{
    background-color: var(--ics-red);
}
.icst-widget.widget-red .icst-widget-icon{
    background-color: var(--ics-white);
}
.icst-widget.widget-red .icst-widget-icon span.icst-icon{
    color: var(--ics-red);
}
.icst-widget.widget-red .icst-widget-title{
    color: var(--ics-white);
}
.icst-widget.widget-red .icst-widget-nav > span span{
    background-color: var(--ics-white);
}

.home-widget-section{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    padding-top: 30px;
}
.home-widget-section .home-programmes-widget{
    width: 100%;
}
.home-widget-section .home-collection-widget,
.home-widget-section .home-favourites-widget{
    width: 100%;
    max-width: calc(50% - 10px);
}
/*
#### ##    ## ##    ## ######## ########     ########     ###    ##    ## ##    ## ######## ########  
 ##  ###   ## ###   ## ##       ##     ##    ##     ##   ## ##   ###   ## ###   ## ##       ##     ## 
 ##  ####  ## ####  ## ##       ##     ##    ##     ##  ##   ##  ####  ## ####  ## ##       ##     ## 
 ##  ## ## ## ## ## ## ######   ########     ########  ##     ## ## ## ## ## ## ## ######   ########  
 ##  ##  #### ##  #### ##       ##   ##      ##     ## ######### ##  #### ##  #### ##       ##   ##   
 ##  ##   ### ##   ### ##       ##    ##     ##     ## ##     ## ##   ### ##   ### ##       ##    ##  
#### ##    ## ##    ## ######## ##     ##    ########  ##     ## ##    ## ##    ## ######## ##     ## 
*/
.page-inner-heading{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.inner-banner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px 16px 30px;
    background-color: var(--ics-grey-tint-1);
    min-height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.inner-banner .inner-banner-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 70px;
}
.inner-banner .inner-banner-icon img,
.inner-banner .inner-banner-icon svg{
    max-width: 44%;
    max-height: 44%;
}
.inner-banner.programmes-inner-banner .inner-banner-icon{
    background-color: var(--ics-blue);
}
.inner-banner.events-inner-banner .inner-banner-icon{
    background-color: var(--ics-plum);
}
.inner-banner.collection-inner-banner .inner-banner-icon{
    background-color: var(--ics-sky);
}
.inner-banner.favourites-inner-banner .inner-banner-icon{
    background-color: var(--ics-red);
}
.inner-banner .inner-banner-icon span.icst-icon{
    font-size: 32px;
    color: var(--ics-white);
    display: flex;
    margin-top: 6px;
}
.inner-banner .inner-banner-title h2{
    font-weight: 700 !important;
    font-size: 32px;
    margin: 0;
    padding-bottom: 8px;
}
.inner-banner.programmes-inner-banner .inner-banner-title h2{
    color: var(--ics-blue);
    text-align: center;
}
.inner-banner.events-inner-banner .inner-banner-title h2{
    color: var(--ics-plum);
}
.inner-banner.collection-inner-banner .inner-banner-title h2{
    color: var(--ics-sky);
}
.inner-banner.favourites-inner-banner .inner-banner-title h2{
    color: var(--ics-red);
}
.inner-banner .inner-banner-description{
    width: 100%;
    max-width: 640px;
    color: var(--ics-black);
    text-align: center;
}
.inner-banner .inner-banner-description p{
    font-weight: 400;
}
.page-inner-heading-notifaction{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 14px 30px;
    background-color: var(--ics-blue);
}
.page-inner-heading-notifaction .notifaction-left{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--ics-white);
}
.page-inner-heading-notifaction .notifaction-left p{
    margin: 0;
    font-size: 16px;
}

.inner-page-body{
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}
.inner-page-body.no-banner{
    padding-top: 0;
}
.inner-page-body.user-home-inner-page-body,
.inner-page-body.evnet-single-inner-page-body{
    padding-top: 0;
}

.special .thespecialcontent ol>li{
    margin: 0 0 6px 0;
}
/*
########  ########   #######   ######   ########     ###    ##     ## ##     ## ########  ######  
##     ## ##     ## ##     ## ##    ##  ##     ##   ## ##   ###   ### ###   ### ##       ##    ## 
##     ## ##     ## ##     ## ##        ##     ##  ##   ##  #### #### #### #### ##       ##       
########  ########  ##     ## ##   #### ########  ##     ## ## ### ## ## ### ## ######    ######  
##        ##   ##   ##     ## ##    ##  ##   ##   ######### ##     ## ##     ## ##             ## 
##        ##    ##  ##     ## ##    ##  ##    ##  ##     ## ##     ## ##     ## ##       ##    ## 
##        ##     ##  #######   ######   ##     ## ##     ## ##     ## ##     ## ########  ######  
*/
.programmes-details-inner-page-body > .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
.empty-programmes-message{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 30px;
}
.empty-programmes-message h3{
    font-size: 26px;
    font-weight: 700;
    color: var(--ics-blue);
    margin-bottom: 8px !important;
}
.empty-programmes-message p{
    font-size: 26px;
    color: var(--ics-blue);
    margin: 0;
    margin-bottom: 26px;
    font-weight: 500;
}

.programmes-programm-list-wrap{
    width: 100%;
    display: flex;
}
.programmes-programm-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 30px 0 30px;
    margin-bottom: -30px;
}
.programmes-programm{
    width: 100%;
    height: 350px;
    max-width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    padding: 40px 16px 20px 16px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px 0px #00000026;
}
.programmes-programm .programmes-programm-image{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ics-blue);
    border-radius: 100px;
}
.programmes-programm .programmes-programm-title h5{
    font-size: 14px;
    color: var(--ics-black);
    margin: 0 !important;
    padding: 0;
}
.programmes-programm .programmes-programm-desc{
    flex: 1;
}
.programmes-programm .programmes-programm-desc p{
    font-size: 14px;
}

.icst-programmes-list-wrap{
    width: 100%;
}
.icst-programmes-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 0px;
}
.icst-programmes-list .icst-programmes-list-title{
    width: 100%;
    border-bottom: 1px solid var(--ics-grey);
    font-size: 16px;
    font-weight: 400;
    color: var(--ics-blue);
    padding: 15px 15px;
}
.icst-programmes-list ul{
    width: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 4px 0px;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid var(--ics-grey);
}
.icst-programmes-list ul li{
    display: flex;
    width: 100%;
    padding: 4px 15px;
}
.icst-programmes-list .icst-programmes-list-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.icst-programmes-list .icst-programmes-list-label{
    font-size: 14px;
    color: var(--ics-black);
    font-weight: 500;
    text-transform: uppercase;
}
.icst-programmes-list ul li .icst-programmes-list-label-right{
    display: flex;
    gap: 10px;
    align-items: center;
}
.icst-programmes-list ul li .icst-programmes-list-label-right a.add-to-favourit{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 44px;
    height: 30px;
}
.icst-programmes-list ul li .icst-programmes-list-label-right a.add-to-favourit:hover{
    text-decoration: none;
}
.icst-programmes-list ul li .icst-programmes-list-label-right .icst-icon{
    color: var(--ics-red);
    display: flex;
    margin-top: 4px;
    font-size: 12px;
}
.icst-programmes-list ul li .icst-programmes-list-label-right .icst-icon.icst-icon-heart-fill{
    display: none;
}
.icst-programmes-list ul li.active .icst-programmes-list-label-right a.add-to-favourit .icst-icon.icst-icon-heart-fill,
.icst-programmes-list ul li .icst-programmes-list-label-right a.add-to-favourit:hover .icst-icon.icst-icon-heart-fill,
.icst-programmes-list ul li.active .icst-programmes-list-label-right a.add-to-favourit:hover .icst-icon.icst-icon-heart{
    display: flex;
}
.icst-programmes-list ul li.active .icst-programmes-list-label-right a.add-to-favourit .icst-icon.icst-icon-heart, 
.icst-programmes-list ul li .icst-programmes-list-label-right a.add-to-favourit:hover .icst-icon.icst-icon-heart,
.icst-programmes-list ul li.active .icst-programmes-list-label-right a.add-to-favourit:hover .icst-icon.icst-icon-heart-fill{
    display: none;
}

.programmes-details-inner-page-body{
    margin-bottom: -12px;
}
.programmes-details-inner-page-body .programme-lib-title{
    width: 100%;
    display: flex;
}
.programmes-details-inner-page-body .programme-lib-title .sparkline{
    display: none;
}
.programmes-details-inner-page-body .cat-title{
    margin-bottom: 10px;
}
.programmes-details-like-add-section{
    min-height: 340px;
    border-bottom: 1px solid var(--ics-grey);
    margin-bottom: 12px;
}
.programmes-details-like-add-section .programmes-details-like-add-section-title{
    width: 100%;
    border-bottom: 1px solid var(--ics-grey);
    font-size: 18px;
    font-weight: 400;
    color: var(--ics-blue);
    padding: 0px 15px 14px 15px;
    margin-bottom: 10px;
}
.programmes-details-like-add-section .programme-lib-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0px;
}
.programmes-details-like-add-section .programme-lib-title a{
}
.programmes-details-like-add-section .title-name{
    font-size: 14px;
    color: var(--ics-black);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
}
.programmes-details-like-add-section .l-progress{
    display: none;
}
.programmes-details-like-add-section .programme-lib-title .actionbox{
    display: flex;
    align-items: center;
}
.programmes-details-like-add-section .programme-lib-title .actionbox button.smallcolactionbutton{
    font-size: 10px;
    padding: 8px 10px;
    height: unset;
}
.programmes-details-like-add-section .programme-lib-title .actionbox .dropdown-menu{
    left: unset;
    right: 0;
}

.programmes-details-full-inner-page-body{
    padding-top: unset;
    background-color: #e8e8e8;
}
.programmes-details-full-inner-page-body .container{
    width: 100%;
    max-width: 1170px;
}
.programmes-details-inner-page-body .actionbox{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.programmes-details-inner-page-body .collectionlist .collectionul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.programmes-details-inner-page-body .collectionlist .collectionul li{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.programmes-details-inner-page-body .collectionlist .collectionul li .listaction{
    min-width: 100px;
    text-align: right;
}
.programmes-details-inner-page-body .dropdown-menu.collectionlist{
    left: unset;
    right: 0;
}

.progmenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#qiprojects .progress{
    max-width: 150px;
    width: 100%;
    height: unset;
    max-height: unset;
    aspect-ratio: 1/1;
}
/*
######## ########  ##     ##  ######     ###    ######## ####  #######  ##    ## 
##       ##     ## ##     ## ##    ##   ## ##      ##     ##  ##     ## ###   ## 
##       ##     ## ##     ## ##        ##   ##     ##     ##  ##     ## ####  ## 
######   ##     ## ##     ## ##       ##     ##    ##     ##  ##     ## ## ## ## 
##       ##     ## ##     ## ##       #########    ##     ##  ##     ## ##  #### 
##       ##     ## ##     ## ##    ## ##     ##    ##     ##  ##     ## ##   ### 
######## ########   #######   ######  ##     ##    ##    ####  #######  ##    ## 
*/
.education-details-full-inner-page-body .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
.education-details-full-inner-page-body .bigactionbox-wrap{
    display: flex;
    justify-content: flex-end;
}
.education-details-full-inner-page-body .bigactionbox-wrap .bigactionbox{
    display: flex !important;
    align-items: center;
    width: unset !important;
    float: unset !important;
    height: unset !important;
    line-height: unset !important;
}
/*
######## ##     ## ######## ##    ## ########  ######  
##       ##     ## ##       ###   ##    ##    ##    ## 
##       ##     ## ##       ####  ##    ##    ##       
######   ##     ## ######   ## ## ##    ##     ######  
##        ##   ##  ##       ##  ####    ##          ## 
##         ## ##   ##       ##   ###    ##    ##    ## 
########    ###    ######## ##    ##    ##     ######  
*/
.icst-event-page-container{
    width: 100%;
}
.evnet-single-inner-page-body .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
.icst-event-page-container nav > div{
    display: flex !important;
    align-items: center;
}
.icst-event-page-container nav > div select{
    width: 170px;
    height: 30px;
    margin: 20px 0;
}
/*
 ######   #######  ##       ##       ########  ######  ######## ####  #######  ##    ## 
##    ## ##     ## ##       ##       ##       ##    ##    ##     ##  ##     ## ###   ## 
##       ##     ## ##       ##       ##       ##          ##     ##  ##     ## ####  ## 
##       ##     ## ##       ##       ######   ##          ##     ##  ##     ## ## ## ## 
##       ##     ## ##       ##       ##       ##          ##     ##  ##     ## ##  #### 
##    ## ##     ## ##       ##       ##       ##    ##    ##     ##  ##     ## ##   ### 
 ######   #######  ######## ######## ########  ######     ##    ####  #######  ##    ## 
*/
.collections-list-wrap{
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
.collections-list{
    display: flex;
    flex-wrap: wrap;
}
.collections-list > div{
    display: flex;
    height: unset;
}
.collections-list .thecollectionbox{
    display: flex;
    width: 100%;
    flex-grow: 1;
    flex-direction: column;
    border-top: 6px solid var(--ics-blue);
    background-color: var(--ics-white);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.collections-list .thecollectionbox > div{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.collections-list .collection-top{
    width: 100%;
    display: flex;
    padding: 18px 12px;
    background-color: #F8F8F8;
}
.collections-list .collection-top .collection-lib-title{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.collections-list .collection-top .collection-lib-title .title-name{
    font-size: 20px;
    margin-bottom: 20px;
}
.collections-list .collection-bottom{
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 12px 24px 12px;
    min-height: 160px;
}
.collections-list .collection-bottom .collection-content{
    flex-grow: 1;
}
.collections-list .collection-bottom .collection-lib-button{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}
.collections-list .collection-bottom .collection-lib-button .collectioneditdelete span{
    font-size: 26px;
}
.collections-list-wrap .collection-list-button-wrap{
    display: flex;
    padding-top: 15px;
    justify-content: center;
    align-items: center;
}
.collections-list-wrap .nocollections-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.collections-list-wrap .nocollections-box .nocollectionsicon{
    width: 60px;
    height: 60px;
    opacity: 0.6;
}
.collections-list-wrap .nocollections-box .c-title{
}
#editcollectionmodalpage .modal-dialog .btn-secondary,
#createcollectionmodalpage .modal-dialog .btn-secondary{
    margin-bottom: 8px;
}
#editcollectionmodalpage .modal-dialog #edittitle,
#createcollectionmodalpage .modal-dialog #submittitle{
    margin-bottom: 20px;
}
.collection-single-list .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
/*
########    ###    ##     ##  #######  ##     ## ########  #### ######## ########  ######  
##         ## ##   ##     ## ##     ## ##     ## ##     ##  ##     ##    ##       ##    ## 
##        ##   ##  ##     ## ##     ## ##     ## ##     ##  ##     ##    ##       ##       
######   ##     ## ##     ## ##     ## ##     ## ########   ##     ##    ######    ######  
##       #########  ##   ##  ##     ## ##     ## ##   ##    ##     ##    ##             ## 
##       ##     ##   ## ##   ##     ## ##     ## ##    ##   ##     ##    ##       ##    ## 
##       ##     ##    ###     #######   #######  ##     ## ####    ##    ########  ######  
*/
.favourites-list-wrap{
    width: 100%;
}
.favourites-list-wrap .container{
    margin-left: -15px;
    margin-right: -15px;
    width: unset;
}
.user-home-inner-page-body #content #buddypress.dashboard-body{
    margin-top: 0;
}
.user-home-inner-page-body #content #buddypress.dashboard-body .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
.user-home-inner-page-body #content #buddypress.dashboard-body #user-preferences-submit{
    padding: 0;
}
/*
########  ######## ########  ######## ######## ##     ##    ########  #######   #######  ##       ##    ## #### ######## 
##     ## ##       ##     ## ##       ##       ###   ###       ##    ##     ## ##     ## ##       ##   ##   ##     ##    
##     ## ##       ##     ## ##       ##       #### ####       ##    ##     ## ##     ## ##       ##  ##    ##     ##    
########  ######   ##     ## ######   ######   ## ### ##       ##    ##     ## ##     ## ##       #####     ##     ##    
##   ##   ##       ##     ## ##       ##       ##     ##       ##    ##     ## ##     ## ##       ##  ##    ##     ##    
##    ##  ##       ##     ## ##       ##       ##     ##       ##    ##     ## ##     ## ##       ##   ##   ##     ##    
##     ## ######## ########  ######## ######## ##     ##       ##     #######   #######  ######## ##    ## ####    ##    
*/
.redeem-toolkit-inner-page-body .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
/*
   ###     ######  ######## ####  #######  ##    ##    ########   #######  ##     ## 
  ## ##   ##    ##    ##     ##  ##     ## ###   ##    ##     ## ##     ##  ##   ##  
 ##   ##  ##          ##     ##  ##     ## ####  ##    ##     ## ##     ##   ## ##   
##     ## ##          ##     ##  ##     ## ## ## ##    ########  ##     ##    ###    
######### ##          ##     ##  ##     ## ##  ####    ##     ## ##     ##   ## ##   
##     ## ##    ##    ##     ##  ##     ## ##   ###    ##     ## ##     ##  ##   ##  
##     ##  ######     ##    ####  #######  ##    ##    ########   #######  ##     ## 
*/
.collectionlist .collectionul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.collectionlist .collectionul li{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin: 0;
}
.collectionlist .collectionul li .listaction{
    min-width: 100px;
    text-align: right;
}
.dropdown-menu.collectionlist{
    left: unset;
    right: 0;
}
.dropdown-open-right .dropdown-menu.collectionlist{
    left: 0;
    right: unset;
}
.dropdown-open-center .dropdown-menu.collectionlist{
    left: 50%;
    right: unset;
    margin: 0 auto;
    transform: translateX(-50%);
}
/*
 #######  ####    ########  ########   #######        ## ########  ######  ######## 
##     ##  ##     ##     ## ##     ## ##     ##       ## ##       ##    ##    ##    
##     ##  ##     ##     ## ##     ## ##     ##       ## ##       ##          ##    
##     ##  ##     ########  ########  ##     ##       ## ######   ##          ##    
##  ## ##  ##     ##        ##   ##   ##     ## ##    ## ##       ##          ##    
##    ##   ##     ##        ##    ##  ##     ## ##    ## ##       ##    ##    ##    
 ##### ## ####    ##        ##     ##  #######   ######  ########  ######     ##    
*/
.qi-project-inner-page-body{}
.qi-project-inner-page-body .container{
    width: 100%;
}
.qi-project-inner-detail-page-body{
    padding-top: 30px;
}
.qi-project-inner-detail-page-body .container{
    width: unset;
    margin-left: -15px !important;
    margin-right: -15px !important;
}
.qi-project-inner-detail-page-body .actionbox{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.qi-sinble-inner-page-body{}
.qi-sinble-inner-page-body .bigactionbox{
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-end !important;
}
.qi-sinble-inner-page-body .container {
    width: unset;
}
/*
 ######   #######  ##     ## ########   ######  ######## 
##    ## ##     ## ##     ## ##     ## ##    ##    ##    
##       ##     ## ##     ## ##     ## ##          ##    
##       ##     ## ##     ## ########   ######     ##    
##       ##     ## ##     ## ##   ##         ##    ##    
##    ## ##     ## ##     ## ##    ##  ##    ##    ##    
 ######   #######   #######  ##     ##  ######     ##    
*/
.courst-exam-inner-page-body{}
.courst-exam-inner-page-body .container{
    width: unset;
    margin-left: -15px;
    margin-right: -15px;
}
.courst-exam-inner-page-body .unit_content {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 30px;
}
.courst-exam-inner-page-body .bigactionbox {
    display: flex !important;
    align-items: center !important;
}
.guideline-inner-page-body .bigactionbox {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.assessment-archive-inner-page-body .actionbox {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-end !important;
}


.icst-dashboard-body .certifications{
    max-width: calc(100vw - 240px - 200px - 40px);
}