/*--------------------------------------------------------------------------------------------------*/
/***** GLOBAL MELOV16 *****/
*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif !important;
    color: var(--clr-font);
}

:root {
    --clr-primary: #e72e39;
    --clr-secondary: #485294;
    --clr-font: #383b38;
}

html,
body {
    overflow-x: hidden;
}

a {
    color: var(--clr-primary);
}

    a:hover {
        color: var(--clr-primary);
    }

.megaWrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 15px;
    height: 100%;
}

.mainWrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-content {
    position: relative;
    background-color: #f5f5f5;
   
}

@font-face {
    font-family: SegoeRegular;
    src: url(/CMS/site/fonts/segoeui.ttf);
}

@font-face {
    font-family: SegoeLight;
    src: url(/CMS/site/fonts/segoeuil.ttf);
}

@font-face {
    font-family: SegoeSBold;
    src: url(/CMS/site/fonts/seguisb.ttf);
}

p {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    color: var(--clr-font);
}

h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 34px;
    text-align: center;
    color: var(--clr-font);
    padding: 64px 0 8px;
    margin: 0;
}

h1 {
    display:block!important;
}

h3 {
    color: #515050;
    font-size: 24px;
    margin-top: 2px;
    font-weight: 600;
}
    h1::after, h3::after
    {
        background-color:none!important;
    }
    .padding-bottom {
        padding-bottom: 100px;
    }

.upProgressSquare {
    position: absolute;
    top: 0%;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* IE 5-7 */
    filter: alpha(opacity=50);
    /* Netscape */
    -moz-opacity: 0.5;
    /* Safari 1.x */
    -khtml-opacity: 0.5;
    /* Good browsers */
    opacity: 0.5;
    background-color: #ddd;
    width: 100%;
    height: 100%;
    min-height: 70px;
    left: -1px;
    z-index: 10000;
}

    .upProgressSquare .sk-cube-grid {
        position: relative;
        margin: 1% auto;
    }

.DivOverFlowX {
    overflow-x: auto;
}

.PlatformContainer {
    max-width: 1593px;
    margin: 60px auto 60px auto;
    background-color: #fff;
    font-size: 16px;
}

    .PlatformContainer ul {
        padding-left: 20px;
    }

a.btn {
    text-decoration: none;
}

.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-size: 16px;
    font-family: SegoeLight;
    padding: 0.375rem 28px;
}

.btn-outline-primary {
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    background-color: transparent;
}

    .btn-outline-primary:hover {
        background-color: var(--clr-primary);
        color: #fff;
    }

.display-center {
    margin: 0 auto;
    display: block;
}

.no-margin {
    margin-bottom: 0;
}

.NoData {
    font-size: 16px;
    color: #747373;
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}

    .btn-primary:hover {
        background-color: transparent;
        color: var(--clr-primary);
    }

.input-group-prepend .input-group-text {
    font-size: 16px;
    color: #a2a2a2 !important;
}

.input-group-append {
    position: absolute;
    height: 100%;
    right: 0;
    min-width: 38px;
    z-index: 3;
}

    .input-group-append .input-group-text {
        border: unset;
        position: relative;
        background-color: unset;
    }

        .input-group-append .input-group-text i {
            font-size: 16px;
            color: #a2a2a2;
        }

        .input-group-append .input-group-text::before {
            content: "";
            position: absolute;
            width: 1px;
            height: 84%;
            background-color: #e1e6ef;
            left: -3px;
            top: 50%;
            transform: translateY(-50%);
        }

/***** Class Modifiers *****/
/*--------------------------------------------------------------------------------------------------*/

/***** Position *****/
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.t-50\% {
    top: 50%;
}

.l-0 {
    left: 0;
}

.-transform-t-50\% {
    transform: translateY(-50%);
}

/***** Widths *****/
.main-content {
    background-color: #fff;
}

.max-container {
    max-width: 1100px;
    margin: 0 auto;
}

.max-w-845 {
    max-width: 845px;
}

.max-w-400 {
    max-width: 400px;
}

.w-full {
    width: 100%;
}

/***** Colors *****/
.clr-primary {
    color: var(--clr-primary) !important;
}

.bg-primary-85 {
    background-color: rgba(231, 46, 57, 0.85);
}

.text-white {
    color: #fff;
}

.text-primary {
    color: var(--clr-primary);
}

.text-secondary {
    color: var(--clr-secondary);
}

/***** Spacing *****/
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-16 {
    margin-bottom: 16px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.p-t-30 {
    padding-top: 30px !important;
}

.pt-50 {
    padding-top: 50px;
}

.p-b-100 {
    padding-bottom: 100px !important;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.px-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

/***** Font *****/
.text-12 {
    font-size: 12px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-26 {
    font-size: 26px;
}

.bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 500;
}

/***** Text *****/
.underline {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

/***** Borders *****/
.border-b-solid {
    border-bottom-style: solid;
}

.border-b-3 {
    border-bottom-width: 3px;
}

.border-b-1 {
    border-bottom-width: 1px;
}

.border-white {
    border-color: #fff;
}

.border-br-radius-115 {
    border-bottom-right-radius: 115px;
}

/***** Grids *****/
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-gap-60 {
    grid-gap: 60px;
}

/***** Hovers *****/
.hover\:text-white:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .md\:max-w-600 {
        max-width: 600px;
    }

    .md\:text-20 {
        font-size: 20px;
    }

    .md\:text-16 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .sm\:relative {
        position: relative;
    }

    .sm\:border-radius-0 {
        border-radius: 0;
    }

    .sm\:transform-0 {
        transform: translate(0);
    }

    .sm\:t-0 {
        top: 0;
    }

    .sm\:max-w-full {
        max-width: 100%;
    }

    .sm\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.btn-main a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    text-align: center;
    color: #fff;
    border: 1px solid var(--clr-secondary);
    background-color: var(--clr-secondary);
    padding: 16px 52px;
    display: inline-block;
    min-width: 171px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.15s linear;
}

    .btn-main a:hover {
        opacity: 0.7;
    }

.btn-main.inverse a {
    color: var(--clr-secondary);
    background-color: #fff;
}

.text-align-center {
    text-align: center !important;
}

.sub-title {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 22px;
    color: var(--clr-font);
    padding: 0 0 48px 0;
}

.title-pages {
    padding-top: 50px;
}

    .title-pages h1,
    .title-pages h2 {
        font-size: 32px;
        font-weight: 500;
        line-height: 42px;
        /* margin: 0;
    padding: 8px 0 8px 15px;
    border-left: 2px solid var(--clr-primary); */
        padding: 8px 0 8px 0;
        margin-bottom: 18px;
        text-align: left;
    }
/***** Footer *****/
/*--------------------------------------------------------------------------------------------------*/
footer {
    padding: 0 15px;
    border-top: 4px solid var(--clr-primary);
}

.footer-container {
    padding: 45px 15px 39px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-blocks {
    display: grid;
    grid-template-columns: 215px 207px 180px;
    grid-gap: 125px;
}

.footer-block-body > :not(:last-child) {
    margin-bottom: 16px;
}

.footer-block-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    color: var(--clr-primary);
    margin: 0 0 24px 0;
}

.footer-block-subtitle {
    opacity: 0.6;
    font-size: 14px;
}

    .footer-block-subtitle.sm {
        opacity: 0.6;
        font-size: 12px;
    }

.footer-block-link a {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 19px;
    color: var(--clr-font);
    text-decoration: none;
    font-weight: 500;
}

.footer-social-icons {
    display: grid;
    grid-template-columns: repeat(3, 25px);
    align-items: flex-end;
    grid-gap: 20px;
    margin: 0 0 20px 0;
    justify-content: flex-end;
}

.footer-social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-label a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
    color: var(--clr-font);
    text-decoration: none;
}

    .footer-block-link a:hover,
    .footer-social-label a:hover {
        color: var(--clr-secondary);
    }

.footer-down-logo {
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 28px;
    color: var(--clr-primary);
}

.footer-down {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eeeeee;
    margin: 0 auto;
    position: relative;
	
	
    width: 100%;
}

.footer-down-links {
    display: flex;
    align-items: center;
    text-align: center;
}

.footer-down-link a {
    font-size: 12px;
    color: var(--clr-font);
    text-decoration: none;
}

    .footer-down-link a:hover {
        color: var(--clr-secondary);
    }

.footer-down-link {
    padding: 0 15px;
    line-height: 15px;
}

.footer-down-links > :not(:last-child) {
    border-right: 1px solid var(--clr-font);
}

.footer-copyright {
    font-size: 12px;
    color: var(--clr-font);
    position: absolute;
    left: 0;
}

.footer-blocks-1024 {
    display: flex;
    justify-content: space-between;
}

.footer-block-title-1024 {
    color: var(--clr-font);
    font-size: 14px;
}

.footer-block-link-1024.lg {
    margin: 0 0 14px 0;
}

    .footer-block-link-1024.lg a {
        font-size: 32px;
        font-weight: 500;
        color: var(--clr-primary);
    }

.footer-block-link-1024.mail {
    text-align: left;
    margin-bottom: 0;
}

    .footer-block-link-1024.mail a {
        color: var(--clr-font);
        font-size: 16px;
    }

.footer-block-link-1024 a {
    font-size: 16px;
    color: var(--clr-font);
}

.footer-block-body-1024 > :not(:last-child) {
    margin-bottom: 16px;
}

/***** Pages *****/
/*--------------------------------------------------------------------------------------------------*/
.title-lg {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 42px;
}

.coop {
    margin: 40px 0 48px;
    display: grid;
    grid-template-columns: 1fr 172px;
    grid-gap: 17%;
}

/***** Calendar Home *****/
@media (min-width: 768px) and (max-width: 1140px) {
    .overflow-table {
        overflow-y: auto;
    }

    .calendar-table {
        width: 1140px;
    }
}

.calendar-table-head {
    background-color: #eeeeee;
    padding: 30px 16px;
    display: grid;
    grid-template-columns: 200px 95px 140px 85px 85px 100px 110px 92px;
    grid-gap: 23px;
    place-items: center;
    align-items: flex-start;
}

    .calendar-table-head > div {
        font-size: 16px;
        font-weight: 500;
        line-height: 22px;
        text-align: center;
    }

.calendar-row-title {
    opacity: 0.6;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    margin: 0 0 10px;
}

.calendar-row-content {
    font-size: 14px;
    font-weight: 700;
}

    .calendar-row-content i {
        font-family: "FontAwesome" !important;
        font-weight: 300;
        font-size: 16px;
    }

.calendar-row-btn.btn-main a {
    width: 100%;
    min-width: unset;
    padding: 10px;
    max-width: 100px;
}

.calendar-btn {
    text-align: center;
    margin: 55px 0 0;
}

/***** Calendar Page *****/
#calendar {
    min-height: 863px;
    position: relative;
    padding-bottom: 100px;
}

