/* Front-end custom css */

/* Reserved Seating */
.modal-big .modal-container {
    width: 100%;
}

.modal-big .modal-container .modal-content {
    min-height: 800px;
}

.modal-small .modal-container {
    width: auto;
    margin: auto;
}

.modal-small .modal-container .modal-content {
    min-height: auto;
}

.is-relative {
    position: relative;
    z-index: 111;
}

.seat-container {
    position: relative;
    overflow: auto;
    width: 800px;
    margin: 0 auto;
    padding: 0;
}

.seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 8px;
    border: 2px solid #777;
}

.seat-mark {
    position: absolute;
    z-index: 999;
    height: 17px !important;
    width: 19px !important;
    border-radius: 50px !important;
    background-color: #681F84;
    color: #fff;
    line-height: 2.3;
    text-align: center;
    box-shadow: 1px 1px 5px -2px #000000;
    font-size: 7px !important;
    font-weight: 500;
    cursor: pointer;
}

.seat-disabled {
    background-color: #999;
    cursor: not-allowed !important;
}

.seat-reserved {
    background-color: #180650;
    cursor: not-allowed !important;
}

.seat-select {
    background-color: #38c172;
}

.seat-disabled-col {
    color: #999;
}

.seat-reserved-col {
    color: #180650;
}

.seat-select-col {
    color: #38c172;
}

.seat-available-col {
    color: #681F84;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.m-auto {
    margin: auto;
}

.no-display {
    display: none;
}

.seat-checkbox {
    position: absolute;
    z-index: 999999;
    height: 24px;
    width: 24px;
    padding: 0 !important;
    margin: 0 !important;
    display: none;
    cursor: pointer;
}


/* Authorize.net */
.wrapper-cc {
    display: flex;
    padding: 2rem;
}

