:root {
    --primary-color: #004C98;
    --secondary-color: #ffffff;
    --font: "Open Sans";
}

.whitelabel-header-description-container {
    display: flex;
    color: white;
    margin-bottom: 10px;
}

.whitelabel-card .whitelabel-front-content {
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.whitelabel-card:hover .whitelabel-front-content {
    -webkit-transform: translate(0px, -100%);
    -moz-transform: translate(0px, -100%);
    -o-transform: translate(0px, -100%);
    -ms-transform: translate(0px, -100%);
    transform: translate(0px, -100%);
    opacity: 0;
}

.whitelabel-card .whitelabel-back-content {
    transition: all 1s ease;
    transform: translateY(30%);
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translate(0px, 30%);
    -moz-transform: translate(0px, 30%);
    -o-transform: translate(0px, 30%);
    -ms-transform: translate(0px, 30%);
    transform: translate(0px, 30%);
    z-index: 5;
}

.whitelabel-card:hover .whitelabel-back-content {
    opacity: 1;
    -webkit-transform: translate(0px, 0%);
    -moz-transform: translate(0px, 0%);
    -o-transform: translate(0px, 0%);
    -ms-transform: translate(0px, 0%);
    transform: translate(0px, 0%);
}

.whitelabel-book-your-session {
    line-height: 32px;
    color: var(--primary-color);
    font-family: var(--font);
}

.whitelabel-search-textbox-container {
    width: 80%;
    position: relative;
}

.whitelabel-search-button {
    width: 179px;
    height: 48px;
    border-radius: 5px;
    background: var(--primary-color);
    color: white;
    border: 0;
    font-family: var(--font);
}
.whitelabel-search-button-new {
    width: 179px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: 0;
    font-family: var(--font);
    border-radius: 30px;
}

.whitelabel-search-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 10px;
}

.whitelabel-card {
    box-shadow: 0px 4px 10px 0px #00000040;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.whitelabel-front-content-book-button {
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: #000000;
    text-decoration: underline;
    font-family: var(--font);
}

.whitelabel-mentor-card-container {
    display: grid;
    grid-template-columns: 21% 21% 21% 21%;
    column-gap: 5.3%;
    row-gap: 8%;
}

.whitelabel-front-content-mentor-name {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: #000000;
}

.whitelabel-front-content-mentor-designation {
    text-align: center;
    font-family: var(--font);
    line-height: 32px;
    color: #656670;
    min-height: 64px;
}

.whitelabel-mentor-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    background: #000;
}

.whitelabel-back-content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    height: 100%;
    border-radius: 10px;
    width: 100%;
    padding: 30px;
}

.whitelabel-back-content-mentor-name {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: white;
}

.whitelabel-back-content-view-details-button {
    width: 179px;
    height: 48px;
    border-radius: 5px;
    border: 0;
    font-family: var(--font);
}

.whitelabel-powered-by-gleac-container {
    padding: 0 3% 3% 3%;
    font-family: var(--font);
    color: white;
    background-color: var(--primary-color);
}

.whitelabel-footer-container {
    background: var(--primary-color);
    padding: 3%;
    display: flex;
    color: white;
    font-family: var(--font);
    flex-direction: row;
    justify-content: space-between;
}

.whitelabel-footer-logo {
    height: 35px;
    padding-inline: 20px;
    margin: 0 0 10px;
}

.whitelabel-footer-resources-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.whitelabel-footer-resources-container.col-width-40 {
    width: 40%;
}

.whitelabel-footer-resources-container.col-width-60 {
    width: 60%;
}

.whitelabel-social-icons-container {
    width: 50%;
    display: flex;
    margin-top: 5%;
    justify-content: space-between;
    padding-inline: 20px;
}

.whitelabel-social-icons-container.social-three-items {
    width: 65%;
}

.whitelabel-social-icons-container.social-four-items {
    width: 75%;
}

.whitelabel-mentor-profile-image {
    width: 262px;
    height: 262px;
    object-fit: cover;
    border-radius: 50%;
}