.fc-toolbar {
    margin-bottom: 16px !important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    .fc-toolbar .fc-left {
        float: none !important;
    }

    .fc-toolbar .fc-right {
        float: none !important;
        align-self: center;
        grid-column: 3/4;
        grid-row: 1/1;
        justify-self: flex-end;
        min-width: 180px;
    }

    .fc-toolbar .fc-center {
        display: block !important;
        grid-column: 2/3;
        grid-row: 1/1;
        justify-self: center;
    }

        .fc-toolbar .fc-center > div {
            width: 338px;
            height: 66px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #dfe4e8;
            border-radius: 6.4px;
        }

    .fc-toolbar .callendarHeader,
    .fc-toolbar .fc-right button {
        opacity: 0.6;
        font-size: 16px;
        line-height: 24px;
    }

    .fc-toolbar .fc-right button {
        border: 1px solid #dfe4e8;
        height: 66px;
        border-radius: 6.4px;
    }

        .fc-toolbar .fc-right button:not(:last-child) {
            margin-right: 16px;
        }

.fc button .fc-icon {
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    vertical-align: unset !important;
    width: 20%;
    height: 30%;
    position: absolute !important;
}

.fc-icon-left-single-arrow:after,
.fc-icon-right-single-arrow:after {
    content: "" !important;
    font-size: 16px !important;
    top: 50% !important;
    left: 50% !important;
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    position: absolute !important;
}

.fc-icon-left-single-arrow:after {
    background-image: url(/CMS/site/images/marker-left.svg);
}

.fc-icon-right-single-arrow:after {
    background-image: url(/CMS/site/images/marker-right.svg);
}

.fc-state-default {
    background-color: unset !important;
}

.fc-toolbar .fc-center button {
    height: 100% !important;
    width: 50px !important;
}

.fc-state-hover {
    background-position: center !important;
}

.fc-toolbar button:focus {
    outline: none !important;
}

.fc-toolbar .fc-center .fc-state-down,
.fc-toolbar .fc-center .fc-state-active {
    box-shadow: unset !important;
    border: unset !important;
}

.fc-state-down,
.fc-state-active {
    border: 1px solid var(--clr-secondary) !important;
}

.fc-toolbar .fc-center .fc-state-default {
    border-color: transparent !important;
}

.fc-state-default {
    background-image: unset !important;
    box-shadow: unset !important;
}

.fc-unthemed thead tr th {
    display: none;
}

.fc-unthemed td {
    border: 1px solid #dfe4e8;
}

.fc-unthemed .fc-today {
    background: #fceaeb !important;
}

.fc-event {
    border: unset !important;
    background-color: unset !important;
}

.fc-content:hover .fc-time,
.fc-content:hover .fc-title {
    color: #000;
    text-decoration: underline;
}

/***** Library *******/
/*--------------------------------------------------------------------------------------------------*/
.library-container-top {
    background-color: #eeeeee;
    padding-bottom: 35px;
}

.library-search-group {
    margin-top: 40px;
    max-width: 620px;
    margin: 0 auto;
}

.library-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.library-search-filters-group {
    display: grid;
    grid-template-columns: 1fr 210px;
    grid-gap: 16px;
}

.library-year-show {
    display: grid;
    grid-template-columns: 97px 97px;
    grid-gap: 16px;
}

.library-search {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.library-year,
.library-show {
    height: 36px;
    width: 97px;
}

.library-search input {
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    height: 36px;
    width: 100%;
    padding: 8px 23px;
    background-color: transparent;
    color: var(--clr-secondary);
}

    .library-search input::-webkit-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::-moz-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input:-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

.library-search button {
    background-image: url(/CMS/site/images/search.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    z-index: 0;
}

.library-year select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    padding: 0 16px;
    color: var(--clr-secondary);
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/CMS/site/images/expand.svg);
    background-repeat: no-repeat;
    background-position: 65px 14px;
    font-weight: 500;
}

.library-show button {
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    color: #fff;
    background-color: var(--clr-secondary);
    font-size: 14px;
    font-weight: 500;
}

    .library-show button:hover,
    .library-year select:hover {
        opacity: 0.7;
    }

    .library-search input:focus,
    .library-search button:focus,
    .library-year select:focus,
    .library-show button:focus {
        outline: none;
    }

.library-container-bottom {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-gap: 25px;
    margin-top: 70px;
}

.MenuFLLayers {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .MenuFLLayers li {
        position: relative;
        cursor: pointer;
    }

    /*first level*/
    .MenuFLLayers > li {
        padding-left: 27px;
        margin-bottom: 20px;
    }

        .MenuFLLayers > li:last-child {
            margin-bottom: 0;
        }

        .MenuFLLayers > li .arrow-indicator {
            position: absolute;
            content: "";
            background-image: url(/CMS/site/images/dropdown-collapse.svg);
            width: 10px;
            height: 10px;
            background-repeat: no-repeat;
            background-position: center;
            top: 5px;
            left: 0px;
        }

        .MenuFLLayers > li.active .arrow-indicator {
            background-image: url(/CMS/site/images/dropdown-expand.svg);
        }

        /* .MenuFLLayers>li::before {
    position: absolute;
    content: "";
    background-image: url(/CMS/site/images/dropdown-collapse.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    top: 5px;
    left: 0px;
} */

        /* .MenuFLLayers>li.active::before {
    background-image: url(/CMS/site/images/dropdown-expand.svg);
} */

        .MenuFLLayers > li span {
            font-size: 14px;
            font-weight: 500;
            line-height: 18px;
            /* opacity: 0.6; */
        }

        .MenuFLLayers > li > span {
            opacity: 1;
        }

        /*end first level*/

        /*second level*/
        .MenuFLLayers > li > ul {
            list-style: none;
            display: none;
        }

            .MenuFLLayers > li > ul > li {
                padding-bottom: 15px;
                padding-left: 35px;
            }

                .MenuFLLayers > li > ul > li:first-child {
                    padding-top: 15px;
                }

                .MenuFLLayers > li > ul > li .check-indicator {
                    position: absolute;
                    content: "";
                    background-image: url(/CMS/site/images/checkbox-off.svg);
                    width: 20px;
                    height: 20px;
                    background-repeat: no-repeat;
                    background-position: center;
                    left: 0px;
                }

                .MenuFLLayers > li > ul > li.active .check-indicator {
                    background-image: url(/CMS/site/images/checkbox-on.svg);
                }

                /* .MenuFLLayers>li>ul>li::before {
    position: absolute;
    content: "";
    background-image: url(/CMS/site/images/checkbox-off.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
}

.MenuFLLayers>li>ul>li.active::before {
    background-image: url(/CMS/site/images/checkbox-on.svg);
} */

                /*end second level*/

                /*third level*/
                .MenuFLLayers > li > ul > li > ul {
                    list-style: none;
                }

                    .MenuFLLayers > li > ul > li > ul > li {
                        padding-bottom: 15px;
                        padding-left: 35px;
                    }

                        .MenuFLLayers > li > ul > li > ul > li:first-child {
                            padding-top: 15px;
                        }

                        .MenuFLLayers > li > ul > li > ul > li::before {
                            position: absolute;
                            content: "";
                            background-image: url(/CMS/site/images/checkbox-off.svg);
                            width: 20px;
                            height: 20px;
                            background-repeat: no-repeat;
                            background-position: center;
                            left: 0px;
                        }

                        .MenuFLLayers > li > ul > li > ul > li.active::before {
                            background-image: url(/CMS/site/images/checkbox-on.svg);
                        }

/*end third level*/
.library-table-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 40px;
    grid-gap: 16px;
}

.library-title-filter-group {
    margin-bottom: 16px;
    display: flex;
    width: 100%;
}

    .library-title-filter-group > :not(:first-child) {
        margin-left: 29px;
    }

.library-title-filter-group-2 {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.library-table-head .library-title {
    margin: 0;
    line-height: inherit;
}

.library-table-head label {
    margin: 0;
}

.library-table-show {
    position: relative;
    height: 36px;
    margin: 0 0 0 130px;
}

    .library-table-show::before {
        position: absolute;
        content: "ανά:";
        width: 20px;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: 16px;
        color: var(--clr-secondary);
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        display: flex;
        align-items: center;
    }

    .library-table-show select {
        background-color: transparent;
        border: 1px solid var(--clr-secondary);
        border-radius: 4px;
        padding: 0 16px 0 44px;
        color: var(--clr-secondary);
        font-size: 14px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url(/CMS/site/images/expand.svg);
        background-repeat: no-repeat;
        background-position: 80px 14px;
        height: 36px;
        width: 113px;
        font-weight: 500;
    }

.library-table-search input {
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    height: 36px;
    width: 100%;
    padding: 8px 23px;
    background-color: transparent;
    color: var(--clr-secondary);
}

    .library-table-search input::-webkit-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::-moz-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input:-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

.library-table-paging {
    width: 140px;
}

    .library-table-paging input {
        width: 30px;
        border: none;
        text-align: center;
    }

        .library-table-paging input:focus {
            outline: none;
            border-bottom: 1px solid var(--clr-secondary);
        }

    .library-table-paging .paging_input {
        display: grid;
        grid-template-columns: 25px 0 30px 40px 25px;
        border: 1px solid var(--clr-secondary);
        border-radius: 4px;
        height: 36px;
        width: 100%;
        place-items: center;
        padding: 0 7px;
    }

        .library-table-paging .paging_input > * {
            font-size: 18px;
            color: var(--clr-secondary);
        }

    .library-table-paging .previous,
    .library-table-paging .next {
        position: relative;
        font-size: 0;
        cursor: pointer;
    }

        .library-table-paging .previous::before {
            content: "❮";
            font-size: 18px;
        }

        .library-table-paging .next::before {
            content: "❯";
            font-size: 18px;
        }

.library-table-show select:focus,
.library-table-search input:focus,
#sample-table-2 thead th {
    outline: none;
}

#sample-table-2_wrapper {
    position: relative;
}

#sample-table-2_processing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.6);
    display: block;
    justify-content: center;
    z-index: 2;
}

    #sample-table-2_processing span {
        /* font-size: 22px;
    font-weight: 500;
    line-height: 27px; */
        position: absolute;
        top: 100px;
        display: flex;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
    }

        #sample-table-2_processing span i {
            background-image: url(/CMS/site/images/spinner.png);
            background-repeat: no-repeat;
            width: 20px;
            height: 20px;
            display: inline-block;
            margin: 0 0 0 10px;
            -webkit-animation: fa-spin 2s infinite linear;
            animation: fa-spin 2s infinite linear;
        }

@-webkit-keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

#sample-table-2,
#sample-table-2 * {
    border: unset !important;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-hover > tbody > tr:hover {
    background-color: transparent !important;
}

#sample-table-2 thead tr {
    background-color: #eeeeee;
}

#sample-table-2 thead th {
    padding: 28px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
}

#sample-table-2 tbody td {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    padding: 22px 16px;
}

    #sample-table-2 tbody td:last-child {
        max-width: 250px;
    }

        #sample-table-2 tbody td:last-child a {
            word-break: break-all;
        }

#sample-table-2 tbody tr {
    border-bottom: 0.5px solid #b5b5b5 !important;
}

#sample-table-2 a {
    color: var(--clr-secondary);
    text-decoration: none;
}

.library-results .upProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/***** Accordion *******/
/*--------------------------------------------------------------------------------------------------*/
.accordion-section-content {
    display: none;
    padding: 0 16px;
}

.accordion-title {
    position: relative;
}

.accordion-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 23px;
    align-items: center;
    padding: 0 16px;
}

.accordion-section-content {
    display: grid;
    grid-template-columns: 95px 140px 85px 85px 100px 110px 92px;
    padding: 0;
    grid-gap: 23px;
    place-items: center;
    text-align: center;
}

    .accordion-section-content > div {
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 19px;
        color: var(--clr-font);
    }

    .accordion-section-content > :nth-child(4) {
        text-align: center;
    }

    .accordion-section-content > div:last-child .calendar-row-title {
        display: none;
    }

    .accordion-section-content > div:last-child {
        border: none;
        padding-top: 0;
    }