@media screen and (max-width: 700px),
(max-height: 500px) {
    .wrapper-cc {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.card-form {
    max-width: 570px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .card-form {
        margin: 0 auto;
    }
}

.card-form__inner {
    background: #fff;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 10px;
    padding: 35px;
    padding-top: 180px;
}

@media screen and (max-width: 480px) {
    .card-form__inner {
        padding: 25px;
        padding-top: 165px;
    }
}

@media screen and (max-width: 360px) {
    .card-form__inner {
        padding: 15px;
        padding-top: 165px;
    }
}

.card-form__row {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .card-form__row {
        flex-wrap: wrap;
    }
}

.card-form__col {
    flex: auto;
    margin-right: 35px;
}

.card-form__col:last-child {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    .card-form__col {
        margin-right: 0;
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .card-form__col:last-child {
        margin-bottom: 0;
    }
}

.card-form__col.-cvv {
    max-width: 150px;
}

@media screen and (max-width: 480px) {
    .card-form__col.-cvv {
        max-width: initial;
    }
}

.card-form__group {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-form__group .card-input__input {
    flex: 1;
    margin-right: 15px;
}

.card-form__group .card-input__input:last-child {
    margin-right: 0;
}

.card-form__button {
    width: 100%;
    height: 55px;
    background: #681F84;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
    box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-form__button {
        margin-top: 10px;
    }
}

.card-item {
    max-width: 430px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item {
        max-width: 310px;
        height: 220px;
        width: 90%;
    }
}

@media screen and (max-width: 360px) {
    .card-item {
        height: 180px;
    }
}

.card-item.-active .card-item__side.-front {
    transform: perspective(1000px) rotateY(180deg) rotateX(0deg) rotateZ(0deg);
}

.card-item.-active .card-item__side.-back {
    transform: perspective(1000px) rotateY(0) rotateX(0deg) rotateZ(0deg);
}

.card-item__focus {
    position: absolute;
    z-index: 3;
    border-radius: 5px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.card-item__focus:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #08142f;
    height: 100%;
    border-radius: 5px;
    filter: blur(25px);
    opacity: 0.5;
}

.card-item__focus.-active {
    opacity: 1;
}

.card-item__side {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px 0 rgba(14, 42, 90, 0.55);
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg) rotate(0deg);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    backface-visibility: hidden;
    height: 100%;
}

.card-item__side.-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: perspective(2000px) rotateY(-180deg) rotateX(0deg) rotate(0deg);
    z-index: 2;
    padding: 0;
    height: 100%;
}

.card-item__side.-back .card-item__cover {
    transform: rotateY(-180deg);
}

.card-item__bg {
    max-width: 100%;
    display: block;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-item__cover {
    height: 100%;
    background-color: #1c1d27;
    position: absolute;
    height: 100%;
    background-color: #1c1d27;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card-item__cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 2, 29, 0.45);
}

.card-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media screen and (max-width: 480px) {
    .card-item__top {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__top {
        margin-bottom: 15px;
    }
}

.card-item__chip {
    width: 60px;
}

@media screen and (max-width: 480px) {
    .card-item__chip {
        width: 50px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__chip {
        width: 40px;
    }
}

.card-item__type {
    height: 45px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 100px;
    margin-left: auto;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__type {
        height: 40px;
        max-width: 90px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__type {
        height: 30px;
    }
}

.card-item__typeImg {
    max-width: 100%;
    object-fit: contain;
    max-height: 100%;
    object-position: top right;
}

.card-item__info {
    color: #fff;
    width: 100%;
    max-width: calc(100% - 85px);
    padding: 10px 15px;
    font-weight: 500;
    display: block;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__info {
        padding: 10px;
    }
}

.card-item__holder {
    opacity: 0.7;
    font-size: 13px;
    margin-bottom: 6px;
}

@media screen and (max-width: 480px) {
    .card-item__holder {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.card-item__wrapper {
    padding: 25px 15px;
    position: relative;
    z-index: 4;
    height: 100%;
    text-shadow: 7px 6px 10px rgba(14, 42, 90, 0.8);
    user-select: none;
}

@media screen and (max-width: 480px) {
    .card-item__wrapper {
        padding: 20px 10px;
    }
}

.card-item__name {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .card-item__name {
        font-size: 16px;
    }
}

.card-item__nameItem {
    display: inline-block;
    min-width: 8px;
    position: relative;
}

.card-item__number {
    font-weight: 500;
    line-height: 1;
    color: #fff;
    font-size: 27px;
    margin-bottom: 35px;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__number {
        font-size: 21px;
        margin-bottom: 15px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__number {
        font-size: 19px;
        margin-bottom: 10px;
        padding: 10px 10px;
    }
}

.card-item__numberItem {
    width: 16px;
    display: inline-block;
}

.card-item__numberItem.-active {
    width: 30px;
}

@media screen and (max-width: 480px) {
    .card-item__numberItem {
        width: 13px;
    }

    .card-item__numberItem.-active {
        width: 16px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__numberItem {
        width: 12px;
    }

    .card-item__numberItem.-active {
        width: 8px;
    }
}

.card-item__content {
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.card-item__date {
    flex-wrap: wrap;
    font-size: 18px;
    margin-left: auto;
    padding: 10px;
    display: inline-flex;
    width: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__date {
        font-size: 16px;
    }
}

.card-item__dateItem {
    position: relative;
}

.card-item__dateItem span {
    width: 22px;
    display: inline-block;
}

.card-item__dateTitle {
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 6px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__dateTitle {
        font-size: 12px;
        padding-bottom: 5px;
    }
}

.card-item__band {
    background: rgba(0, 0, 19, 0.8);
    width: 100%;
    height: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 480px) {
    .card-item__band {
        margin-top: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__band {
        height: 40px;
        margin-top: 10px;
    }
}

.card-item__cvv {
    text-align: right;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.card-item__cvv .card-item__type {
    opacity: 0.7;
}

@media screen and (max-width: 360px) {
    .card-item__cvv {
        padding: 10px 15px;
    }
}

.card-item__cvvTitle {
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.card-item__cvvBand {
    height: 45px;
    background: #fff;
    margin-bottom: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #1a3b5d;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0px 10px 20px -7px rgba(32, 56, 117, 0.35);
}

@media screen and (max-width: 480px) {
    .card-item__cvvBand {
        height: 40px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__cvvBand {
        margin-bottom: 15px;
    }
}

.card-list {
    margin-bottom: -130px;
}

@media screen and (max-width: 480px) {
    .card-list {
        margin-bottom: -120px;
    }
}

.card-input {
    margin-bottom: 20px;
}

.card-input__label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a3b5d;
    width: 100%;
    display: block;
    user-select: none;
}

.card-input__input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ced6e0;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    padding: 5px 15px;
    background: none;
    color: #1a3b5d;
}

.card-input__input:hover,
.card-input__input:focus {
    border-color: #681F84;
}

.card-input__input:focus {
    box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35);
}

.card-input__input.-select {
    -webkit-appearance: none;
    background-image: url('data:image/png; base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNrM1sEJwkAQBdCsngXPHsQO9O5FS7AAMVYgdqAd2IGCDWgFnryLFQiCZ8EGnJUNimiyM/tnk4HNEAg/8y6ZmMRVqz9eUJvRaSbvutCZ347bXVJy/ZnvTmdJ862Me+hAbZCTs6GHpyUi1tTSvPnqTpoWZPUa7W7ncT3vK4h4zVejy8QzM3WhVUO8ykI6jOxoGA4ig3BLHcNFSCGqGAkig2yqgpEiMsjSfY9LxYQg7L6r0X6wS29YJiYQYecemY+wHrXD1+bklGhpAhBDeu/JfIVGxaAQ9sb8CI+CQSJ+QmJg0Ii/EE2MBiIXooHRQhRCkBhNhBcEhLkwf05ZCG8ICCOpk0MULmvDSY2M8UawIRExLIQIEgHDRoghihgRIgiigBEjgiFATBACAgFgghEwSAAGgoBCBBgYAg5hYKAIFYgHBo6w9RRgAFfy160QuV8NAAAAAElFTkSuQmCC');
    background-size: 12px;
    background-position: 90% center;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.slide-fade-up-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-up-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-up-enter {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.slide-fade-up-leave-to {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
}

.slide-fade-right-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-right-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-right-enter {
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
    pointer-events: none;
}

.slide-fade-right-leave-to {
    opacity: 0;
    transform: translateX(-10px) rotate(45deg);
    pointer-events: none;
}

.iframe-full iframe {
    width: 100%;
    height: 80vh;
}

.star-active {
    color: #FBC02D;
    margin-top: 10px;
    margin-bottom: 10px
}

.star-active:hover {
    color: #F9A825;
    cursor: pointer
}

.star-inactive {
    color: #CFD8DC;
    margin-top: 10px;
    margin-bottom: 10px
}

.profile-pic {
    width: 10%;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 20px
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: #f2b600
}

#review_modal {
    display: none;
}

.VueCarousel-pagination {
    position: absolute;
    bottom: 2%;
}


.bg-col-primary {
    background: #681F84;
}

.bg-col-secondary {
    background: #000;
}

.bg-col-grey-light {
    background: #f3f4f6;
}

.bg-col-grey-dark {
    background: #343434;
}

.w-85 {
    width: 85%;
}

.lgx-banner .h-banner {
    padding: 10rem 0 0;

}

.h-banner-info {
    /* left: 0; */
    display: block;
}

.is-relative {
    position: relative;
}

.o-hidden {
    overflow: hidden;
}

.w-70 {
    width: 70%;
}



.lgx-banner-info .h-title {
    font-size: 4rem;
    line-height: 4rem;
    margin-bottom: 2rem;
}

.lgx-banner-info .h-subtitle {
    color: #fff
}



.h-search {
    margin-top: 3rem;
}

.h-search .form-control {
    border: none;
    height: 50px;
    font-size: 1.2rem;
    width: 120% !important;
    box-shadow: 0 8px 6px -6px rgb(50 51 51 / 40%);
}

.h-search .input-group {
    width: 100%;
}

.h-search .lgx-btn {
    margin-bottom: 2rem;
}

.lgx-btn-white {
    color: #681F84;
}

.text-secondary {
    color: #681F84;
}

.h-full-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.h-full-image-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 767px) {

    .lgx-header .lgx-navbar .lgx-nav .dropdown-menu {
        min-width: fit-content;
    }

    .max-mobile-category {
        min-width: 180px !important;
        white-space: pre-line !important;
    }

    .h-banner-info {
        position: relative;

    }

    .h-search .lgx-btn {
        padding: 2.1rem 4rem;
    }
}


.lgx-inner {
    padding: 4rem 0;
}

.red-border {
    border: 1px solid red;
    border-radius: 4px;
}

/* Authorize.net */


/* Event show page */

.lgx-banner.event-poster {
    background-color: #000;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 15vh !important;
}

.img-radius {
    border-radius: 20px;
}

.lgx-banner .lgx-inner {
    padding: 0px !important;
}

.lgx-banner-info-circle .info-circle-inner {
    height: 200px !important;
    width: 200px !important;
}

.lgx-banner-info-circle .info-circle-inner .date {
    font-size: 60px !important;
    line-height: 50px !important;
    padding-top: 5rem !important;
}

.lgx-banner-info-circle .info-circle-inner .date span {
    font-size: 25px !important;
}

.bg-col-secondary {
    background: linear-gradient(45deg, #681F84, #180650) !important;
}

/* Homepage Banner */

/* Vue-plyr */
.h-banner .plyr--stopped .plyr__controls {
    opacity: 0;
}

.h-banner .plyr__poster {
    background-size: cover;
    background-position: center;
}


/* Myevent tabale Custome  */
.w-tdata {
    width: 100px !important;
    vertical-align: top;
}

.w-100-px {
    width: 100px !important;
    height: 100px !important;
}

.main-wrapper {
    min-height: 80vh;
}

.lgx-copyright,
.lgx-copyright span,
.lgx-copyright a {
    color: #fff !important;
}

.category .single {
    border: 5px solid #eee;
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem;
    width: 100%;
}

.category .single a {
    color: #fff;
}


/* Course  START */
.l-height {
    line-height: initial;
}

.lgx-event__tag_custom {
    margin-top: 1.6rem;
    padding: 2rem 2rem 0;
    position: relative;
    z-index: 2;
}

.w-space {
    white-space: break-spaces !important;
}

.custom-container {
    width: 92% !important;
    margin: auto;
}

.bg-gradient {
    /* background-image: linear-gradient(90deg, rgb(0, 53, 107), rgb(221, 221, 221)); */
    background: linear-gradient(#170656, #631d80) !important;
}

.course-section .breadcrumb-area-course .breadcrumb {
    background-color: transparent;
    list-style: none;
    margin-bottom: 0;
    padding: 1rem 2rem;
}

.course-section .breadcrumb {
    background-color: transparent;
    border-radius: 4px;
    list-style: none;
    margin-bottom: 20px;
    padding: 8px 15px;
}

.course-section .breadcrumb-area-course .breadcrumb li a {
    color: #fff;
}

.c-gold {
    color: #FBC02D;
}

.c-white {
    color: #fff;
}

.c-black {
    color: rgb(31, 31, 31);
}

.c-gray {
    color: rgb(102, 102, 102);
}

.c-camel {
    color: #936d48;
}

.bg-badge {
    background-color: #EBECED;
    border-radius: 1.875rem;
}

.f-small {
    font-size: small;
}

.f-medium {
    font-size: inherit;
}

.f-weight {
    font-weight: 100;
}

.f-weight-600 {
    font-weight: 600;
}

.f-size {
    font-size: 20px;
}

.custom-badge {
    border: 1px solid #fff !important;
    border-radius: 3px !important;
}

.btn-course-bg-1 {
    background-color: rgb(255, 255, 255);
    color: rgb(31, 31, 31);
}

.btn-course-bg-2 {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 86, 210);
    box-shadow: rgb(0 86 210) 0px 0px 0px 1px inset;
}

.btn-course {
    font-weight: bold;
    border-color: transparent;
    height: 75px;
    width: 180px;
}

.bottom-link {
    background: rgba(45, 47, 58, 0.4);
    position: relative;
    bottom: 0%;
}

.border-b {
    border-bottom: 1px solid #e3e4e5;
}

.l-active {
    color: rgb(42, 115, 204);
    font-weight: bold;
}

.border-b a:hover {
    text-decoration: underline;
    color: rgb(42, 115, 204);
    transition-duration: .3s;
}

.small-overlay {
    overflow: overlay;
    white-space: nowrap;
}

.r-bg-card {
    background-color: rgb(248, 248, 248);
}

.bg-slide {
    background-color: #f4f6f9;
}

.r-bg-card img {
    max-width: none;
}

.c-radius {
    height: 42px;
    width: 42px;
    border: 2px solid #e3e4e5;
    border-radius: 50px;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0px 11px;
}

.c-radius-gradient {
    height: 42px;
    width: 42px;
    border: none;
    border-radius: 50px;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}

.button-course {
    align-items: center;
    color: #0056d2;
    border: 1px solid #0056d2;
    border-radius: 4px;
}

.gradient-orange {
    background-image: linear-gradient(90deg, rgb(252, 110, 81), rgb(246, 187, 66));
}

.gradient-sky {
    background-image: linear-gradient(90deg, rgb(72, 207, 173), rgb(59, 175, 218));
}

.gradient-light-blue {
    background-image: linear-gradient(90deg, rgb(93, 156, 236), rgb(150, 122, 220));
}

.button-course:hover {
    color: #0056d2;
    background-color: #e3e4e5;
}

.link-color {
    color: #0056d2;
}

.carousel-cell {
    width: 100%;
    /* half-width */
    height: auto;
    margin-right: 10px;
}

.main-carousel {
    width: -webkit-fill-available;
}

.b-div {
    border: 1.5px solid rgb(227, 228, 229);
    border-radius: 5px;
    padding: 25px
}

.b-middle {
    border-right: 1px solid rgb(227, 228, 229);
}

html {
    scroll-behavior: smooth;
}

.tab-wrapper {
    /* background-color: #fff; */
    /* border-radius: 10px; */
    margin-bottom: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.tab-header {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.tab-header .tab-btn {
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    /* border: 1px solid #0056d2; */
    background-color: transparent;
    transition: all 0.3s ease;
}

.tab-header .tab-btn:focus {
    outline: none;
}

.tab-header .tab-btn i {
    margin-right: 5px;
    font-size: 10px;
}

.tab-header .tab-btn:hover,
.tab-header .tab-btn.active {
    color: #0056d2;
}

.tab-header .underline {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0;
    transform-origin: left;
    background-color: #0056d2;
    transition: all 0.3s ease;
}

.tab-body {
    display: flex;
    overflow: hidden;
}

.tab-body .tab-content {
    min-width: 100%;
    padding: 20px;
    font-size: 12px;
    transition: all 0.3s;
    text-align: justify;
}

.tab-wrapper[rounded] {
    border-radius: 10px;
}

.tab-header[full-width] .tab-btn {
    flex: 1;
    text-align: center;
}

.tab-header[background] {
    background-color: #0056d2;
}

.tab-header[background] .tab-btn {
    color: #fff;
}

.tab-header[background] .tab-btn.active {
    color: #0056d2;
}

.tab-header[background] .tab-btn.active:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
}

.tab-header[background] .underline {
    background-color: #fff;
    height: 100%;
    bottom: 0;
}

.tab-header[border] .tab-btn {
    border: 1px solid #e5e5e5;
}

.tab-header[border] .tab-btn.active {
    border: 1px solid #0056d2;
}

.tab-header[border] .tab-btn.active {
    color: #fff;
}

.tab-header[border] .underline {
    height: 100%;
    bottom: 0;
}

/* Credits */

.credits {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #fff;
    background-color: #0056d2;
}

.credits a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.credits a:hover {
    text-decoration: underline;
}

.tab-card {
    background-color: rgb(255, 255, 255);
    text-align: left;
    position: relative;
    width: 100%;
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: rgb(31 31 31 / 12%) 0px 1px 6px, rgb(31 31 31 / 12%) 0px 1px 4px;
    cursor: pointer;
}

/* .back-image {
    width: 100%;
    height: 250px;
    background-position: 100% 40%;
    background-repeat: no-repeat;
    background-size: cover;
} */


.b-solid {
    width: 72px;
    height: 72px;
    padding: 8px;
    top: 46%;
    left: 24px;
    position: absolute;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 3px;
    z-index: 1;
    background-color: rgb(255, 255, 255);
}

.back-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.accordion {
    cursor: pointer;
}

.progress {

    border-radius: 0px !important;
}


@media (max-width: 767px) {
    .img-mobile {
        height: auto;
        width: auto;
    }

    .b-middle {
        border: none;
    }
}

.r-bg-playlist {
    height: 600px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-y: auto;
    white-space: nowrap;
    background: #f8f9fa;
    padding: 1rem;
}

.r-bg-video-title {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    white-space: nowrap;
    background: #f8f9fa;
    padding: 1rem;
}

.b-radius {
    border-radius: 10px
}

/* input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
  }

  input[type=checkbox] {
    display: none;
  }

  input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.7em;
    height: 2em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
  }

  input[type=checkbox] + label:active:before {
    transform: scale(0);
  }

  input[type=checkbox]:checked + label:before {
    background-color: #1b89ef;
    border-color: #1b89ef;
    color: #fff;
  } */

.purchase_video .lgx-tab-content {
    border: none;
    padding: 0px;
}

.purchase_video .panel-heading {
    padding: 1rem 2rem;
}

.purchase_video .lgx-panel .lgx-single-schedule {
    padding: 0px;
}

.purchase_video .lgx-panel .lgx-single-schedule .schedule-info {
    background: none;
    border: none;
    border-radius: none;
    box-shadow: none;
    text-align: center;
}

.purchase_video .lgx-panel .lgx-single-schedule .schedule-info .title {
    color: #0056d2;
    border: 1px solid #0056d2;
    border-radius: 10px;
    width: 100%;
}


/* Course END */

/* Footer */
.text-white {
    color: #fff;
}

.footer-custom-menu {
    align-items: flex-start;
    padding-bottom: 0;
}

.footer-custom-menu {
    justify-content: flex-start;
}

.padding-t {
    padding-top: 55px;
}

.f-size {
    font-size: 2.6rem;
}

.lgx-footer-single .date {
    color: white;
    font-weight: 400;
}

.lgx-footer-single .map-link i {
    color: white;
}

/* Footer */



/* Custome header CSS */
.lgx-header .lgx-scroll.lgx-btn.lgx-btn-sm {
    margin: 1rem 1rem;
}

.lgx-header .lgx-container {
    max-width: 82%
}

.lgx-header .lgx-navbar .lgx-nav li a {
    padding: 2rem 1.4rem 1rem 1.3rem;
}

.main-search {
    border: 1px solid #e6e3e3;
    border-radius: 6px;
    background-color: white;
    box-shadow: none;
}

.main-search .lgx-btn.lgx-btn-black {
    background: #681F84;
    padding: 0.4rem 1rem 0.4rem 1rem;
    margin: 0rem 0rem 0rem .8rem;
    border-radius: 5px;
}

.main-search .input-group-addon {
    font-size: 15px;
    /* padding: 6px 12px; */
}

.main-search .event-search {
    height: auto;
    width: 100%;
}

.VueCarousel-dot-container {
    display: none !important;
}

.input-height {
    height: 35px;
}

@media (max-width: 767px) {
    .lgx-header .lgx-container {
        max-width: 90%
    }

    .main-search {
        width: 100%;
        height: 37px;
    }

    .lgx-header .lgx-navbar .lgx-nav {
        margin-bottom: 0.8rem;
        margin-top: 1rem;
    }

}


.nav>li,
.nav>li>a {
    max-width: fit-content;
}

@media only screen and (min-width: 820px) and (max-width: 1180px) {

    #search-toggle {
        display: none;
    }

    .main-search .lgx-btn {
        width: auto !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

    #search-toggle {
        display: none;
    }
}

@media (max-width: 1199px) {
    .main-search .lgx-btn {
        width: auto;
    }
}


/* Navbar Toggle Background */

.lgx-header .menu-onscroll {
    background: rgba(0, 0, 0, .95) !important;
}

.lgx-header-position-fixed {
    margin-top: 0rem;
}

.custom-my-3 {
    margin: 1rem 0;
}


@media (max-width: 767px) {

    .lgx-header-position {
        background-color: transparent;
    }

    .mobile-lgx-inner {
        padding: 0rem 0;
    }

    .back-image {
        height: 200px !important;
    }

    .lgx-event__info {
        margin-top: 0.5rem;
        padding: 0.5rem 2rem 0;
    }

    .lgx-event .title {
        font-size: inherit !important;
        line-height: 1.8rem !important;
        margin-top: 6px;
    }

    .lgx-event .meta-wrapper span {
        font-size: x-small !important;
    }

    .lgx-event .sub-title {
        font-size: x-small !important;
    }

    .lgx-event__featured-left {
        top: -3.5rem;
    }

    .lgx-event .meta-wrapper {
        line-height: 1.2rem !important;
        margin-top: 8px !important;
    }

    .lgx-event__info h3 {
        margin-bottom: 0px;
    }

    .navbar-default .navbar-toggle:focus span,
    .navbar-default .navbar-toggle:hover span {
        background-color: #ddd !important;
    }

    .main-search .lgx-btn {
        width: fit-content;
        height: fit-content;
        margin-top: 4px !important;
    }

    #search-toggle {
        display: none;
    }

    .lgx-header .lgx-navbar .lgx-logo {
        margin-left: 1px;
    }

    .lgx-header .lgx-navbar .lgx-logo a img {
        margin-left: 1rem !important;
    }

    /* Footer */
    .lgx-footer-single {
        text-align: left;
    }

    .footer-brand {
        position: relative;
        text-align: left !important;
    }

    .padding-t {
        padding-top: 0px;
    }

    .mobile-mt-5 {
        margin-top: 2.5rem;
    }
}


/* bannner  */

#search_toggle {
    color: white;
}

/* Event Item Card  START*/
.back-image {
    width: 100%;
    height: 250px;
    background-position: 100% 40%;
    background-repeat: no-repeat;
    background-size: cover;
}

.lgx-event__info h3 {
    margin-bottom: 0px;
}

.l-initial {
    line-height: 3.5;
}

.lgx-event {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.lgx-event .title {
    font-size: 2rem;
}

h1.title {
    font-size: 3rem;
    margin: 0;
}

.lgx-event .meta-wrapper span {
    color: #571978;
    font-size: 1.6rem;
}

.lgx-event .meta-wrapper span:after {
    content: "";
}

.lgx-event .sub-title {
    color: #9e9e9e !important;
    font-size: 1.5rem;
}

.lgx-event .dark {
    color: #000;
}

.lgx-event__info {
    padding: 0rem !important;
}

.lgx-event__footer {
    display: flex;
    opacity: 1;
    transform: translate(0);
    transition: all .4s
}

.lgx-event__footer div {
    color: #000;
    flex: 1;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 1rem;
    text-align: center
}

.lgx-event__footer div:nth-child(1n) {
    background: radial-gradient(circle, rgba(87, 25, 120, 1) 0%, rgba(172, 0, 151, 1) 100%);
    color: white;
}

.lgx-event__footer div:nth-child(2n) {
    background: radial-gradient(circle, rgba(87, 25, 120, 1) 0%, rgba(172, 0, 151, 1) 100%);
    color: white;
}

.lgx-event:hover .lgx-event__footer {
    opacity: 0;
    transform: translatey(100%)
}

.lgx-event__category span {
    background: radial-gradient(circle, rgba(87, 25, 120, 1) 0%, rgba(172, 0, 151, 1) 100%);
    bottom: 0;
    color: #fff;
    opacity: 0;
    padding: 1rem;
    position: absolute;
    text-align: center;
    transform: translatey(50%);
    transition: all .4s;
    width: 100%
}


.lgx-event:hover .lgx-event__category span {
    opacity: 1;
    transform: translate(0);
}


/* Event Item Card END */

.brand-name {
    top: 8px;
}

.brand-slogan {
    top: 29px;
    font-size: 1.2rem;
}

.lgx-inner-custom {
    height: 600px;
}

@media (max-width: 767px) {
    .brand-slogan {
        top: 25px !important;
    }

    .lgx-inner-custom {
        height: auto;
    }
}

/* Vimeo video */
.embed-container {
    --video--width: 1296;
    --video--height: 540;

    position: relative;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    /* 41.66666667% */
    overflow: hidden;
    max-width: 100%;
    background: black;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Vimeo video */




/*  bd gradient  Start*/

.bg-col-secondary_one {
    background: linear-gradient(#631d80, #170656) !important;
}

.bg-col-secondary_two {
    background: linear-gradient(#170656, #631d80) !important;
}

/*  bd gradient End*/



/* event create Start */

.lgx-post-wrapper .lgx-tab .nav-pills li a h3 {
    font-size: 1.6rem;
}

.lgx-post-wrapper .lgx-tab .nav-pills li a p {
    font-size: 1.2rem;
    line-height: 1rem;
}

.lgx-post-wrapper .lgx-tab .nav-pills li a {
    padding: 1rem 1.5rem;
}

.lgx-post-wrapper .lgx-tab .lgx-nav {
    width: 100% !important;
    padding: 1rem 0 !important;
}

.lgx-post-wrapper .lgx-tab .lgx-tab-content {
    width: 100% !important;
    border-radius: 0px 0px 16px 16px;
}

.lgx-post-wrapper .lgx-tab .nav-pills li {
    border-radius: 10px;
    float: none;
    margin: 0 0 0 2rem;
    padding: 0rem;
    text-align: center;
}



.lgx-post-wrapper .tab-content .tab-pane label {
    font-size: 1.3rem;
}


.lgx-post-wrapper .lgx-tab .nav-pills {
    border-radius: 16px 16px 0px 0px;
}


@media (max-width: 767px) {
    .lgx-post-wrapper .lgx-tab .nav-pills {
        border-radius: 16px 16px 0 0;
    }

    .lgx-post-wrapper .lgx-tab .nav-pills li a p {
        color: #969696;
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 2.1rem;
    }

    .lgx-post-wrapper .lgx-inner-breadcrumb {
        padding: 7rem 0 0;
    }
}

/* cookies START */
.termsfeed-com---nb-standalone {
    top: 0% !important;
}

.cc-nb-main-container {
    background-color: black !important;
    border-radius: 10px;
    border: 2px solid #571978;
    top: 35% !important;
    bottom: 50% !important;
    width: 80% !important;
    margin: auto !important;
    position: relative;
    --shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px !important;
}

.termsfeed-com---nb .cc-nb-main-container {
    padding: 5rem 3rem !important;
}

.termsfeed-com---palette-light .cc-nb-changep {
    color: #fff !important;
}

.termsfeed-com---palette-light.termsfeed-com---nb {
    background-color: rgba(50, 51, 51, .4) !important;
    color: #ccc !important;
}

.termsfeed-com---palette-light .cc-nb-text {
    color: #ccc !important;
}

.termsfeed-com---palette-light .cc-nb-title {
    color: #ccc !important;
}

.termsfeed-com---palette-light .cc-nb-okagree {
    background: #ccc !important;
    background: #571978 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 6px -6px rgba(50, 51, 51, .4);
    color: #ccc;
    cursor: pointer;
    display: inline-block;
    font-family: Noto Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1rem;
    margin: 0 auto;
    outline: 0;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-align: center;
    transition-duration: .3s;
}

.termsfeed-com---palette-light .cc-nb-reject {
    background: #ccc !important;
    background: #571978 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 6px -6px rgba(50, 51, 51, .4);
    color: #ccc;
    cursor: pointer;
    display: inline-block;
    font-family: Noto Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1rem;
    margin: 0 auto;
    outline: 0;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-align: center;
    transition-duration: .3s;
}

.termsfeed-com---palette-light .cc-nb-changep {
    background: #ccc !important;
    background: #571978 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 6px -6px rgba(50, 51, 51, .4);
    color: #ccc;
    cursor: pointer;
    display: inline-block;
    font-family: Noto Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1rem;
    margin: 0 auto;
    outline: 0;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-align: center;
    transition-duration: .3s;
}

@media (max-width: 767px) {

    .cc-nb-main-container {
        top: 20% !important;
    }

}

@media (max-width: 280px) {

    .cc-nb-main-container {
        top: 5% !important;
    }

}

/* cookies END */


/* smaller, dark, rounded square */
.toggle-padding-x {
    padding: 0px 1.5rem;
}





/*------------------------ about-us START --------------------------*/

/* features-page */

.feature-page .description h2 {
    color: white !important;
    font-family: var(--font1) !important;
}

.feature-page .description p {
    color: white !important;
    font-family: var(--font1) !important;
}

.feature-page-about {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(359deg,
            rgb(91 15 145) 0%,
            rgb(0 0 0) 100%);
    padding-bottom: 100px;
}

.feature-page-about .feat-heading {
    font-size: 3rem;
    margin-top: 4rem;
}

.feature-page {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(150deg,
            rgba(29, 3, 110, 1) 0%,
            rgba(131, 23, 168, 1) 100%);
    padding-bottom: 50px;
}

.feature-page .description {
    width: 80%;
    margin: auto;
    color: white;
}

.feature-page .description p {
    color: white;
    font-family: var(--font1);
    font-size: 1.8rem !important;
}

.feat-content p span {
    color: white !important;
    font-family: var(--font1) !important;
    font-size: 2.1rem !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.feat-content p {
    color: white !important;
    font-family: var(--font1) !important;
    font-size: 2.1rem !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.feat-heading {
    width: auto;
    text-align: center;
    font-family: var(--font1);
    color: white;
    font-size: 4em;
    font-weight: 600;
    margin: auto;
    margin-top: 150px;
}

.feat-heading .line {
    content: none;
    width: 10%;
    background-color: white;
    height: 0.7vh;
    border-radius: 12px;
    margin: 5% auto 2% auto;
}

.feat-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 80%;
    height: 100%;
    padding: 10px 0px;
    margin: auto;
    background-color: transparent;
}

.about-us-page .feat-container {
    /* margin-bottom: 5%; */
}

.feat-content {
    display: flex;
    flex-direction: column;
    width: 40%;
    color: white;
    align-self: center;
}

.feat-content .heading {
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: var(--font1);
    font-size: 3em;
    font-weight: 600;
    line-height: 1;
}

.about-us-page .feat-content .heading {
    font-size: 4rem !important;
}

.feat-content .subheading {
    font-family: var(--font1);
    font-size: 1.5rem;
    font-weight: 400;
    text-align: left;
}

.feat-img {
    display: flex;
    width: 50%;
    /* flex: 50%; */
    align-items: center;
    justify-content: center;
}

.feat-img img {
    width: 100%;
    height: 100%;
    margin: 10px 0;
    padding: 0;
    border-radius: 8px;
}

.feat-img .about-back {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.flex-reverse {
    flex-direction: row-reverse;
}


@media screen and (max-width: 768px) {
    .feat-img .about-back {
        height: 250px;
        margin-top: 5px;
        background-size: cover;
    }

    .mobile-responsive {
        top: 14.3% !important;
    }

    .feat-heading {
        width: 100%;
        font-size: 2em;
        font-weight: 500;
    }

    .about-us-page .feat-content .heading {
        font-size: 3rem !important;
    }

    .feat-container {
        width: 90%;
        padding: 0% 1%;
        align-items: flex-start;
        justify-content: space-between;
        height: fit-content;
        margin-bottom: 5%;
    }

    .about-us-page .feat-container .feat-img img {
        margin-top: -12%;
    }

    .reverse {
        flex-direction: column;
    }

    .normal {
        flex-direction: column-reverse;
    }

    .feat-content {
        width: 100%;
        align-items: center;
        margin: 5% auto auto auto;
        line-height: normal;
    }

    .feat-content .icon {
        /* display: none; */
        width: 20%;
        height: 20%;
        margin-bottom: 5%;
    }

    .feat-content .icon img {
        width: 100%;
        height: 100%;
    }

    .feat-content .heading {
        font-size: 1.5em;
    }

    .feat-content .subheading {
        font-size: 1em;
        text-align: center;
    }

    .feat-img {
        width: 100%;
    }

    .footer {
        height: 80vh;
    }

    .footer-content {
        height: 65vh;
    }

    .subscribe-content {
        width: 100%;
        height: 70%;
    }

    .subscribe-container {
        width: 90%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: auto;
        padding: 5%;
    }

    .subscribe-container .text {
        font-size: 1em;
    }

    .subscribe-container .box {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        background-color: white;
        border-radius: 12px;
        padding: 5%;
    }

    .subscribe-container .email-input {
        width: 100%;
        height: 50%;
        border-bottom: 2px solid var(--primary);
        font-size: 0.8em;
        margin-bottom: 5%;
    }

    #subscribe-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: var(--primary);
        color: white;
        border-radius: 8px;
        border: none;
        padding: 5%;
    }

    .info-mail {
        font-size: 1.5em;
    }

    .social-icons {
        width: 50%;
    }

    .feat-container {
        margin: auto auto 1% auto;
    }

}

/* =======================********========================== */


/*--------Media query  START-------*/



/* Apple iPad Air  portrait to landscape width. */
@media only screen and (min-width: 820px) and (max-width: 1180px) {

    .mobile-responsive {
        top: 14.3% !important;
    }

    .feat-img {
        width: auto;
        margin: 10px 0;
    }

    .feat-content {
        width: auto;
        margin: 10px 0;
    }

    .text-container {
        margin: 10px 0;
    }

    .img-container {
        margin: 10px 0;
    }

    .subscribe-container {
        width: 100%;
        margin: 15px 0;
    }

    .social-icons {
        margin: 0px auto;
    }

    .social-icons a {
        padding: 0 10%;
    }

    .feat-container {
        margin: auto auto 1% auto;
    }


}

/*------------------------ about-us END --------------------------*/


.lgx-btn-red {
    background: #ca396a;
}

.lgx-btn-yellow {
    background: #ffed4a;
}

.lgx-btn-success {
    background: #38c172;
}

.lgx-btn-info {
    background: #00acee;
}

.lgx-btn-danger {
    background: #e3342f;
}

.lgx-btn-black {
    background: #000000;
}


/*-------------------------------------------------------------------*/
/* 2.10 Registration
---------------------------------------------------------------------*/
.lgx-registration {
    background-color: transparent;
}

.lgx-registration4 .lgx-inner {
    padding: 10rem 0;
    min-height: 80vh;
    background-image: linear-gradient(150deg, rgba(29, 3, 110, 1) 0%, rgba(131, 23, 168, 1) 100%);
}

.lgx-registration-christmas .lgx-inner .lgx-registration-area {
    position: relative;
    margin-bottom: -25rem;
}

.lgx-registration-area {
    display: flex;
    align-items: stretch;
    align-content: stretch;

}

.lgx-registration-area .lgx-single-registration {
    position: relative;
    overflow: hidden;
    margin: 0 .8rem;
    transition-duration: .3s;
    text-align: center;
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, .1);
    flex-basis: 400px;
}

.lgx-registration-area .lgx-single-registration:after {
    position: absolute;
    z-index: 0;
    bottom: -145%;
    left: 27%;

    width: 150%;
    height: 150%;

    content: '';
    transition: all .5s ease-in-out;
    transition-duration: .3s;
    transform: translateX(-98%) translateY(-25%) rotate(45deg);

    background: url(../img/dots2.png) 0 0 repeat;
}

.lgx-registration-area .lgx-single-registration .lgx-btn {
    background: #7e18a6;
}

.lgx-registration-area .lgx-single-registration .lgx-btn:hover {
    background: #590e90;
}

.lgx-registration-area .lgx-single-registration .lgx-single-registration-inner {
    position: relative;
    z-index: 3;
    padding: 4.2rem 2rem 6.8rem;
    margin: 0 10px;
}

.lgx-registration-area .lgx-single-registration .single-top .title {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 39px;
    line-height: 3.9rem;

    text-transform: uppercase;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration .single-top .title a {
    color: inherit;
}

.lgx-registration-area .lgx-single-registration .single-top p {
    font-family: 'Oswald', sans-serif;

    letter-spacing: .06rem;

    opacity: .7;
    color: #fff;
}

.lgx-registration-area .lgx-single-registration .single-top .price {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    font-size: 6.8rem;
    font-weight: 900;
    line-height: 102px;
    line-height: 10.2rem;
    line-height: 8rem;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration .single-top .price i {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 300;
    font-style: normal;
    line-height: 39px;
    line-height: 3.9rem;

    position: relative;
    top: -30px;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration .single-top .price span {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 300;
    line-height: 30px;
    line-height: 3rem;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration .prices-price {
    width: 85%;
    margin: auto;
}

.lgx-registration-area .lgx-single-registration .single-bottom ul {
    margin-top: 2.6rem;
    margin-bottom: 5rem;
    text-align: left;
    list-style: disc;
}

.lgx-registration-area .lgx-single-registration .single-bottom ul li {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 24px;
    line-height: 2.4rem;

    margin-bottom: .4rem;
}

/* .lgx-registration-area .lgx-single-registration:hover
{
    background: white;
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, .3);
}
.lgx-registration-area .lgx-single-registration:hover .lgx-single-registration-inner
{
    transform-origin: center;
    animation-name: fadeInUp;
    animation-duration: 600ms;
    animation-timing-function: linear;
} */
.lgx-registration-area .lgx-single-registration:hover .single-top p {
    color: white;
}

.lgx-registration-area .lgx-single-registration:hover .single-top .price {
    color: #fff;
}

.lgx-registration-area .lgx-single-registration:hover .single-top .price i {
    opacity: .4;
    color: white;
}

.lgx-registration-area .lgx-single-registration:hover .single-top .price span {
    opacity: .7;
    color: white;
}

.lgx-registration-area .lgx-single-registration:hover .single-bottom ul li {
    color: white;
}

.lgx-registration-area2 .lgx-single-registration {
    margin: 0 1rem;

    border: 4px solid #fff;
    border-radius: 8px;
}

.lgx-registration-area-nogap .lgx-single-registration {
    margin: 0;

    border-radius: 0;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(1) {
    background: #590e90;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(1) .single-top .title {
    color: #590e90;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(2) {
    background: #554bb9;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(2) .single-top .title {
    color: #554bb9;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(3) {
    background: #00acee;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(3) .single-top .title {
    color: #00acee;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(4) {
    background: #6ba229;
}

.lgx-registration-area3 .lgx-single-registration:nth-child(4) .single-top .title {
    color: #6ba229;
}

.lgx-registration-area3 .lgx-single-registration .single-top {
    max-width: 210px;
    min-height: 210px;
    margin: 0 auto;

    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 13px 35px rgba(0, 0, 0, .05);

    -o-box-shadow: 0 13px 35px rgba(0, 0, 0, .05);
}

.lgx-registration-area3 .lgx-single-registration .single-top .price {
    line-height: 8rem;

    color: #7e18a6;
}

.lgx-registration-area3 .lgx-single-registration .single-top .title {
    padding-top: 5rem;
}

.lgx-registration-area3 .lgx-single-registration:hover .single-top {
    background: white;
}

.lgx-registration-area3 .lgx-single-registration:hover .single-bottom ul li {
    color: #fff;
}

.lgx-registration-area3 .recommended .lgx-btn {
    background: #7e18a6;
}

.lgx-registration-area3 .recommended .lgx-btn:hover {
    background: #590e90;
}

.lgx-registration-area .lgx-single-registration-christmas {
    overflow: hidden;

    transition-duration: .3s;
    text-align: center;

    color: #fff;
    background: #554bb9;
    box-shadow: 0 0 16px #ccc;

    flex: 1 1;
    -o-box-shadow: 0 0 16px #ccc;
}

.lgx-registration-area .lgx-single-registration-christmas .lgx-btn {
    background: #7e18a6;
}

.lgx-registration-area .lgx-single-registration-christmas .lgx-btn:hover {
    background: #590e90;
}

.lgx-registration-area .lgx-single-registration-christmas .lgx-single-registration-inner {
    padding: 4.2rem 2rem 9rem;
    background-size: auto auto, cover;
}

.lgx-registration-area .lgx-single-registration-christmas .single-top .title {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 39px;
    line-height: 3.9rem;

    text-transform: uppercase;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration-christmas .single-top .title a {
    color: inherit;
}

.lgx-registration-area .lgx-single-registration-christmas .single-top .price {
    font-family: 'Oswald', sans-serif;
    font-size: 68px;
    font-size: 6.8rem;
    font-weight: 900;
    line-height: 102px;
    line-height: 10.2rem;

    color: #590e90;
}

.lgx-registration-area .lgx-single-registration-christmas .single-top .price i {
    font-weight: 300;
    font-style: normal;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration-christmas .single-top .price span {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 39px;
    line-height: 3.9rem;

    color: #fff;
}

.lgx-registration-area .lgx-single-registration-christmas .single-bottom ul {
    margin-top: 2.6rem;
    margin-bottom: 5rem;
}

.lgx-registration-area .lgx-single-registration-christmas .single-bottom ul li {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 24px;
    line-height: 2.4rem;

    margin-bottom: .4rem;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) {
    border-radius: 12px 0 0 12px;
    background: #f1f1f1;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-top .title {
    color: #554bb9;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-top .title a {
    color: inherit;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-top .price {
    color: #590e90;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-top .price i {
    opacity: .4;
    color: #1b273d;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-top .price span {
    opacity: .7;
    color: #1b273d;
}

.lgx-registration-area .lgx-single-registration-christmas:nth-child(1) .single-bottom ul li {
    color: #1b273d;
}

.lgx-registration-area .lgx-single-registration-christmas:last-child {
    border-radius: 0 12px 12px 0;
}

.lgx-registration-area .lgx-single-registration-christmas:hover {
    background: white;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .lgx-single-registration-inner {
    transform-origin: center;
    animation-name: fadeInUp;
    animation-duration: 600ms;
    animation-timing-function: linear;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-top .title {
    color: #554bb9;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-top .title a {
    color: inherit;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-top .price {
    color: #590e90;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-top .price i {
    opacity: .4;
    color: #1b273d;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-top .price span {
    opacity: .7;
    color: #1b273d;
}

.lgx-registration-area .lgx-single-registration-christmas:hover .single-bottom ul li {
    color: #1b273d;
}

.lgx-registration-area .recommended {
    background-image: linear-gradient(150deg, #9C27B0 0%, rgba(131, 23, 168, 1) 100%);
}

.lgx-single-registration:hover .lgx-single-registration-inner {
    background-image: linear-gradient(150deg, #9C27B0 0%, rgba(131, 23, 168, 1) 100%);
}

.lgx-registration-area .recommended .lgx-btn {
    background: #554bb9;
}

.lgx-registration-area .recommended .lgx-btn:hover {
    background: #590e90;
}

.lgx-registration-area .recommended .single-top .title {
    color: #fff;
}

.lgx-registration-area .recommended .single-top .price {
    color: #fff;
}

.lgx-registration-form-box {
    /*::-ms-input-placeholder { !* Microsoft Edge *!
    color:    $white-color;
  }*/
}

.lgx-registration-form-box :-moz-placeholder {
    opacity: 1;
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.lgx-registration-form-box :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.lgx-registration-form-box ::-ms-input-placeholder {
    /* Most modern browsers support this now. */
    color: #fff;
}

.lgx-registration-form-box ::placeholder {
    /* Most modern browsers support this now. */
    color: #fff;
}

.lgx-about-registration-box {
    position: relative;

    margin-top: -258px;
}

.lgx-registration-form-box {
    padding: 4.2rem 3rem;

    text-align: center;

    background: url('../img/registrationbox-bg.jpg') center center no-repeat;
    background-size: cover;
}

.lgx-registration-form-box .title {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 63px;
    line-height: 6.3rem;

    margin-top: 0;
    margin-bottom: 2.6rem;

    color: #fff;
}

.lgx-registration-form-box input.wpcf7-form-control,
.lgx-registration-form-box input.form-control {
    display: block;

    width: 100%;
    height: 60px;
    margin-bottom: 1.5rem;

    color: #fff;
    background: rgba(255, 255, 255, .2);
}

.lgx-registration-form-box input.wpcf7-form-control:focus,
.lgx-registration-form-box input.form-control:focus {
    color: #554bb9;
    outline: 0;
    background: rgba(255, 255, 255, .7);
    box-shadow: none;
}

.lgx-registration-form-box select.wpcf7-select,
.lgx-registration-form-box select.lgx-select {
    display: block;

    width: 100%;
    margin-bottom: 2rem;
    padding: 15px 20px;

    color: #fff;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, .2);
}

.lgx-registration-form-box select.wpcf7-select option,
.lgx-registration-form-box select.lgx-select option {
    background: #554bb9;
}

.lgx-registration-form-box .wpcf7-form-control.wpcf7-submit,
.lgx-registration-form-box .wpcf7-form-control.lgx-submit,
.lgx-registration-form-box .wpcf7-submit,
.lgx-registration-form-box .lgx-submit {
    display: block;

    width: 100%;
    margin-top: 2rem;

    color: #554bb9;
    background: #590e90;
}

.lgx-registration-form-box .wpcf7-form-control.wpcf7-submit:hover,
.lgx-registration-form-box .wpcf7-form-control.lgx-submit:hover,
.lgx-registration-form-box .wpcf7-submit:hover,
.lgx-registration-form-box .lgx-submit:hover {
    color: #fff;
    background: #7e18a6;
}

.lgx-registration-simple {
    background: url('http://placehold.it/1920x800') bottom center no-repeat fixed;
    background-size: cover;
}

.lgx-registration-simple .lgx-inner {
    background: rgba(85, 75, 185, .9);
}

.lgx-registration-simple {
    text-align: center;
}

.lgx-registration-simple .lgx-heading {
    margin-bottom: 4.2rem;
}

.lgx-registration-simple .lgx-heading .subheading {
    opacity: .7;
}

.welcome-page .lgx-heading .subheading,
.welcome-page .lgx-heading .heading {
    color: #fff;
}


/* ----------------------------------------------------------------------
     Small devices (tablets, UP TO 991px~768px)
 -----------------------------------------------------------------------*/
@media (max-width: 991px) {
    .lgx-registration-area {
        display: block;
    }

    .lgx-registration-area .lgx-single-registration {
        float: left;

        width: 50%;
    }

    .lgx-registration-area2 .lgx-single-registration {
        float: left;

        width: 47%;
        margin-bottom: 2rem;
    }

    .lgx-registration-area .lgx-single-registration-christmas:nth-child(1),
    .lgx-registration-area .lgx-single-registration-christmas:last-child {
        border-radius: 0;
    }

    .lgx-about-img-sp {
        margin-top: 4.2rem;
    }

    .lgx-registration-area .lgx-single-registration {
        width: 48%;
        margin-bottom: 2.6rem;
    }

    /************** 991 GLOBAl USE END ***********/
}

/* ---------------------------------------------------------------------
     Extra small devices (phones, less UP TO 767px)
  ----------------------------------------------------------------------*/
@media (max-width: 767px) {
    .lgx-btn {
        padding: 1rem 2.6rem;
    }

    .lgx-registration4 .lgx-inner {
        padding: 8rem 0;
    }


    .lgx-registration-area .lgx-single-registration {
        width: 98%;
    }
}

/*767 END*/
/* ----------------------------------------------------------------
       Custom, iPhone Retina  UP TO 480px
 -------------------------------------------------------------------*/
@media (max-width: 480px) {
    .lgx-registration-area .lgx-single-registration {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 1rem;
    }
}

.swal2-popup.swal2-toast .swal2-html-container {
    padding: 0 !important;
}

.lgx-event__tag span:nth-child(2n) {
    color: white !important;
}

.lgx-event__featured {
    top: -4.6rem;
}

.lgx-event__featured span {
    border-top-left-radius: 1rem !important;
    border-bottom-left-radius: 0rem;
}

/* Iphone media Start */

.iphone-media {
    display: none;
}

/* menu scroll Start */
@media (max-width:820px) {
    .lgx-header .menu-onscroll .lgx-navbar .lgx-nav li a {
        padding: 15px 10px;
    }
}

@media (max-width:912px) {
    .lgx-header .menu-onscroll .lgx-navbar .lgx-nav li a {
        padding: 15px 10px;
    }
}

/* menu scroll END */
.event_info_custom {
    min-height: 110px !important;
}

@media (max-width: 767px) {
    .event_info_custom {
        min-height: auto !important;
    }
}

@media (max-width: 820px) {
    .event_info_custom {
        min-height: auto !important;
    }
}

@media (max-width: 912px) {
    .event_info_custom {
        min-height: auto !important;
    }
}


.g-map-wrapper {
    min-height: unset;
}




/* ToolTip Dashboard START */
.tooltip-question {
    border: 1px solid gray;
    border-radius: 50%;
    padding: 4px 6px;
    font-size: 0.80rem;
    color: gray;
}

.active .tooltip-question {
    border: 1px solid gray;
    border-radius: 50%;
    padding: 4px 6px;
    font-size: 0.80rem;
    color: gray;
}

.tooltip-custom {
    position: relative;
    cursor: pointer;
}

/* left Start */
.tooltip-custom .tooltip-left {
    visibility: hidden;
    background: #fff;
    padding: 10px;
    min-width: 30rem;
    max-height: 150px;
    color: #000;
    text-align: left;
    font-size: smaller;
    line-height: 2rem;
    border-radius: 6px;
    padding: 4px 10px;
    position: absolute;
    z-index: 999;
    top: 0%;
    left: 160%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    white-space: initial;

}

/* .tooltip-custom .tooltip-left::after {
        content: "";
        position: absolute;
        top: 5%;
        right: 100%;
        border-width: 12px;
        border-style: solid;
        border-color: transparent  #170656 transparent transparent;
    } */

.tooltip-custom:hover .tooltip-left {
    visibility: visible;
}

/* right Start */
.tooltip-custom .tooltip-right {
    visibility: hidden;
    background: #fff;
    padding: 10px;
    min-width: 30rem;
    max-height: 150px;
    color: #000;
    text-align: left;
    font-size: smaller;
    line-height: 2rem;
    border-radius: 6px;
    padding: 4px 10px;
    position: absolute;
    z-index: 999;
    top: 0%;
    right: 170%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    white-space: initial;
}

/* .tooltip-custom .tooltip-right::after {
        content: "";
        position: absolute;
        top: 5%;
        left: 100%;
        border-width: 12px;
        border-style: solid;
        border-color: transparent  transparent  transparent #170656;
    } */

.tooltip-custom:hover .tooltip-right {
    visibility: visible;
}

/* top  Start*/
.tooltip-custom .tooltip-top {
    visibility: hidden;
    background: #fff;
    padding: 10px;
    min-width: 30rem;
    max-height: 150px;
    color: #000;
    text-align: left;
    font-size: smaller;
    line-height: 2rem;
    border-radius: 6px;
    padding: 4px 10px;
    z-index: 999;
    position: absolute;
    bottom: 145%;
    left: -20%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    white-space: initial;
}

/* .tooltip-custom .tooltip-top::after {
        content: "";
        position: absolute;
        top: 110%;
        right: 90%;
        margin-top: -10px;
        border-width: 12px;
        border-style: solid;
        border-color:#170656 transparent   transparent  transparent;
    } */


.tooltip-custom:hover .tooltip-top {
    visibility: visible;
}

/* bottom Start */
.tooltip-custom .tooltip-bottom {
    visibility: hidden;
    background: #fff;
    padding: 10px;
    min-width: 30rem;
    max-height: 150px;
    color: #000;
    text-align: left;
    font-size: smaller;
    line-height: 2rem;
    border-radius: 6px;
    padding: 4px 10px;
    position: absolute;
    z-index: 999;
    top: 160%;
    left: -10%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    white-space: initial;

}

/* .tooltip-custom .tooltip-bottom::after {
        content: "";
        position: absolute;
        top: -25%;
        right: 90%;
        border-width: 12px;
        border-style: solid;
        border-color:   transparent  transparent #170656  transparent ;
    } */

.tooltip-custom:hover .tooltip-bottom {
    visibility: visible;
}

/* ToolTip Dashboard END*/

.mx-datepicker-popup {
    z-index: 9999 !important;
}

/* New Design organiser Style */

.org_parent .h-200 {
    box-sizing: border-box;
    height: 200px;
}

.org_parent .position-relative {
    position: relative;
    bottom: 20%;
}

.org_parent .img-avatar {
    position: relative;
    border-radius: 50%;
    width: 10%;
}

.org_parent .checked-mark {
    position: absolute;
    top: 5%;
    right: 45%;
    z-index: 999;
}

@media(max-width: 767px) {
    .org_parent .img-avatar {
        border-radius: 50%;
        width: 30%;
    }

    .org_parent .checked-mark {
        right: 35%;
    }
}

/* New Design organiser Style */


.custom-swal-popup-loader {
    background: rgb(0 0 0 / 70%) !important;
    width: auto !important;
}