.whitelabel-mentor-profile-designation {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #D9DCEA;
    margin-bottom: 12px;
}

.checkout-bottom-popup.whitelabel-checkout-bottom-popup {
    position: fixed;
    bottom: 0;
    right: 20px;
    box-shadow: 0px 0px 50px 0px #00000033;
    border-radius: 30px 30px 0 0;
    background-color: white;
    width: 90%;
    max-width: 420px;
    padding: 1%;
    z-index: 99999;
    max-height: 90%;
    overflow: auto;
}

.checkout-bottom-popup.whitelabel-checkout-bottom-popup .button-div {
    position: sticky;
    bottom: -14px;
    background: #fff;
}

.whitelabel-cart-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.whitelabel-cart-clear-button {
    width: 124px;
    height: 41px;
    border-radius: 5px;
    border: 0;
    font-family: var(--font);
    color: grey;
    border: 1px solid #CED2DA;
    background-color: white;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
.whitelabel-cart-clear-button-new {
    min-width: 125px;
    height: 41px;
    padding: 12px 25px 10px;
    border-radius: 30px;
    border: 0;
    font-family: 'epilogue' !important;
    font-weight: 400;
    color: grey;
    border: 1px solid #CED2DA;
    background-color: white;
    font-size: 18px;
    line-height: 1;
}

.whitelabel-cart-book-button {
    width: 124px;
    height: 41px;
    border-radius: 5px;
    background: var(--primary-color);
    color: white;
    border: 0;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}

.whitelabel-cart-book-button-new {
    min-width: 125px;
    height: 41px;
    padding: 12px 25px 10px;
    border-radius: 30px;
    background: var(--primary-color) !important;
    font-family: 'epilogue' !important;
    font-weight: 400;
    text-transform: capitalize;
    color: white;
    border: 0;
    font-size: 18px;
    line-height: 1;
}

.input-with-icon .whitelabel-icon {
    position: absolute;
    left: 0;
    top: 50%;
    left: 25px;
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    width: 18px;
    height: auto;
    z-index: 9;
}

.whitelabel-form-control {
    border-radius: 8px !important;
    border: 1px solid #CED2DA !important;
    font-family: var(--font)
}

.whitelabel-form-control.file-attachment {
    padding: 10px 15px;
}

.input-with-icon .whitelabel-form-control {
    padding-left: 50px;
    color: black;
}

.whitelabel-checkout-mentor-card {
    background-color: white;
    margin: 0 5px 0 px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 10px 0;
    width: 40%;
}
.checkout-confirm-modal .checkout-item-list.multiple-items {
    padding: 20px !important;
}

.checkout-confirm-modal .checkout-item-list.multiple-items .checkout-item-list-items {
    overflow: auto;
    gap: 15px;
    justify-content: flex-start !important;
    padding: 20px;
}

.checkout-confirm-modal .checkout-item-list.multiple-items .checkout-item-list-items-new {
    overflow: auto;
    gap: 15px;
    justify-content: flex-start !important;
    padding: 20px;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card {
    min-width: 200px;
    max-width: 200px;
    display: flex;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex: 1;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .img-div{
    margin-bottom: 10px;
    min-width: 32px !important;
    min-height: 32px !important;
    width: 32px !important;
    height: 32px !important;
    margin-left: 0 !important;
}

.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div{
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div h5{
    font-size: 14px !important;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div .designation{
    font-size: 12px !important;
    color: #777777;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div .status-div img {
    width: 20px;
}

.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div .status-div span {
    font-size: 12px !important;
}
.checkout-confirm-modal .checkout-item-list .checkout-item-list-items-new .whitelabel-checkout-mentor-card .card-new .content-div button {
    background: #000 !important;
    padding: 4px 15px;
    border-radius: 30px !important;
    color: #fff !important;
    font-size: 14px;
    margin-top: auto;
    width: fit-content;
}

.checkout-item-list.multiple-items .checkout-item-list-items .whitelabel-checkout-mentor-card  {
    min-width: 350px;
}

.whitelabel-pagination.default {
    padding: 0 5% 5% 5%;
    display: grid;
    place-items: center;
}

.whitelabel-pagination.exception {
    padding: 5%;
    display: grid;
    place-items: center;
}

.whitelabel-back-content-book-button {
    cursor: pointer;
    text-align: right;
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-family: var(--font);
}

.whitelabel-mentor-profile-headline {
    font-family: var(--font);
    font-size: 18px;
    line-height: 24px;
    color: #D9DCEA;
    font-weight: 400;
}

.whitelabel-mentor-profile-name {
    margin-bottom: 12px;
    font-family: var(--font) !important;
    font-size: 32px;
    line-height: 32px;
    color: #FFFFFF;
    font-weight: 700;
}

/* The lines on the id.js page near the header */

.white-label-mentor-page-back {
    position: relative;
    padding: 20px;
    text-align: left;
}

.white-label-mentor-page-back::before,
.white-label-mentor-page-back::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #D9DCEA1A;
}

.white-label-mentor-page-back::before {
    top: 0;
}

.white-label-mentor-page-back::after {
    bottom: 0;
}

/* tabination css start */
.tabination {
    transition: .2s all ease-in-out;
    margin-top: 15px;
}
.tabination *{
    transition: .2s all ease-in-out;
}
.tabination .tab-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #D9DCEA;
    margin-bottom: 50px;
}

.tabination .tab-list .tab-item {
    color: #637381;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 15px 0;
    margin-right: 40px;
    position: relative;
    text-transform: capitalize;
    cursor: pointer !important;
}
.tabination .tab-list .tab-item:last-child {
    margin-right: 0;
}
.tabination .tab-list .tab-item.disabled {
    cursor: not-allowed !important;
    user-select: none;
    pointer-events: none;
    opacity: .5;
}
.tabination .tab-list .tab-item.disabled * {
    cursor: not-allowed !important;
    user-select: none;
    pointer-events: none;
}
.tabination .tab-list .tab-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: transparent;
}
.tabination .tab-list .tab-item.active {
    color: #231F20;
    font-weight: 600;
}
.tabination .tab-list .tab-item.active::before {
    background: #005FFF;
}
.tabination .tab-content {}

/* tabination css end */

/* radio css start */

.radio-wrapper{
    display: flex;
    flex-wrap: wrap;
}
.radio-wrapper .radio-content{
    position: relative;
    margin-right: 15px;
    cursor: pointer !important;
    transition: .2s all ease-in-out;
}
.radio-wrapper .radio-content *{
    cursor: pointer !important;
    transition: .2s all ease-in-out;
}
.radio-wrapper .radio-content input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}
.radio-wrapper .radio-content label {
    transition: .2s all ease-in-out;
    color: #656670;
    border: 1px solid #D9DCEA80;
    padding: 10px 12px 10px 35px;
    border-radius: 10px
}
.radio-wrapper .radio-content label::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ccc;
    transition: .2s all ease-in-out;
}
.radio-wrapper .radio-content label::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition: .2s all ease-in-out;
}
.radio-wrapper .radio-content input:checked + label {
    background: #EDF0FC80;
    color: #000;
}
.radio-wrapper .radio-content input:checked + label::before {
    border-color: #000;
    background: #000;
}
.radio-wrapper .radio-content input:checked + label::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* radio css end */