span.arrows {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    width: 12px;
    height: 12px;
}

.arrow-props {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-top: 0;
    border-right: 2px solid var(--clr-secondary);
    border-left: 0;
    border-bottom: 2px solid var(--clr-secondary);
}

span.arrow-down {
    transform: rotate(45deg);
    top: -5px;
}

span.arrow-up {
    transform: rotate(-135deg);
    top: 5px;
}

.accordion-title .arrow-up {
    display: none;
}

.accordion-title.active .arrow-up {
    display: inline-block;
}

.accordion-title.active .arrow-down {
    display: none;
}
/***BlogArticles****/
.BlogCategoriesUL {
    display: none
}

.ViewBlogContent {
    max-width: 100%
}
.imgArticle {
    display: none;
}
/***** News *****/
/*--------------------------------------------------------------------------------------------------*/


.news-container {
    padding: 0 15px;
}

.news-item {
    position: relative;
    border-bottom: 1px solid rgba(232, 232, 232, 0.8);
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 197px;
    grid-gap: 24px;
    align-items: flex-start;
    transition: all 0.15s linear;
}

    .news-item:hover {
        box-shadow: 0 0px 30px 0px rgba(138, 138, 138, 0.1);
    }

    .news-item a {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.news-date {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 19px;
}

.news-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 27px;
}

.news-item .btn-main a {
    position: relative;
}

.news-item:hover .btn-main a {
    background-color: var(--clr-secondary);
    color: #fff;
}

/***** News Details *******/
/*--------------------------------------------------------------------------------------------------*/
.news-details-img {
    display: none;
}

.news-details-content {
    padding-top: 48px;
}

    .news-details-content > div {
        font-size: 16px;
        letter-spacing: 0;
        line-height: 24px;
        color: var(--clr-font);
    }

/***** Library *****/
.library {
    background-color: #eeeeee;
}

/***** Video *****/
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
    margin-bottom: 16px;
}

.video-block {
    padding-bottom: 57%;
    background-color: #fff;
    position: relative;
}

    .video-block iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/***** Download *****/
.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
}

.download-block {
    display: flex;
    position: relative;
}

    .download-block a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .download-block:hover {
        box-shadow: 0 0px 30px 0px rgba(138, 138, 138, 0.1);
    }

.download-block-content {
    background-color: #ffffff;
    padding: 16px 32px 37px;
    flex: 1;
}

.download-block-date {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
}

.download-block-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 25px;
}

.download-block-btn {
    width: 96px;
    background-color: var(--clr-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}


/***** Register Login *****/
/*--------------------------------------------------------------------------------------------------*/
.class-register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 100px 0 0 0;
}

.class-info-row {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    color: var(--clr-font);
}

.class-info-label {
    font-weight: bold;
    margin: 0 10px 0 0;
}

.class-register-container .RegisterButton {
    max-width: 200px;
    margin: 25px auto 0;
    transition: all 0.15s linear;
}

    .class-register-container .RegisterButton:hover {
        background-color: var(--clr-secondary);
    }

        .class-register-container .RegisterButton:hover a {
            color: #fff;
        }

.class-register-block {
    background-color: #eeeeee !important;
    padding: 30px;
    border-radius: 6.4px;
}

    .class-register-block .LoginBox {
        background-color: transparent;
    }
/***** Hero *****/
.hero-section {
    padding-top: 53%;
    border-bottom-right-radius: 140px;
    background-image: url(/CMS/site/images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    max-width: 802px;
    width: 97%;
}

.hero-section-block-text {
    text-align: center;
}

.hero-section-block a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 18px;
    text-align: center;
    color: #fff;
    border: 1px solid var(--clr-secondary);
    background-color: var(--clr-secondary);
    padding: 16px 52px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.15s linear;
}

    .hero-section-block a:hover {
        opacity: 0.7;
    }

@media (max-width: 480px) {
    .hero-section-block {
        background-color: unset;
        padding: unset;
        width: 92%;
    }
}

/*Datepicker*/
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:focus,
.datepicker table tr td.active:hover:focus,
.datepicker table tr td.active.disabled:focus,
.datepicker table tr td.active.disabled:hover:focus,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td.active,
.open .dropdown-toggle.datepicker table tr td.active:hover,
.open .dropdown-toggle.datepicker table tr td.active.disabled,
.open .dropdown-toggle.datepicker table tr td.active.disabled:hover,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:focus,
.datepicker table tr td span.active:hover:focus,
.datepicker table tr td span.active.disabled:focus,
.datepicker table tr td span.active.disabled:hover:focus,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.open .dropdown-toggle.datepicker table tr td span.active,
.open .dropdown-toggle.datepicker table tr td span.active:hover,
.open .dropdown-toggle.datepicker table tr td span.active.disabled,
.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-color: var(--clr-primary) !important;
    border-color: var(--clr-primary) !important;
}

.login-position-control {
    position: absolute;
    max-width: 1600px;
    width: 100%;
    height: 612px;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
    top: 0;
    padding: 0 15px;
    display: none;
}

/*--------------------------------------------------------------------------------------------------*/
/***** HEADER STRACTURE *****/
header {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 7px -4px rgba(0, 0, 0, 0.2);
    z-index: 99;
    height: 93px;
}
    header::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 7px;
        bottom: 0;
        left: 0;
        background-color: var(--clr-primary);
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.19);
    }
.HeaderSupportLogin {
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
}

.logo {
    height: 63px;
}

    .logo img {
        height: 100%;
    }

.HeaderFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.LoginBtnItem a,
.LoginBtnItem span {
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
    padding: 9px 42px;
}

.LoginBtnItem:hover a,
.LoginBtnItem:hover span {
    color: var(--clr-primary);
}

.LoginBtnItem {
    font-size: 16px;
    font-family: SegoeLight;
    background-color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    color: #fff;
    cursor: pointer;
}

    .LoginBtnItem:hover {
        background-color: transparent;
        color: var(--clr-primary);
    }

.LoginBtnContainer a {
    text-decoration: none;
}

/*--------------------------------------------------------------------------------------------------*/
/***** pnlMenu *****/

#ctl00_pnlMenu .main-menu > ul > li:first-child {
    display: none;
}
#ctl00_pnlMenu .main-menu > ul > li {
    padding: 0px 10px;
    line-height: 15px;
}

  

    #ctl00_pnlMenu .main-menu > ul > li:last-child {
        padding-right: 0;
    }

    #ctl00_pnlMenu .main-menu > ul > li > a {
        font-family: SegoeSBold;
        font-size: 16px;
        color: #2c2a29 !important;
        padding: 5px 10px;
        transition: font-size 200ms ease-in;
    }

    #ctl00_pnlMenu .main-menu > ul > li.hasChildren > ul > li > a {
        font-size: 13px;
        width: 100%;
        color: #175175 !important;
    }
.main-menu ul li.active, .main-menu ul li:hover {
    background-color: none !important;
}
   
    #ctl00_pnlMenu .main-menu > ul > li:hover > a,
    #ctl00_pnlMenu .main-menu > ul > li.active > a,
    #ctl00_pnlMenu .main-menu > ul > li.hasChildren > ul > li:hover > a,
    #ctl00_pnlMenu .main-menu > ul > li.hasChildren > ul > li.active > a {
        color: var(--clr-primary) !important;
    }

/*--------------------------------------------------------------------------------------------------*/
/***** HEADER FOOTER *****/
.main-menu ul {
    max-width: 100%;
}

.main-menu ul {
    margin-bottom: 0;
}

.main-menu > ul > li > a:before,
.main-menu > ul > li > a:after {
    display: none;
}

.main-menu ul li.active,
.main-menu ul li:hover {
    background-color: transparent;
}

.main-menu > ul > li {
    margin: 0;
}

    .main-menu > ul > li:last-child {
        margin: 0;
    }

.main-menu ul li ul {
    border-radius: 0;
    border: none;
    background-color: transparent;
}

.main-menu > ul > li:hover > ul > li {
    background-color: #fff;
}

.main-menu > ul > li:hover > ul {
    padding-top: 0;
}

.main-menu ul li ul li a {
    padding: 8px 30px 8px 30px;
}

.main-menu > ul > li.hasChildren {
    padding-right: 0;
}

/*--------------------------------------------------------------------------------------------------*/
/***** FOOTER STRUCTURE *****/
footer {
    border-top: 2px solid var(--clr-primary);
}

.footer__social {
    background-color: #dbdbdb;
    padding: 30px 15px 25px 15px;
    text-align: center;
    display: none;
}

.follow {
    font-size: 14px;
    font-weight: 100;
    color: #5e5e5e;
}

.footer_nav {
    background-color: #ffffff;
    padding: 35px 15px 50px 15px;
}

.footer_nav_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.footer_info_text {
    margin-top: 25px;
}

.footer_info_block {
    font-size: 14px;
    text-align: right;
    color: #5e5e5e;
    line-height: 23px;
}

    .footer_info_block a {
        color: #5e5e5e;
        text-decoration: none;
    }

.footer_info {
    max-width: 280px;
    padding-right: 50px;
    border-right: 2px solid #303030;
}

    .footer_info img {
        width: 200px;
    }

.footer_menu {
    max-width: 370px;
    width: 100%;
    margin-left: 50px;
    display: flex;
    justify-content: space-between;
    margin-right: auto;
}

.footer_right {
    border: 1px solid #303030;
    padding: 16px 22px;
    max-width: 367px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer_nav_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_right_text {
    font-size: 14px;
    color: #5e5e5e;
    text-align: center;
}

.footer_right_awards {
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .footer_right_awards > img {
        display: block;
    }

.footer_down {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer_down a {
        color: var(--clr-primary);
        text-decoration: none;
    }

footer .megaWrapper {
    padding: 7px 15px;
}

/*--------------------------------------------------------------------------------------------------*/
/***** pnlFooter *****/
#ctl00_pnlFooter .main-menu > ul,
#ctl00_pnlFooterSecond .main-menu > ul {
    margin-top: 0 !important;
}

    #ctl00_pnlFooter .main-menu > ul > li,
    #ctl00_pnlFooterSecond .main-menu > ul > li {
        width: 100%;
        margin-bottom: 10px;
    }

        #ctl00_pnlFooter .main-menu > ul > li > a,
        #ctl00_pnlFooterSecond .main-menu > ul > li > a {
            font-size: 14px;
            color: #5e5e5e;
            margin: 0;
        }

        #ctl00_pnlFooter .main-menu > ul > li.active > a,
        #ctl00_pnlFooterSecond .main-menu > ul > li.active > a,
        #ctl00_pnlFooter .main-menu > ul > li:hover > a,
        #ctl00_pnlFooterSecond .main-menu > ul > li:hover > a {
            color: var(--clr-primary);
        }

/*--------------------------------------------------------------------------------------------------*/
/***** SOCIAL RESET *****/
.social_media ul li a {
    background: #fff;
}

    .social_media ul li a:hover {
        background-color: #f3f3f3;
    }

.social_media li a i {
    color: var(--clr-primary);
}

.social_media ul li a:last-child {
    margin: 0;
}

/*--------------------------------------------------------------------------------------------------*/
/***PRODUCTS****/
.product-page-grid a {
    text-decoration: none;
}

.product-page-grid {
    max-width: 1230px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
    grid-template-columns: repeat(4, minmax(296px, 1fr));
    grid-gap: 15px;
    justify-content: space-between;
    padding-top: 50px;
}

.item-box-head {
    padding: 20px 23px;
    background-color: var(--clr-primary);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.item-box-body {
    position: relative;
}

.item-box-image {
    /* min-height: 385px; */
    /* height: 100%; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    position: relative;
    padding-top: 130%;
}

    .item-box-image img {
        width: 100%;
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

.item-box-notification {
    position: absolute;
    left: -3px;
    bottom: 30px;
    padding: 10px 20px;
    background-color: var(--clr-primary);
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

    .item-box-notification span {
        font-size: 16px !important;
        font-weight: 700;
    }

.item-box-footer {
    background-color: #f2f2f2;
    padding: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icons {
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    width: 100%;
}

.footer-icon img {
    max-height: 26px;
}

.footer-price {
    font-size: 14px;
    font-weight: 300;
    color: #6d6d6d;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    margin-top: 3px;
}

    .footer-price span {
        font-size: 20px;
        font-weight: 700;
        color: var(--clr-primary);
        margin-left: 5px;
        margin-top: -3px;
        position: relative;
        padding-right: 16px;
    }

        .footer-price span::after {
            position: absolute;
            content: "€";
            right: 0;
        }

/*FullWidthBox*/
.ProductBuySync,
.ProductBuyAsync {
    padding-top: 94px;
}

.ProductTitleASync,
.ProductTitleSync {
    color: var(--clr-primary);
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
    margin: 0px;
    padding: 0 0 21px;
}

.LineThrough {
    text-decoration: line-through;
}

.FullWidthBox {
    background-color: #ebebeb;
    border-radius: 5px;
    margin-bottom: 10px;
}

.BoxDates {
    background-color: #164b77;
    border-radius: 5px 0px 0px 5px;
}

.BoxDates {
    margin: 0px;
    padding: 5px 25px;
    color: #524a44;
    min-width: 183px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .BoxDates span {
        color: #fff;
    }

.BoxDatesDayNb {
    font-size: 26px;
}

.BoxBtn {
    padding: 20px 30px;
    flex-direction: column;
    justify-content: center;
}

    .BoxBtn > * {
        margin: 5px;
    }

    .BoxBtn .btn.btn-danger {
        padding: 6px 26px;
    }

.BoxItem div {
    margin-left: auto;
    margin-right: auto;
}

.BoxTitle {
    font-weight: 700;
}

.BoxLabel {
    margin: 0px;
}

.BoxItem {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 40px;
    border-right: solid 2px #dcdcdc;
    text-align: center;
    width: 100%;
}

.btn-success {
    color: #151b1e;
    background-color: #79c447;
    border-color: #79c447;
}

/*End FullWidthBox*/

/*ViewProduct*/
.product-page-container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 80px 0 125px;
}

.details-top {
    display: flex;
    justify-content: space-between;
}

.details-left {
    flex-basis: 70%;
}

.details-right {
    flex-basis: 25%;
}

.ProductTitle {
    font-size: 34px;
    font-weight: 700;
    color: var(--clr-primary);
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .ProductTitle::after {
        position: absolute;
        content: "";
        height: 4px;
        max-width: 135px;
        width: 100%;
        background-color: var(--clr-primary);
        bottom: 0;
        left: 0;
    }

.details-right > div {
    position: relative;
}

    .details-right > div:first-child {
        margin-bottom: 30px;
    }

.info-table {
    margin-top: 30px;
    position: relative;
}

.info-table-head {
    background-color: #ebebeb;
    margin-bottom: 8px;
    padding-left: 40px;
}

.info-table-body {
    background-color: #ebebeb;
    padding-left: 40px;
}

.info-table-head .info-cell {
    font-size: 15px;
    font-weight: 700;
    color: #004467;
    padding: 8px 0;
}

.info-table-body .info-cell {
    font-size: 15px;
    font-weight: 500;
    color: #004467;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

    .info-table-body .info-cell span:first-child {
        margin-right: 10px;
    }

.info-row {
    display: flex;
}

.info-cell {
    min-width: 280px;
}

.ProductBuyBtnDiv {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--clr-primary);
    padding: 24px 53px;
    display: inline-block;
}

.ProductBuyBtn {
    position: absolute;
    right: 30px;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ProductBuyBtnPrice {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
    position: relative;
    margin-bottom: 0;
    padding-right: 20px;
}

    .ProductBuyBtnPrice::after {
        position: absolute;
        content: "€";
        right: 0;
    }

.ProductBuyBtnPriceLineThrough {
    text-decoration: line-through;
    font-size: 14px;
}

.ProductBuyBtnPriceOffer {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
    position: relative;
    margin-bottom: 20px;
    padding-right: 20px;
}

    .ProductBuyBtnPriceOffer::after {
        position: absolute;
        content: "€";
        right: 0;
    }

.ProductInterestHeader {
    background-color: var(--clr-primary);
    padding: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    font-weight: 300;
}

.ProductInterestContainer {
    max-width: 300px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 5px;
}

.ProductInterestWraper input {
    margin-bottom: 10px;
}

.ProductInterestWraper {
    padding: 10px;
}

.ProductCMBHeader {
    background-color: var(--clr-primary);
    padding: 10px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    font-weight: 300;
}

.ProductCMBContainer {
    max-width: 300px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 5px;
}

.ProductCMBWraper input {
    margin-bottom: 10px;
}

.ProductCMBWraper {
    padding: 10px;
}

.ProductBtn {
    background-color: var(--clr-primary);
    text-align: center;
    padding: 10px;
}

    .ProductBtn a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
    }

/*End ViewProduct*/

/***END OF PRODUCTS**/
/***CART**/
.CartHeader {
    background-color: #000;
    padding: 10px;
    color: #fff;
}

.CartItem {
    padding-bottom: 30px;
    padding-top: 30px;
    border-bottom: solid 1px #ddd;
}

.CartFooter {
    padding-top: 30px;
    padding-bottom: 30px;
}

.CartFooterContainer {
    background-color: #ddd;
}

.CartFooterContainer {
    background-color: #ddd;
    padding: 10px;
    font-size: 20px;
    font-weight: bold !important;
}

.CartServiceCbx {
    font-size: 20px;
}

.CartBtn {
    background-color: var(--clr-primary);
    text-align: center;
    padding: 10px;
    color: #fff;
}

    .CartBtn a {
        color: #fff;
        text-decoration: none;
    }

/***END OF CART**/
/*** CHECKOUT ***/
.LogArea {
    width: 50%;
}

.SignArea {
    width: 50%;
}

.CheckOutBtn {
    margin-top: 10px;
    background-color: var(--clr-primary);
    text-align: center;
}

    .CheckOutBtn a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
    }

.wizard > .actions a,
.wizard > .actions a:hover {
    margin-top: 10px;
    background-color: var(--clr-primary);
    text-align: center;
    border-radius: 0px;
}

/***END OF CHECKOUT***/

/*--------------------------------------------------------------------------------------------------*/
/***** LOGIN *****/
.LoginAvatar {
    width: 68px;
    height: 68px;
    background-color: #fcd6d9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}
.LoginBox {
    background-color: transparent;
}

.LoginArea2 {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    border: 0;
    width: 100%;
    background-color: #fff;
}
.LoginArea.active {
    display: block !important;
}
.LoginArea {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1000;
    width: 300px;
    background-color: transparent;
    display: none;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
}

#ctl00_DivUserNotLoggedIn {
    box-shadow: unset;
}

.login-layout .widget-box .widget-main {
    background-color: rgba(255, 255, 255, 1);
    padding: 16px;
}

.login-box .toolbar,
.forgot-box .toolbar {
    background-color: rgba(255, 255, 255, 1);
}

.light-login .widget-box .toolbar {
    border-top-width: unset;
    padding: 0 50px 30px 50px;
    border-radius: unset;
}


.labeldiv input {
	width: 100%;
	border: 1px solid var(--clr-secondary);
	border-radius: 4px;
	height: 36px;
	padding: 0 16px;
	font-weight: 300;
	color: var(--clr-secondary);
}

.labeldiv {
	width: 100%;
}

.labeldiv input::-webkit-input-placeholder {
	color: var(--clr-secondary);
	font-size: 14px;
}

.labeldiv input::-moz-placeholder {
	color: var(--clr-secondary);
	font-size: 14px;
}

.labeldiv input:-ms-input-placeholder {
	color: var(--clr-secondary);
	font-size: 14px;
}

.labeldiv input::-ms-input-placeholder {
	color: var(--clr-secondary);
	font-size: 14px;
}

.labeldiv input::placeholder {
	color: var(--clr-secondary);
	font-size: 14px;
}

.labeldiv input:focus,
.LoginArea button {
	outline: none !important;
}

.LoginArea button {
	margin: 0;
	width: 100%;
	height: 36px;
	background-color: var(--clr-secondary);
	border: 1px solid var(--clr-secondary);
	border-radius: 4px !important;
}

.LoginArea button span {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
}

.LoginArea button:hover {
	opacity: 0.7;
}

.toolbar a {
    font-size: 13px;
    color: #60676c;
    font-family: SegoeLight;
    text-decoration: none;
}

.login_log {
    font-size: 23px;
    color: var(--clr-primary);
    font-family: SegoeLight;
    padding: 15px 0 40px 0;
}

.LogedinBtn .fa-power-off:before {
    background-color: var(--clr-primary);
}

.login_top {
    font-size: 13px;
    font-family: SegoeLight;
    color: #60676c;
    margin-bottom: 30px;
}

    .login_top a {
        color: var(--clr-primary);
        font-family: SegoeSBold;
        text-decoration: none;
        margin-left: 5px;
    }

.LogedinBtn a {
    color: #60676c;
    text-decoration: none;
    font-family: SegoeLight;
}

#ctl00_DivUserLoggedIn,
#ctl00_cphMain_DivUserLoggedIn {
    background: rgba(255, 255, 255, 1);
}

/*--------------------------------------------------------------------------------------------------*/
/***** MAIN CONTENT *****/
#PlatformHome {
    margin-left: -15px;
    margin-right: -15px;
}

.welcome-outer {
    background-color: #fff;
}

.welcome-container {
    max-width: 1040px;
    width: 100%;
    padding: 97px 15px 73px 15px;
    margin: 0 auto;
    text-align: center;
}

.logo-melo {
    margin: 35px 0 30px 0;
}

.welcome-text {
    text-align: justify;
    padding-top: 27px;
    border-top: 1px solid var(--clr-primary);
    margin-bottom: 60px;
}

    .welcome-text p {
        font-size: 18px;
        text-align: center;
        color: #000;
    }

.main-bg {
    position: relative;
    padding-top: 500px;
    background-image: url(/CMS/site/images/main-bg-template-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -1px;
    background-position: center;
}

.main-bg-under {
    position: relative;
}

.banner-support {
    position: absolute;
    bottom: 0;
    max-width: 1350px;
    width: 100%;
    display: flex;
    height: 395px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
}

.nbr-sprt-left {
    max-width: 700px;
    width: 100%;
}

.banner-transparent {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--clr-primary);
    opacity: 0.9;
    padding: 20px;
}

    .banner-transparent::before {
        position: absolute;
        content: "";
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: inherit;
    }