.font-css {
    font-family: 'epilogue' !important;
    font-size: 72px !important;
    line-height: 1.3 !important;
}

/* copy code css */
.share-content {
    
}
.share-content label {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}
.share-content .copy-url {
    background: #F1F2F2;
    border: 1px dashed #65667040;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.share-content .copy-url span { 
    flex: 1; 
    font-size: 20px;
    color: #111; 
    text-align: left; 
    font-weight: 600; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.share-content .copy-url img {
    margin-left: 10px;
    cursor: pointer !important;
}


@media only screen and (max-width: 768px) {
    .share-content .copy-url span {
        font-size: 18px;
    }

    .whitelabel-header-description-container {
        align-items: center;
    }

    .whitelabel-book-your-session {
        font-size: 24px;
    }

    .whitelabel-search-textbox-container {
        width: 100%;
    }

    .whitelabel-search-button {
        align-self: flex-end;
        margin-top: 10px;
    }
    .whitelabel-search-button-new {
        align-self: flex-end;
        margin-top: 5px;
    }

    .whitelabel-search-container {
        flex-direction: column;
    }

    .whitelabel-card {
        padding: 10px;
    }

    .whitelabel-front-content-book-button {
        bottom: 5px;
        right: 5px;
    }

    .whitelabel-mentor-card-container {
        grid-template-columns: 49% 49%;
        column-gap: 2%;
        row-gap: 2%;
    }

    .whitelabel-front-content-mentor-name {
        margin-top: 0;
        margin-bottom: 0;
        line-height: inherit;
    }

    .whitelabel-front-content-mentor-designation {
        line-height: inherit;
        font-size: 14px;
    }

    .whitelabel-mentor-image {
        width: 105px;
        height: 105px;
        margin: 0 0 10px;
    }

    .whitelabel-back-content {
        padding: 10px;
    }

    .whitelabel-back-content-mentor-name {
        margin-top: 0;
        margin-bottom: 0;
        line-height: inherit;
    }

    .whitelabel-back-content-view-details-button {
        width: auto;
        height: auto;
    }

    .whitelabel-powered-by-gleac-container {
        padding: 3%;
    }

    .whitelabel-footer-container {
        flex-direction: column;
        padding: 25px;
    }

    .whitelabel-footer-logo {
        width: 60%;
        margin-top: 10px;
        padding-inline: 0px;
    }

    .whitelabel-footer-resources-container {
        flex-direction: column;
        width: 100% !important;
    }

    .whitelabel-mentor-profile-image {
        width: 100%;
        height: auto;
    }

    .whitelabel-mentor-profile-designation {
        text-align: center;
    }

    .whitelabel-mentor-profile-book-button-container {
        text-align: center;
    }

    .checkout-bottom-popup.whitelabel-checkout-bottom-popup {
        right: 0;
    }

    .whitelabel-cart-header {
        margin-top: 5%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .whitelabel-cart-clear-button {
        font-size: 15px;
    }

    .whitelabel-cart-book-button {
        font-size: 15px;
    }

    .whitelabel-social-container {
        margin-bottom: 5%;
    }

    .whitelabel-social-icons-container {
        width: 25%;
        padding-inline: 0px;
    }

    .whitelabel-social-icons-container.social-three-items {
        width: 40%;
        padding-inline: 0px;
    }

    .whitelabel-social-icons-container.social-four-items {
        width: 50%;
        padding-inline: 0px;
    }

    .whitelabel-footer-resources-column {
        margin-bottom: 10%;
    }

    .whitelabel-checkout-mentor-card {
        width: 100%;
    }

    .whitelabel-pagination.default {
        padding: 10%;
    }

    .whitelabel-pagination.exception {
        padding: 20% 10% 10% 10%;
    }

    .whitelabel-back-content-book-button {
        bottom: 5px;
        right: 5px;
    }

    .whitelabel-mentor-profile-headline {
        text-align: center;
    }

    .whitelabel-mentor-profile-name {
        text-align: center;
    }

    .wl-reschedule-card {
        width: 100% !important;
    }
    .tabination .tab-list {
        margin-bottom: 30px;
    }
    .tabination .tab-list .tab-item {
        margin-right: 20px;

    }
}

@media screen and (max-width: 600px) {
    .tabination .tab-list .tab-item {
        margin-right: 8px;
        padding: 10px 0;
        font-size: 14px;
    }
}

@media only screen and (max-width: 1440px) {
    .wl-reschedule-card {
        width: 100% !important;
    }
    .font-css {
        font-size: 60px !important;
    }
}

@media screen and (max-width: 1024px) {
    .font-css {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 991px) {
    .font-css {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }
}