.banner-text {
    font-size: 25px;
}

.banner-text {
    color: #ffffff;
}

@media (max-width: 1300px) {
    .banner-content {
        max-width: 100%;
        padding-top: 0;
    }

    .main-bg {
        padding-top: 520px;
    }
}

@media (max-width: 991px) {
    .banner-support {
        position: relative;
        padding: 0;
        max-width: 100%;
        height: unset !important;
    }

    .banner-content {
        padding: 40px 15px;
    }

    .nbr-sprt-left {
        max-width: 100%;
    }

    .banner-transparent {
        height: 100%;
        background: var(--clr-primary);
        text-align: center;
        flex-direction: column;
        width: 100%;
    }
}

.services-container {
    padding: 45px 0 62px 0;
    background-color: #f4f4f4;
}

.services-support {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.serivices-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4.5%;
    margin-right: -4.5%;
}

.services-box {
    width: 24.71%;
    margin: 4.3%;
}

.service-boxBody {
    min-height: 253px;
}

.services-box p {
    font-size: 14px;
    text-align: justify;
}

.services-icon {
    min-height: 51px;
}

.sevices-name {
    font-family: SegoeRegular;
    font-size: 16px;
    color: var(--clr-primary);
    text-align: center;
    margin: 35px 0;
}

.services-btn {
    margin-top: 55px;
    text-align: center;
}

/*--------------------------------------------------------------------------------------------------*/
/***** REGISTER *****/
.after_Register .LoginBtnItem {
    max-width: 150px;
    margin-left: auto;
    margin-top: 30px;
}

/*--------------------------------------------------------------------------------------------------*/
/***** CONTACT *****/
.contact_container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 15px;
}

.contact_info ul {
    list-style-type: none;
}

    .contact_info ul li {
        font-size: 16px;
        font-family: SegoeLight;
        color: #747373;
        line-height: 25px;
    }

        .contact_info ul li i {
            width: 25px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            color: var(--clr-primary);
        }

        .contact_info ul li a {
            color: var(--clr-primary);
        }

.contact_container h2 {
    padding-top: 0;
}

.contact_container .LoginBtnItem {
    font-size: 16px;
    font-family: SegoeLight;
    background-color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    color: #fff;
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    margin: 15px auto 0 auto;
    padding: 7px 0;
}

    .contact_container .LoginBtnItem:hover {
        background-color: transparent;
        color: var(--clr-primary);
    }

.contact_container .form-control {
    border: none;
    border-bottom: 2px solid var(--clr-primary);
    width: 100%;
    color: #1f2930;
    font-size: 16px;
    font-weight: 100;
    background-color: transparent;
    padding: 8px 10px;
    position: relative;
    z-index: 1;
}

    .contact_container .form-control:focus {
        box-shadow: unset;
    }

.contact_container .input-group {
    position: relative;
}

.contact_container .form-control + label {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--clr-primary);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    transition: all 300ms ease-out;
}

.contact_container .form-control:focus + label,
.contact_container .form-control.has-value + label {
    top: -15px;
    left: 0;
    font-size: 12px;
}

.contact_container .form-control.has-value:focus + label {
    color: var(--clr-primary);
}

.contact_container .form-group {
    margin-top: 25px;
    margin-bottom: 25px;
}

.form_container > :nth-child(2) {
    margin-top: 0;
}

.ContactSocialMedia {
    margin-top: 40px;
}

    .ContactSocialMedia ul {
        margin: 0;
        padding: 0;
    }

    .ContactSocialMedia li a span {
        height: 53px;
        width: 53px;
        bottom: 0;
        padding: 0;
    }

    .ContactSocialMedia ul li a:hover {
        background-color: transparent;
    }

    .ContactSocialMedia ul li {
        color: transparent;
        font-size: 0;
        height: 23px;
        padding: 0;
        display: flex;
        align-items: center;
    }

        .ContactSocialMedia ul li a {
            background: none;
            border-radius: 0;
            color: #fff;
            font-size: 0;
            text-align: center;
            width: 22px;
            height: 23px;
            line-height: 0;
            float: none;
            padding: 0;
            box-sizing: border-box;
            margin: 0 40px 0 0;
        }

/*--------------------------------------------------------------------------------------------------*/
/***** DIARY *****/
.Diary .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 0;
}

.Diary .table-striped tbody tr:nth-of-type(odd) {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
}

.Diary tr:nth-of-type(1) {
    box-shadow: unset;
}

.Diary tr {
    background-color: #f5f5f5;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
}

.Diary .table thead th {
    border: unset;
    font-size: 14px;
    font-weight: 400;
    color: #5da3b6;
    padding: 10px 35px;
    vertical-align: middle;
    text-align: center;
}

.Diary .table td {
    padding: 10px 33px;
    vertical-align: middle;
    border: unset;
    background-color: #fff;
    text-align: center;
    position: relative;
    font-size: 14px;
}

    .Diary .table td::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 80%;
        background-color: #d1d0d0;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .Diary .table td:first-child {
        background-color: #4595ab;
        padding: 12px 25px;
    }

        .Diary .table td:first-child::after,
        .Diary .table td:last-child::after {
            display: none;
        }

    .Diary .table td:nth-child(2) {
        text-align: left;
    }

.DiaryDate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 100;
    min-width: 110px;
}

.DiaryDateDayNb {
    font-size: 29px;
    font-weight: 400;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 10px;
    margin: 6px 0;
}

.DiaryEducObj {
    font-size: 16px;
    font-weight: 600;
    color: #515050;
    line-height: 20px;
}

.DiaryEducObjTeach {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 100;
    color: #5d5c5c;
}

.Diary .btn {
    padding: 8px 36px;
}

.Diary .btn-success:not(:disabled):not(.disabled).active {
    background-color: #7fc54c;
    border-color: #7fc54c;
}

/*--------------------------------------------------------------------------------------------------*/
/***** PROGRAM LESSONS *****/
.select2-container--bootstrap .select2-selection--single {
    border: 1px solid #dcdcdc !important;
    line-height: 1.5 !important;
    height: 40px !important;
    font-size: 16px !important;
    padding: 7px 60px 7px 12px !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(/assetsClever/img/icons/select-arrow.svg) right center no-repeat;
    min-width: 235px;
}

    .select2-container--bootstrap .select2-selection--single:focus {
        outline: unset;
    }

    .select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
        color: #a2a2a2 !important;
    }

    .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
        display: none;
    }

.select2-container--bootstrap .select2-selection__clear {
    color: #dcdcdc;
    position: absolute !important;
    right: 40px;
    top: 46%;
    transform: translateY(-50%);
}

.select2-container--bootstrap .select2-dropdown {
    border-color: #dcdcdc !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: var(--clr-primary) !important;
}

.ProgramLessons .input-group > input {
    border: 1px solid #dcdcdc !important;
    line-height: 1.5 !important;
    height: 40px !important;
    font-size: 16px !important;
    padding: 7px 60px 7px 12px !important;
    color: #747373;
}

.ProgramLessons .btn-primary {
    height: 40px;
    padding: 7px 30px;
}

.ProgramDate {
    font-size: 20px;
    font-weight: 600;
    color: #519cb0;
    margin-bottom: 10px;
}

.ProgramLessons .btn-primary i {
    margin-right: 10px;
}

.ProgramLessons .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 50px;
}

    .ProgramLessons .table:last-child {
        margin-bottom: 0;
    }

.ProgramLessons .table-striped tbody tr:nth-of-type(odd) {
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
}

.ProgramLessons tr:nth-of-type(1) {
    box-shadow: unset;
}

.ProgramLessons tr {
    background-color: #f5f5f5;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
}

.ProgramLessons .table thead th {
    border: unset;
    font-size: 14px;
    font-weight: 400;
    color: #5da3b6;
    padding: 10px 35px;
    vertical-align: middle;
    text-align: center;
}

.ProgramLessons tr:nth-of-type(1) th:nth-child(1) {
    text-align: left;
}

.ProgramLessons .table td {
    padding: 10px 33px;
    vertical-align: middle;
    border: unset;
    background-color: #fff;
    text-align: center;
    position: relative;
    font-size: 14px;
}

    .ProgramLessons .table td::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 80%;
        background-color: #d1d0d0;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .ProgramLessons .table td:first-child {
        border-left: 10px solid var(--clr-primary);
        padding: 12px 25px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
    }

    .ProgramLessons .table td:last-child::after {
        display: none;
    }

/*--------------------------------------------------------------------------------------------------*/
/***** Form Activeate Codes *****/
.wizard .steps ul {
    max-width: 740px;
    margin: 0 auto;
}

.wizard > .steps {
    background-image: url(/CMS/site/images/form-steps-bg.png);
    padding: 30px 15px 45px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wizard .steps .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    max-width: 134px;
    width: 100%;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
    height: 36px;
    z-index: 1;
    text-align: center;
    line-height: 19px;
}

.wizard > .steps li {
    position: relative;
}

    .wizard > .steps li.current::before {
        border-color: #61717e;
    }

    .wizard > .steps li::before {
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        border-top: 2px solid #61717e;
    }

.wizard .steps li .number {
    border: unset;
    background-color: #5daabf;
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    width: 56px;
    height: 56px;
    line-height: 51px;
}

.wizard .steps li.current .number,
.wizard .steps li.done .number {
    background-color: var(--clr-primary);
}

.wizard .steps li.current .title,
.wizard .steps li.done .title {
    color: rgba(0, 0, 0, 1);
}

.wizard-section-title {
    font-size: 40px;
    color: #3868b2;
    text-align: center;
    font-weight: 700;
    margin: 0 0 17px 0;
}

.wizard > .content > .body {
    width: 100%;
    height: 100%;
    padding: 41px 0 0;
}

.wizard > .content {
    margin: 0;
}

.wizard-section-text {
    font-size: 16px;
    color: #000;
    text-align: center;
    max-width: 1016px;
    width: 100%;
    margin: 0 auto 0;
    display: block !important;
}

.wizard-section-title-sm {
    text-align: center;
    margin: 47px 0 22px 0;
    font-size: 17px;
    font-weight: 700;
}

.wizard-section-block-step-1 {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.wizard > .content > .body input {
    display: block;
    border: 2px solid #61717e;
    padding: 7px 10px;
    color: #000 !important;
    height: 48px;
    width: 100%;
    border-radius: 6px;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

    .wizard > .content > .body input:focus {
        outline: unset;
        box-shadow: unset;
    }

.wizard > .content > .body .input-group {
    position: relative;
}

.wizard > .content > .body input + label {
    position: absolute;
    top: 13px;
    left: 18px;
    color: #b7c1c9;
    font-size: 14px;
    margin: 0;
    transition: top 300ms ease-out;
    pointer-events: none;
    width: initial;
}

.wizard > .content > .body input:focus + label,
.wizard > .content > .body input.has-value + label {
    top: -9px;
    font-size: 12px;
    color: #000;
    background-color: #fff;
    z-index: 3;
    padding: 0 10px;
    left: 8px;
    width: initial;
}

.wizard > .content > .body label {
    width: 100%;
}

.wizard > .content > .body input.has-value {
    border: 2px solid rgb(23, 123, 150);
}

.wizard > .content > .body .form-group {
    margin: 0 0 18px 0;
}

    .wizard > .content > .body .form-group.info-popup {
        position: relative;
    }

.info-popup-button {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    cursor: pointer;
}

.info-popup-container {
    display: none;
    position: absolute;
    top: 50%;
    background-color: #f6f6f6;
    border-radius: 6px;
    padding: 52px 48px;
    width: 393px;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}

.info-popup-content {
    font-size: 16px;
    color: #000;
    text-align: center;
}

.info-popup-close {
    width: 19px;
    height: 19px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.wizard > .content > .body .form-group > label {
    color: #000;
    margin: 0 0 5px;
    padding: 0 5px;
    font-size: 11px;
}

    .wizard > .content > .body .form-group > label:empty {
        display: none;
    }

.wizard > .actions {
    display: flex;
    justify-content: center;
    padding: 0 0 100px 0;
}

    .wizard > .actions > ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(289px, 1fr));
        width: 100% !important;
        max-width: 590px;
        grid-gap: 10px;
        place-items: center;
    }

        .wizard > .actions > ul > li {
            margin: 0;
        }

    .wizard > .actions a {
        font-size: 14px;
        width: 280px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--clr-primary);
        border-radius: 6px;
    }

        .wizard > .actions a:hover {
            display: flex;
            opacity: 0.7;
            background: var(--clr-primary);
        }

.wizard-section-block-step-2 {
    max-width: 904px;
    margin: 50px auto 0;
}

div#ctl00_cphMain_upPanelLogin2 {
    display: grid;
    grid-template-columns: 432px 432px;
    grid-gap: 40px;
}

.wizard-section-block-step-2 .SignArea,
.wizard-section-block-step-2 .Logarea {
    background-color: #f6f6f6;
    padding: 34px 82px;
    text-align: center;
    height: 467px;
    width: 100%;
}

.wizard-section-block-step-2 .SignArea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wizard-section-block-step-2 h4 {
    font-size: 17px;
    color: #000;
    font-weight: 700;
    margin: 0 0 25px;
}

.wizard-section-block-step-2 span {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    line-height: 21px;
}

.wizard-section-block-step-2 button {
    display: block;
    width: 100%;
    border: 2px solid var(--clr-primary);
    background-color: transparent;
    border-radius: 6px;
    height: 48px;
    margin: 70px 0 0;
}

    .wizard-section-block-step-2 button span {
        font-size: 14px;
        color: var(--clr-primary);
    }

    .wizard-section-block-step-2 button:focus {
        outline: unset;
        box-shadow: unset;
    }

    .wizard-section-block-step-2 button:hover {
        opacity: 0.7;
        background-color: unset;
        border-color: var(--clr-primary);
    }

    .wizard-section-block-step-2 button:not(:disabled):not(.disabled):active {
        opacity: 0.7;
        background-color: unset;
        border-color: var(--clr-primary);
    }

        .wizard-section-block-step-2 button:not(:disabled):not(.disabled):active:focus {
            box-shadow: unset;
        }

.login-box2,
.forgot-box2 {
    width: 100%;
    margin: 40px 0 0;
}

.wizard-section-block-step-2 label.block {
    margin: 0 0 14px 0 !important;
}

.wizard-section-block-step-2 input {
    background-color: #fff !important;
}

.wizard-section-block-step-2 .toolbarForm {
    border-top-width: unset;
    padding: 0;
    border-radius: unset;
    position: relative;
    top: unset;
    right: unset;
    background-color: unset;
    text-align: right;
}

.toolbarForm a {
    font-size: 13px;
    font-weight: 700;
    color: #1c79db;
}

.wizard-section-block-step-2 .Logarea button {
    margin: 25px 0 0;
    background-color: var(--clr-primary);
}

    .wizard-section-block-step-2 .Logarea button span {
        color: #fff;
    }

    .wizard-section-block-step-2 .Logarea button:not(:disabled):not(.disabled):active {
        opacity: 0.7;
        background-color: var(--clr-primary);
    }

/* .register-container ul li:first-child,
.register-container ul li:nth-child(2) {
    display: block !important;
} */

.final-content {
    text-align: center;
    margin: 120px 0 0;
}

@media (max-width: 991px) {
    .wizard-section-block-step-2 .SignArea,
    .wizard-section-block-step-2 .Logarea {
        padding: 34px 34px;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    div#ctl00_cphMain_upPanelLogin2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 455px) {
    .wizard > .steps {
        padding: 30px 15px 70px;
    }
}

/*--------------------------------------------------------------------------------------------------*/
/***** MEDIA QUERY *****/
@media (max-width: 1400px) {
    .footer-blocks {
        grid-gap: 80px;
    }
}

@media (max-width: 1300px) {
    #ctl00_pnlMenu .main-menu > ul > li {
        padding: 0px 5px;
    }

        #ctl00_pnlMenu .main-menu > ul > li > a {
            font-size: 13px;
            padding: 5px 0px;
        }

    .select2-container--bootstrap .select2-selection--single {
        min-width: auto;
    }
}

@media (max-width: 1200px) {
    .Diary .table,
    .ProgramLessons .table {
        width: 1200px;
    }
    .footer-blocks {
        grid-template-columns: 150px 170px 180px;
        grid-gap: 40px;
    }
}

@media (max-width: 1110px) {
    /*RESPONSIVE MENU*/
    #ctl00_pnlMenuResponsive .main-menu ul li ul {
        display: none;
    }

    .main-menu > ul > li:hover > ul {
        padding-top: 0;
    }

    .main-menu > ul > li.hasChildren > ul > li.hasChildren > ul {
        display: none;
        padding-left: 10px;
    }

    #ctl00_pnlMenu .main-menu > ul.open {
        max-height: 472px;
        margin: 17px 0 0 0 !important;
        float: none;
        padding: 0;
        overflow: auto;
        background-color: #fff;
    }

    #ctl00_pnlMenu .main-menu > ul {
        padding: 0;
        margin: 17px 0 0 0 !important;
        clear: both;
        float: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
        background-color: #fff;
    }

    #ctl00_pnlMenu .main-menu ul li ul li:hover > ul > li {
        max-height: none;
        position: relative;
    }

    #ctl00_pnlMenu .main-menu > ul > li:hover > ul > li {
        max-height: none;
        position: relative;
    }

    #ctl00_pnlMenu .main-menu ul li {
        float: none;
    }

    #ctl00_pnlMenu .main-menu > ul > li {
        padding: 10px 20px;
        border-right: none;
        line-height: 20px;
    }

    #ctl00_pnlMenu .main-menu ul li ul {
        float: none;
        position: relative !important;
        left: 0px !important;
        border: none;
        background: none;
    }

        #ctl00_pnlMenu .main-menu ul li ul li {
            float: none;
            position: relative !important;
        }

    #ctl00_pnlMenu .main-menu ul {
        margin: 0;
    }

    #ctl00_pnlMenu .main-menu .menu-button {
        box-sizing: border-box;
        width: 30px;
        padding: 15px 15px;
        font-weight: 700;
        font-size: 0;
        letter-spacing: 1px;
        color: #231f20;
        cursor: pointer;
        position: relative;
        background: url(/CMS/site/images/burger.svg);
        background-repeat: no-repeat;
        background-position: right;
        float: none;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        margin-left: auto;
    }

    #ctl00_pnlMenu {
        position: absolute;
        right: 15px;
        top: 32px;
        z-index: 99;
        max-width: 210px;
        width: 100%;
    }

        #ctl00_pnlMenu .main-menu ul {
            max-width: 100%;
        }

            #ctl00_pnlMenu .main-menu ul li.hasChildren i {
                width: 20px;
                display: block;
                position: absolute;
                position: absolute;
                top: 13px;
                left: 85%;
                z-index: 99;
            }

    .fa-plus-circle:before {
        content: url(/CMS/site/images/arrowdown.svg);
    }

    .fa-minus-circle:before {
        content: url(/CMS/site/images/arrowup.svg);
    }

    #ctl00_pnlMenu .main-menu ul li.hasChildren i {
        width: 20px;
        display: block;
    }

    .footer_down .col-md-6 {
        width: 100%;
        text-align: center !important;
    }

    #ctl00_pnlMenu .main-menu > ul > li > a {
        font-weight: 600;
        display: block;
    }

    #ctl00_pnlMenu .main-menu ul li ul li a {
        padding: 8px 8px;
        font-size: 16px;
    }

    #ctl00_pnlMenu .main-menu > ul > li.hasChildren::before {
        display: none;
    }

    #ctl00_pnlMenu .main-menu > ul > li.hasChildren > ul > li.hasChildren > ul > li > a {
        font-size: 14px;
        color: #322f90;
    }

    #ctl00_pnlMenu .main-menu > ul > li > ul > li > a,
    #ctl00_pnlMenu .main-menu > ul > li > ul > li:hover > a {
        color: #322f90;
    }

    .main-menu ul li ul li.hasChildren:after,
    .main-menu ul li ul li.hasChildren:before,
    .main-menu .menu-button:before,
    .main-menu .menu-button:after {
        display: none;
    }

    .megaWrapper {
        height: 100%;
    }

    .HeaderFlex {
        align-items: center;
        height: 100%;
    }
}

@media (max-width: 1080px) {
    .nbr-sprt-left {
        max-width: 600px;
    }

    .banner-text.sm {
        font-size: 30px;
    }
}
@media (min-width: 1025px) {
    .footer-content-1024 {
        display: none;
    }
    .footer-down.footer-down-1024 {
        display: none;
    }
}
@media (max-width: 991px) {
    .nbr-sprt-left {
        max-width: 100%;
    }

    .footer_right {
        margin-top: 50px;
    }

    .footer_down {
        flex-direction: column;
        text-align: center;
    }

    .footer_info {
        display: none;
    }

    .footer_menu {
        margin-left: 0;
    }

    /*LOGIN*/
    .LoginArea {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }
}

@media (max-width: 767px) {
    .flex-sm-column {
        flex-direction: column !important;
    }

    .LoginArea {
        width: 333px !important;
        margin: 0;
    }

    .RegisterLoginLeft {
        margin-bottom: 50px;
    }

    .contact_container ul {
        padding-left: 20px;
        display: block;
        max-width: 215px;
        margin: 0 auto 0 auto;
    }

    /*MAIN CONTENT*/
    .services-box {
        width: 100%;
        min-height: 310px;
        box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
        padding: 30px;
    }

    /*FOOTER*/
    .footer_info {
        text-align: center;
    }

    .footer_nav_wrapper {
        flex-direction: column;
    }

    .footer_info_block {
        text-align: center;
    }

    div#ctl00_pnlFooterSecond {
        width: 100%;
        text-align: center;
        margin: 40px 0 0;
        display: none;
    }

    .footer_menu {
        margin: 0;
        padding: 0;
        border: none;
    }

    #ctl00_pnlFooter {
        width: 100%;
        text-align: center;
        margin: 30px 0 0;
    }

    /*Contact*/
    .form_container {
        margin-top: 50px;
    }

    /*Body*/
    .PlatformContainer {
        margin: 15px auto;
    }
}

@media (min-width: 768px) {
    .calendar-row-title,
    span.arrows {
        display: none;
    }

    .calendar-table-row {
        padding: 0 16px;
        border-bottom: 2px solid rgba(181, 181, 181, 0.3);
        padding: 16px 0;
    }
}

@media (max-width: 767px) {
    .calendar-table-head {
        display: none;
    }

    .calendar-row-title {
        font-size: 16px;
    }

    .accordion-section {
        background-color: #eeeeee;
        grid-template-columns: 1fr;
        grid-gap: 0;
    }

    .accordion-section-content {
        display: none;
    }

    .calendar-table-head > div,
    .calendar-row-content,
    .calendar-row-btn.btn-main a {
        font-size: 16px;
    }

    .calendar-table-row {
        margin-bottom: 16px;
    }

    .accordion-section a.accordion-section-title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .accordion-section a.accordion-section-title .calendar-row-content {
            font-size: 16px;
        }

    .accordion-title {
        padding: 30px 0;
        position: relative;
        font-size: 16px;
        line-height: 24px;
    }

    .accordion-section-content > div {
        padding: 30px 0;
        border-top: 2px solid rgba(181, 181, 181, 0.3);
    }

    #calendar {
        min-height: 810px;
    }

    .fc-toolbar .callendarHeader,
    .fc-toolbar .fc-right button {
        opacity: 1;
    }

    .fc-toolbar {
        display: flex;
        flex-direction: column;
    }

        .fc-toolbar .fc-right {
            min-width: 100%;
            margin-bottom: 16px;
            display: flex;
            justify-content: flex-end;
        }

        .fc-toolbar .fc-center > div {
            width: 100%;
        }

    .library-search-filters-group {
        grid-template-columns: 1fr;
    }

    .library-year-show {
        place-content: flex-end;
    }

    .styling {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .logo img {
        width: 330px;
    }
}

@media (max-width: 480px) {
    .Register .LoginBtnItem {
        max-width: 100%;
        margin-left: unset;
        margin-top: unset;
    }

    /*FOOTER*/
    .footer_menu {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_right_text {
        text-align: center;
    }

    .footer_right_awards {
        flex-direction: column;
        align-items: center;
    }

        .footer_right_awards > img {
            margin: 10px;
        }
}

/*--------------------------------------------------------------------------------------------------*/
/***** ===== Synced from EUROLIFE-V15 formatCO_10023.css ===== *****/
/*--------------------------------------------------------------------------------------------------*/

.navbar-collapse {
    padding: 0;
}

.fa-spin {
    background-image: url(/CMS/site/images/spinner.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    color: transparent;
}

.upProgress center {
    display: flex;
    justify-content: center;
}

    .upProgress center span {
        margin: 0 10px 0 0;
    }

.gritter-title,
.gritter-item p,
.gritter-error .gritter-close,
.gritter-success .gritter-close,
.gritter-warning .gritter-close {
    color: #fff;
}

/***** Loader *****/
.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(212 212 212 / 70%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader i {
        background-image: url(/CMS/site/images/spinner.png);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        display: inline-block;
        margin: 0 0 0 10px;
        -webkit-animation: fa-spin 2s infinite linear;
        animation: fa-spin 2s infinite linear;
    }

/***** Library *******/
/*--------------------------------------------------------------------------------------------------*/
.library-container-top {
    background-color: #eeeeee;
    padding-bottom: 35px;
}

.library-search-group {
    margin-top: 40px;
    max-width: 620px;
    margin: 0 auto;
}

.library-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.library-search-filters-group {
    display: grid;
    grid-template-columns: 1fr 210px;
    grid-gap: 16px;
}

.library-year-show {
    display: grid;
    grid-template-columns: 97px 97px;
    grid-gap: 16px;
}

.library-search {
    max-width: 100%;
    width: 100%;
    position: relative;
}

.library-year,
.library-show {
    height: 36px;
    width: 97px;
}

.library-search input {
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    height: 36px;
    width: 100%;
    padding: 8px 23px;
    background-color: transparent;
    color: var(--clr-secondary);
}

    .library-search input::-webkit-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::-moz-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input:-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

    .library-search input::placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
    }

.library-search button {
    background-image: url(/CMS/site/images/search.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    z-index: 0;
}

.library-year select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    padding: 0 16px;
    color: var(--clr-secondary);
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/CMS/site/images/expand.svg);
    background-repeat: no-repeat;
    background-position: 65px 14px;
    font-weight: 500;
}

.library-show button {
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    color: #fff;
    background-color: var(--clr-secondary);
    font-size: 14px;
    font-weight: 500;
}

    .library-show button:hover,
    .library-year select:hover {
        opacity: 0.7;
    }

    .library-search input:focus,
    .library-search button:focus,
    .library-year select:focus,
    .library-show button:focus {
        outline: none;
    }

.library-container-bottom {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-gap: 25px;
    margin-top: 70px;
}

.MenuFLLayers {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .MenuFLLayers li {
        position: relative;
        cursor: pointer;
    }

    /*first level*/
    .MenuFLLayers > li {
        padding-left: 27px;
        margin-bottom: 20px;
    }

        .MenuFLLayers > li:last-child {
            margin-bottom: 0;
        }

        .MenuFLLayers > li .arrow-indicator {
            position: absolute;
            content: "";
            background-image: url(/CMS/site/images/dropdown-collapse.svg);
            width: 10px;
            height: 10px;
            background-repeat: no-repeat;
            background-position: center;
            top: 5px;
            left: 0px;
        }

        .MenuFLLayers > li.active .arrow-indicator {
            background-image: url(/CMS/site/images/dropdown-expand.svg);
        }

        /* .MenuFLLayers>li::before {
    position: absolute;
    content: "";
    background-image: url(/CMS/site/images/dropdown-collapse.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    top: 5px;
    left: 0px;
} */

        /* .MenuFLLayers>li.active::before {
    background-image: url(/CMS/site/images/dropdown-expand.svg);
} */

        .MenuFLLayers > li span {
            font-size: 14px;
            font-weight: 500;
            line-height: 18px;
            /* opacity: 0.6; */
        }

        .MenuFLLayers > li > span {
            opacity: 1;
        }

        /*end first level*/

        /*second level*/
        .MenuFLLayers > li > ul {
            list-style: none;
            display: none;
        }

            .MenuFLLayers > li > ul > li {
                padding-bottom: 15px;
                padding-left: 35px;
            }

                .MenuFLLayers > li > ul > li:first-child {
                    padding-top: 15px;
                }

                .MenuFLLayers > li > ul > li .check-indicator {
                    position: absolute;
                    content: "";
                    background-image: url(/CMS/site/images/checkbox-off.svg);
                    width: 20px;
                    height: 20px;
                    background-repeat: no-repeat;
                    background-position: center;
                    left: 0px;
                }

                .MenuFLLayers > li > ul > li.active .check-indicator {
                    background-image: url(/CMS/site/images/checkbox-on.svg);
                }

                /* .MenuFLLayers>li>ul>li::before {
    position: absolute;
    content: "";
    background-image: url(/CMS/site/images/checkbox-off.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    left: 0px;
}

.MenuFLLayers>li>ul>li.active::before {
    background-image: url(/CMS/site/images/checkbox-on.svg);
} */

                /*end second level*/

                /*third level*/
                .MenuFLLayers > li > ul > li > ul {
                    list-style: none;
                }

                    .MenuFLLayers > li > ul > li > ul > li {
                        padding-bottom: 15px;
                        padding-left: 35px;
                    }

                        .MenuFLLayers > li > ul > li > ul > li:first-child {
                            padding-top: 15px;
                        }

                        .MenuFLLayers > li > ul > li > ul > li::before {
                            position: absolute;
                            content: "";
                            background-image: url(/CMS/site/images/checkbox-off.svg);
                            width: 20px;
                            height: 20px;
                            background-repeat: no-repeat;
                            background-position: center;
                            left: 0px;
                        }

                        .MenuFLLayers > li > ul > li > ul > li.active::before {
                            background-image: url(/CMS/site/images/checkbox-on.svg);
                        }

/*end third level*/
.library-table-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 40px;
    grid-gap: 16px;
}

.library-title-filter-group {
    margin-bottom: 16px;
    display: flex;
    width: 100%;
}

    .library-title-filter-group > :not(:first-child) {
        margin-left: 29px;
    }

.library-title-filter-group-2 {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.library-table-head .library-title {
    margin: 0;
    line-height: inherit;
}

.library-table-head label {
    margin: 0;
}

.library-table-show {
    position: relative;
    height: 36px;
    margin: 0 0 0 130px;
}

    .library-table-show::before {
        position: absolute;
        content: "ανά:";
        width: 20px;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: 16px;
        color: var(--clr-secondary);
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        display: flex;
        align-items: center;
    }

    .library-table-show select {
        background-color: transparent;
        border: 1px solid var(--clr-secondary);
        border-radius: 4px;
        padding: 0 16px 0 44px;
        color: var(--clr-secondary);
        font-size: 14px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url(/CMS/site/images/expand.svg);
        background-repeat: no-repeat;
        background-position: 80px 14px;
        height: 36px;
        width: 113px;
        font-weight: 500;
    }

.library-table-search input {
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    height: 36px;
    width: 100%;
    padding: 8px 23px;
    background-color: transparent;
    color: var(--clr-secondary);
}

    .library-table-search input::-webkit-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::-moz-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input:-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::-ms-input-placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

    .library-table-search input::placeholder {
        opacity: 0.26;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }

.library-table-paging {
    width: 140px;
}

    .library-table-paging input {
        width: 30px;
        border: none;
        text-align: center;
    }

        .library-table-paging input:focus {
            outline: none;
            border-bottom: 1px solid var(--clr-secondary);
        }

    .library-table-paging .paging_input {
        display: grid;
        grid-template-columns: 25px 0 30px 40px 25px;
        border: 1px solid var(--clr-secondary);
        border-radius: 4px;
        height: 36px;
        width: 100%;
        place-items: center;
        padding: 0 7px;
    }

        .library-table-paging .paging_input > * {
            font-size: 18px;
            color: var(--clr-secondary);
        }

    .library-table-paging .previous,
    .library-table-paging .next {
        position: relative;
        font-size: 0;
        cursor: pointer;
    }

        .library-table-paging .previous::before {
            content: "❮";
            font-size: 18px;
        }

        .library-table-paging .next::before {
            content: "❯";
            font-size: 18px;
        }

.library-table-show select:focus,
.library-table-search input:focus,
#sample-table-2 thead th {
    outline: none;
}

#sample-table-2_wrapper {
    position: relative;
}

#sample-table-2_processing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.6);
    display: block;
    justify-content: center;
    z-index: 2;
}

    #sample-table-2_processing span {
        /* font-size: 22px;
    font-weight: 500;
    line-height: 27px; */
        position: absolute;
        top: 100px;
        display: flex;
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
    }

        #sample-table-2_processing span i {
            background-image: url(/CMS/site/images/spinner.png);
            background-repeat: no-repeat;
            width: 20px;
            height: 20px;
            display: inline-block;
            margin: 0 0 0 10px;
            -webkit-animation: fa-spin 2s infinite linear;
            animation: fa-spin 2s infinite linear;
        }

@-webkit-keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

#sample-table-2,
#sample-table-2 * {
    border: unset !important;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-hover > tbody > tr:hover {
    background-color: transparent !important;
}

#sample-table-2 thead tr {
    background-color: #eeeeee;
}

#sample-table-2 thead th {
    padding: 28px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
}

#sample-table-2 tbody td {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    padding: 22px 16px;
}

    #sample-table-2 tbody td:last-child {
        max-width: 250px;
    }

        #sample-table-2 tbody td:last-child a {
            word-break: break-all;
        }

#sample-table-2 tbody tr {
    border-bottom: 0.5px solid #b5b5b5 !important;
}

#sample-table-2 a {
    color: var(--clr-secondary);
    text-decoration: none;
}

.library-results .upProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/***** Pagination *******/
/*--------------------------------------------------------------------------------------------------*/
.pagination {
    font-size: 18px;
    justify-content: center;
    display: grid;
    grid-template-columns: 25px 30px 5px 30px 25px;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    height: 36px;
    place-items: center;
    padding: 0 7px;
    color: var(--clr-secondary);
    max-width: 130px;
    width: 100%;
    margin: 20px auto;
}

    .pagination > * {
        color: var(--clr-secondary);
    }

    .pagination input {
        border: none;
        width: 100%;
        text-align: center;
    }

        .pagination input:focus {
            outline: none;
            border-bottom: 1px solid var(--clr-secondary);
        }

    .pagination .page {
        position: relative;
        cursor: pointer;
        text-decoration: none;
    }

        .pagination .page.disabled,
        .pagination .page.next,
        .pagination .page.prev,
        .pagination > :first-child,
        .pagination > :last-child {
            font-size: 0;
        }

            .pagination .page.prev::before,
            .pagination > :first-child::before {
                content: "❮";
                font-size: 18px;
            }

            .pagination > :last-child::before {
                content: "❯";
                font-size: 18px;
            }

        .pagination .page.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

/***** Register *****/
/*--------------------------------------------------------------------------------------------------*/
.register-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: center;
}

.register-partners-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 230px;
    margin: 0 auto;
    grid-gap: 16px;
}

.RegisterButton2 {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s linear;
    position: relative;
    background-color: var(--clr-secondary);
}

    .RegisterButton2 span {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }

    .RegisterButton2.active {
        background-color: #fff;
    }

        .RegisterButton2.active span {
            color: var(--clr-secondary);
        }

.RegisterButton {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s linear;
    position: relative;
}

    .RegisterButton span {
        color: var(--clr-secondary);
        font-size: 14px;
        font-weight: 500;
    }

    .RegisterButton.active {
        background-color: var(--clr-secondary);
    }

        .RegisterButton.active span {
            color: #fff;
        }

.form-container-group-val {
    background-color: #eeeeee;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.form-container label {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 300;
}

.form-container input {
    border: 1px solid var(--clr-secondary);
    border-radius: 4px;
    background-color: transparent;
    height: 36px;
    width: 100%;
    padding: 0 16px;
    color: var(--clr-secondary);
}

.form-container-group-2 {
    /* display: flex;
	align-items: center; */
    position: relative;
}

    .form-container-group-2 input {
        padding-right: 140px;
    }

    /* .form-container-group-2 .form-container-group {
	flex: 1;
} */

    .form-container-group-2 .suffix-label {
        /* align-self: flex-end; */
        margin-bottom: 10px;
        /* margin-left: 10px; */
        color: var(--clr-secondary);
        font-weight: 800;
        position: absolute;
        right: 16px;
        bottom: -2px;
    }

.form-container-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
}

    .form-container-group img {
        position: absolute;
        top: 37px;
        right: 10px;
    }

.form-container input:focus {
    outline: none;
}

.form-container-button .RegisterButton {
    max-width: 200px;
    margin: 50px auto 0;
    transition: all 0.15s linear;
}

    .form-container-button .RegisterButton a {
        color: var(--clr-secondary);
        font-size: 14px;
        text-decoration: none;
    }

    .form-container-button .RegisterButton:hover {
        background-color: var(--clr-secondary);
    }

        .form-container-button .RegisterButton:hover a {
            color: #fff;
        }

    .form-container-button .RegisterButton a:focus {
        outline: none;
    }

.form-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.form-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 25px;
    margin-top: 40px;
    text-align: center;
}

.form-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.form-block {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
}

    .form-block label {
        margin: 0 0 5px;
        font-size: 14px;
        font-weight: 300;
    }

    .form-block input,
    .form-block select {
        border: 1px solid var(--clr-secondary);
        border-radius: 4px;
        background-color: transparent;
        height: 36px;
        width: 100%;
        padding: 0 16px;
        color: var(--clr-secondary);
    }

        .form-block input:focus,
        .form-block select:focus {
            outline: none;
        }

.with-prefix {
    padding-left: 36px !important;
}

.input-prefix {
    position: absolute;
    left: 17px;
    top: 33px;
    color: var(--clr-secondary);
}

.form-block select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/CMS/site/images/expand.svg);
    background-repeat: no-repeat;
    background-position: 97% center;
    cursor: pointer;
}

.form-block-radio-container {
    display: flex;
    align-items: center;
    height: 36px;
}

.form-block-radio {
    position: relative;
}

.form-block-radio-container > :not(:last-child) {
    margin-right: 20px;
}

.form-block-radio input[type="radio"] {
    display: none;
}

.form-block-radio label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 5px;
    margin: 0 5px 0 0;
    width: 20px;
    height: 20px;
    border-radius: 11px;
    border: 1px solid var(--clr-primary);
    background-color: transparent;
}

.form-block-radio input[type="radio"]:checked + label:after {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 9px;
    left: 4px;
    content: " ";
    display: block;
    background: var(--clr-primary);
}

.form-block-radio label {
    cursor: pointer;
}

.form-block-check {
    display: flex;
    align-items: center;
    position: relative;
}

    .form-block-check input[type="checkbox"] {
        display: none;
    }

    .form-block-check label:before {
        content: " ";
        display: inline-block;
        position: relative;
        top: 5px;
        margin: 0 5px 0 0;
        width: 20px;
        height: 20px;
        background-color: transparent;
        background-image: url(/CMS/site/images/checkbox-off.svg);
    }

    .form-block-check input[type="checkbox"]:checked + label:after {
        width: 20px;
        height: 20px;
        position: absolute;
        top: 5px;
        left: 0px;
        content: " ";
        display: block;
        background-image: url(/CMS/site/images/checkbox-on.svg);
        background-repeat: no-repeat;
        background-position: center;
    }

.form-block-terms {
    margin: 20px 0 0 0;
}

.RegisterButton a {
    color: var(--clr-secondary);
    font-size: 14px;
    text-decoration: none;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.RegisterButton2 a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.form-block-terms .RegisterButton:hover {
    background-color: var(--clr-secondary);
}

    .form-block-terms .RegisterButton:hover a {
        color: #fff;
    }

.form-block .extra-info {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: bold;
}

.form-block-terms-read label {
    cursor: pointer;
}

.form-container-otp {
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid;
}

    .form-container-otp label {
        margin-left: 15px;
    }

    .form-container-otp input {
        height: 45px;
    }

    .form-container-otp .suffix-label {
        bottom: 3px;
    }

    .form-container-otp .RegisterButton,
    .form-container-otp .RegisterButton2 {
        height: 55px;
        max-width: 210px;
        margin: 30px auto 0;
    }

.form-container-block {
    display: flex;
    justify-content: space-between;
}

    .form-container-block > div {
        flex-basis: 49%;
    }

.form-container-otp .RegisterButton:hover {
    background-color: var(--clr-secondary);
}

    .form-container-otp .RegisterButton:hover a {
        color: #fff;
    }

.form-container-otp .RegisterButton2:hover {
    background-color: #fff;
}

    .form-container-otp .RegisterButton2:hover a {
        color: var(--clr-secondary);
    }

@media (max-width: 768px) {
    .form-container-block {
        flex-direction: column;
    }

        .form-container-block > div {
            flex-basis: initial;
        }

        .form-container-block .RegisterButton {
            margin-bottom: 16px;
        }
}

/***** Synced responsive (@media) rules *****/

@media (max-width: 1140px) {
    .calendar-table-head > div, .calendar-row-content, .calendar-row-btn.btn-main a {
        font-size: 12px;
    }

    .accordion-title {
        width: 100%;
    }

}

@media (max-width: 1130px) {
    .library-table-show {
        margin: 0 0 0 24px;
    }

}

@media (max-width: 1024px) {
    .coop {
        grid-gap: 9%;
    }

    .hero-section {
        padding-top: 0;
        border-bottom-right-radius: 0;
        height: 500px;
        background-image: url(/CMS/site/images/hero-image-1024.jpg);
    }

    .news-content {
        max-width: 503px;
    }

    .footer-block-1024 {
        margin-bottom: 24px;
    }

    .footer-copyright {
        left: unset;
        right: 0;
    }

    .footer-down {
        display: none;
    }

    .footer-down.footer-down-1024 {
        display: flex;
        align-items: center;
    }

    .footer-content {
        display: none;
    }

    .fc-toolbar .fc-center {
        grid-column: 1/2;
    }

    .library-container-bottom {
        margin-top: 20px;
        grid-template-columns: 1fr;
    }

    .library-search-group {
        margin: 0 auto 0 0;
    }

    .styling {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-gap: 20px;
        padding-top: 15px;
    }

    .MenuFLLayers > li > ul > li {
        padding: 0 0 0 35px;
    }

    .MenuFLLayers > li > ul > li:first-child {
        padding-top: 0;
    }

    .footer-down-links > div {
        flex: 35%;
    }

    .footer-down-link {
        align-self: stretch;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media (max-width: 991px) {
    .form-block-grid {
        grid-template-columns: 1fr;
    }

    .form-block-grid .form-block {
        margin: 0;
    }

    .library-table-show {
        margin-left: 16px;
    }

}

@media (max-width: 880px) {
    .footer-copyright {
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }

    .footer-down-link a {
        font-size: 14px;
    }

    .footer-down.footer-down-1024 {
        padding: 64px 0 59px;
    }

    .footer-down-logo {
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 768px) {
    .form-container-block {
        flex-direction: column;
    }

    .form-container-block > div {
        flex-basis: initial;
    }

    .form-container-block .RegisterButton {
        margin-bottom: 16px;
    }

    .HeaderBtns {
        display: none;
    }

    .hero-section {
        background-image: url(/CMS/site/images/hero-image-768.jpg);
        height: unset;
        padding-top: 49%;
    }

    .footer-block-link-1024.mail {
        text-align: center;
    }

    .footer-blocks-1024 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}

@media (max-width: 680px) {
    .form-container-group-val {
        grid-template-columns: 1fr;
    }

    .form-container-grid {
        grid-template-columns: 1fr;
    }

    .class-register-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {
    .news-items {
        padding: 0 16px;
    }

    .news-item {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .news-btn.btn-main {
        width: 200px;
    }

    #calendar {
        min-height: 685px;
    }

    .library-table-paging {
        max-width: 100%;
        margin-left: initial;
    }

    .library-title-filter-group {
        flex-direction: column;
    }

    .library-title-filter-group > :not(:first-child) {
        margin-left: 0;
        margin-top: 16px;
    }

    .library-table-head label {
        width: 100%;
    }

}

@media (max-width: 460px) {
    .coop {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }

    .coop-btns .btn-main a {
        width: 100%;
    }

    .video-grid {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }

    .download-block {
        flex-direction: column;
        background-color: #fff;
        padding-bottom: 16px;
    }

    .download-block-content {
        padding: 16px;
    }

    .download-block-btn {
        margin: 0 auto;
        width: 93%;
        height: 48px;
        border-radius: 4px;
    }

}

@media (max-width: 375px) {
    #calendar {
        min-height: 520px;
    }

}

