/*Screen grid

col-* - 0 (xs)
col-sm-* - 576px
col-md-* - 768px
col-lg-* - 992px
col-xl-* - 1200px*/

nav{
    position: relative;
}
.footer{
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    padding-top: 4px;
    background: #efefef;
    position: fixed;
}
.cstm-powerd-by{
    font-size:16px;
    color:#627280;
    letter-spacing: 0.3px;
}
.btn {
    background-color:#009a61;
}
.card-body:hover{
    border: 1px solid #6494e0;  
}
.close:hover,
.close:focus , a, li, .btn, .checkedin-btn{
    cursor: pointer;
}


 /*CUSTOM CLASSES FOR MODAL VERTICAL CENTER*/
.modal {
  text-align: center;
}

.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
 }

 .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
 }
 
 .modal-heading{
  font-weight: 400;
  letter-spacing: 0.5px;  
 }
 
 .modal-body .btn{
     height:41px;
 }
    
 html{
     overflow: hidden;
 }
 /* *{
      -webkit-overflow-scrolling:touch;
 } */

.global-modal.fade.in {
    background: rgba(0,0,0,0.6);
}
.global-modal .modal-dialog{
    width: var(--modal-width);
    padding-left: 0!important;
    margin: 0;
}
.global-modal .modal-content{
    width: var(--modal-width);
    max-height:  var(--modal-maxheight);
    border-radius: var(--modal-borderradius);
    font-size: var(--modal-font);
    overflow-y: auto;
}
.global-modal .modal-body{
    font-family: 'OpenSans-Regular', sans-serif;
    font-size: var(--modal-font);
    color: #000;
    padding: 10%;
    max-height: calc(100vh - 300px);
    overflow: auto;
    text-align: center;
    position: static;
}
.global-modal .modal-body p{
    margin-bottom: 0;
    font-size: var(--modal-font);
    line-height: normal;
    letter-spacing: -0.25px;
}
.global-modal .modal-content::-webkit-scrollbar{
    display: none;
}
.global-modal .modal-action{
    padding: 0;
}
.global-modal .modal-action button{
    padding: var( --modal-padding); /* calculating 8% of the modal width */
    line-height: 0;
    height: var(--modal-button); /* calculating 20% of the modal width */
    font-family: OpenSans-SemiBold;
    margin:0px;
    font-size: var(--modal-font);
    cursor: pointer;
    width:100%;
}
.global-modal .custom-modal-button{
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: var(--modal-font);
    font-family: 'OpenSans-SemiBold';
    outline: 0;
    cursor: pointer;
}
.global-modal .custom-modal-button:last-child{
    border-radius: 0 0 var(--modal-borderradius) var(--modal-borderradius);
}
.global-modal .modal-action button.green-button{
   background: #009A61;
   color: #FFFFFF;
}
.global-modal .white-button {
   background-color: white;
    border: 0;
    border-top: 1px  #E5E5E5;
}

.text-ellipsis{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.absolute-center{
    position: absolute;
    top: 50%    ;
    left: 50%!important;
    transform: translate(-50%, -50%)!important;
    margin: 0!important;
}
.green-text{
    color: #009a61!important;
}
.global-modal .border_top{
    border-top: 1px solid #E5E5E5!important;
}
.global-modal .modal-body.single-btn{
     max-height: calc((var(--modal-maxheight)) - (var(--modal-button)) - (2*var(--modal-padding)));
}
.global-modal .modal-body.two-btn{
   max-height: calc((var(--modal-maxheight)) - (2 * var(--modal-button)) - (2*var(--modal-padding)));
}
.global-modal .modal-body.three-btn{
    max-height: calc((var(--modal-maxheight)) - (3 *var(--modal-button)) - (2*var(--modal-padding)));
}
.Medium_desktop_modal{
    --modal-font : calc(var(--screen-width) / 100 * 0.9); 
}
.Small_desktop_modal{
    --modal-font : calc(var(--screen-width) / 100 * 1); 
}
.Big_tablet_modal{
    --modal-width: 30vw;
    --modal-font : calc(30vw / 100 * 4.5); 
    --modal-button: calc(30vw / 100 * 20);
    --modal-padding : calc(30vw / 100 * 8);
    --modal-maxheight : 80vh; 
}
.Medium_tablet_modal{
    --modal-width: 35vw;
    --modal-font : calc(35vw / 100 * 4.5); 
    --modal-button: calc(35vw / 100 * 20);
    --modal-padding : calc(35vw / 100 * 8);
    --modal-maxheight : 80vh; 
}

.Tablet_modal{
    --modal-width: 50vw;
    --modal-font : calc(50vw / 100 * 4.5); 
    --modal-button: calc(50vw / 100 * 20);
    --modal-padding : calc(50vw / 100 * 8);
    --modal-maxheight : 80vh; 
}
.Mobile_modal{
    --modal-width: 80vw;
    --modal-font : calc(80vw / 100 * 5); 
    --modal-button: calc(80vw / 100 * 20);
    --modal-padding : calc(80vw / 100 * 8);
    --modal-maxheight : 80vh; 
    --modal-borderradius : calc(80vw / 100 * 3);
}
/*************************************************************************/

                   

/*MEDIA CSS STARTS HERE ADD NEW CUSTOM CSS ABOVE THIS*/




/**
 * Spinner
 * --------------------------------------------------
 */
@-moz-keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spinner-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* :not(:required) hides this rule from IE9 and below */
.spinner-loader:not(:required) {
    -moz-animation: spinner-loader 1500ms infinite linear;
    -webkit-animation: spinner-loader 1500ms infinite linear;
    animation: spinner-loader 1500ms infinite linear;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    -webkit-box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 51, 0.3) 1.5em 0 0 0, rgba(0, 0, 51, 0.3) 1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) 0 1.5em 0 0, rgba(0, 0, 51, 0.3) -1.1em 1.1em 0 0, rgba(0, 0, 51, 0.3) -1.5em 0 0 0, rgba(0, 0, 51, 0.3) -1.1em -1.1em 0 0, rgba(0, 0, 51, 0.3) 0 -1.5em 0 0, rgba(0, 0, 51, 0.3) 1.1em -1.1em 0 0;
    display: inline-block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    overflow: visible;
    text-indent: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
}

#progress {
    background-color: white;
    display: block;
    height: auto;
    left: 0;
    opacity: 0.7;
    position: unset;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99;
}

/*Full loader*/

@-moz-keyframes spinner-loader-full {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spinner-loader-full {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner-loader-full {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* :not(:required) hides this rule from IE9 and below */
.spinner-loader-full:not(:required) {
    -moz-animation: spinner-loader 1500ms infinite linear;
    -webkit-animation: spinner-loader 1500ms infinite linear;
    animation: spinner-loader 1500ms infinite linear;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-box-shadow: rgba(55,188,155, 1) 1.5em 0 0 0, rgba(55,188,155, 1) 1.1em 1.1em 0 0, rgba(55,188,155, 1) 0 1.5em 0 0, rgba(55,188,155, 1) -1.1em 1.1em 0 0, rgba(55,188,155, 1) -1.5em 0 0 0, rgba(55,188,155, 1) -1.1em -1.1em 0 0, rgba(55,188,155, 1) 0 -1.5em 0 0, rgba(55,188,155, 1) 1.1em -1.1em 0 0;
    -webkit-box-shadow: rgba(55,188,155, 1) 1.5em 0 0 0, rgba(55,188,155, 1) 1.1em 1.1em 0 0, rgba(55,188,155, 1) 0 1.5em 0 0, rgba(55,188,155, 1) -1.1em 1.1em 0 0, rgba(55,188,155, 1) -1.5em 0 0 0, rgba(55,188,155, 1) -1.1em -1.1em 0 0, rgba(55,188,155, 1) 0 -1.5em 0 0, rgba(55,188,155, 1) 1.1em -1.1em 0 0;
    box-shadow: rgba(55,188,155, 1) 1.5em 0 0 0, rgba(55,188,155, 1) 1.1em 1.1em 0 0, rgba(55,188,155, 1) 0 1.5em 0 0, rgba(55,188,155, 1) -1.1em 1.1em 0 0, rgba(55,188,155, 1) -1.5em 0 0 0, rgba(55,188,155, 1) -1.1em -1.1em 0 0, rgba(55,188,155, 1) 0 -1.5em 0 0, rgba(55,188,155, 1) 1.1em -1.1em 0 0;
    display: inline-block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    overflow: visible;
    text-indent: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
}

#progress-full {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: inline-block;
    opacity: 0.5;
    background-color: black;
    z-index: 99999;
    text-align: center;
}
/*MEDIA CSS ENDS HERE ADD NEW CUSTOM CSS ABOVE THIS*/


/* Dropdown options positioning varibales */
:root{
    --dd-top: 0;
    --dd-left: 0;
}
.vertical-align-center{
    display: flex;
    align-items: center;
}
.justify-center{
    justify-content: center;
}
.justify-space-around{
    justify-content: space-around;
}
.justify-space-between{
    justify-content: space-between;
}
.justify-space-evenly{
    justify-content: space-evenly;
}
.text-truncate{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hint--text{
    font-size: 11px;
    color: #777;
    font-weight: 400;
    display: block;
    text-align: left;
    margin-bottom: 0;
    margin-top: 10px;
}
.full-width {
    width: 100%;
}
.no-border{
    border: 0;
}
.global-modal .white-button{
    color: #777;
}
.global-modal .title-text{
    font-family: 'OpenSans-Bold', sans-serif;
    font-size: 20px!important;
}
button:disabled {
    opacity:0.5;
    pointer-events: none;
}
.disable-dropdown{
    pointer-events: none;
}
.disable-dropdown .dropdown-toggle-button .cstm-input-value{
    color: #00000040 !important;
}

.modal-header+.modal-body{
    padding-top: 5px !important;
}
.modal-header{
    padding-left: 10%!important;
}
button{
    color: #000;
}
button.button--text{
    background: transparent;
    border: 0;
    padding: 0;
    color: #000;
    outline: none;
    cursor: pointer;
}
.cstm-label{
    display: block;
    text-align: left;
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
    margin-top: 0;
}
.label-spacing{
    margin-top: 20px;
    margin-bottom: 6px;
}
/* Input component */
.cstm-input, .cstm-button{
    box-shadow: 0px 2px 7px 0px #00000040;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}
.cstm-button{
    border: 0;
    outline: 0 !important;
    padding: 10px 15px;
    width: 100%;
    color: #009a61;
    height:50px;
    font-family: 'OpenSans-SemiBold', sans-serif;
}
.cstm-input input{
    border: 0;
    outline: none;
    height: 40px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    cursor: pointer;
}
.cstm-input.input-sm{
    width: 50px;
}
.cstm-input.input-sm input{
    padding: 0 5px;
    text-align: center;
}
.cstm-input.append-icon, .cstm-input.prepend-icon{
    display: flex;
}
.cstm-input.append-icon input, .cstm-input.prepend-icon input, .cstm-input.append-icon p, .cstm-input.prepend-icon p{
    width: calc(100% - 50px)
}
.cstm-input.append-icon button, .cstm-input.prepend-icon button{
    width: 50px;
    border: 0;
    outline: none;
    background: transparent;
    cursor: pointer;
}
.cstm-input.append-icon button{
    border-left: 1px solid #DFE3E9;
}
.cstm-input.prepend-icon button{
    border-right: 1px solid #DFE3E9;
}
.cstm-input .fa-caret-up {
    font-size: 20px;
}
.cstm-input .cstm-input-value{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Dropdown component */

.dropdown-toggle-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    padding-left: 20px;
    height: 40px;
}
.cstm-input.dropdown .cstm-input-value{
    padding-right: 5px;
    padding-left: 0;
}
.dropdown-toggle-content{
    margin-bottom: 0;
    width: 100%;
    top: var(--dd-top) !important;
    left: var(--dd-left) !important;
    border-radius: 10px;
    max-height: 240px;
    font-size: var(--modal-font);
    overflow: auto;
    transform: translate(0,0) !important; /* To overwrite the default transform style added as inline style form the dropdown toggle option of bootstrap */
    box-shadow: 0px 2px 7px 0px #00000040;
}
.dropdown-toggle-content li {
    display: block;
    padding: 8px 15px 8px 30px;
}
.selected-list-item{
    position: relative;
}
.selected-list-item::before{
    position: absolute;
    content: '';
    height: 13px;
    width: 7px;
    top: 0;
    transform: translate(-15px, 12px) rotate(45deg);
    border-bottom: 2px solid #009a61;
    border-right: 2px solid #009a61;
}

/* Datepicker component */
.datepicker{
    border: 0 !important;
    border-radius: 0 !important;
    margin-top: 0;
}
.datepicker::after, .datepicker::before{
    content: unset !important;
}
.datepicker table thead{
    color: rgba(0, 1, 0, 0.40);
}
.datepicker table{
    color: rgba(0, 1, 0, 0.9);
    font-size: 13px;
    font-family: 'OpenSans-Regular', sans-serif;
}
.datepicker table thead th.datepicker-switch{
    color: rgba(0, 0, 0);
    font-size: 16px;
    font-family: 'OpenSans-Regular', sans-serif;
}
.datepicker table {
    color: #000;
}
.datepicker tbody:before {
    content:"@";
    display:block;
    line-height:5px;
    text-indent:-99999px;
}
.datepicker table td.day{
    padding: 8px 10px !important;
    border-radius: 50%;
}
.datepicker table td.active, .datepicker table span.active{
    background-color: #009a61!important;
    background-image: none!important;
}
.datepicker.datepicker-inline {
    background: #f6f6f6;
    width: auto;
}
.datepicker thead{
    border-bottom: 1px solid #fff;
}
.datepicker .table-condensed {
    margin: auto;
}
.cstm-bs-calender.global-modal .modal-content{
    width: auto;
    border-radius: 0;
    border: 0;
}
.cstm-bs-calender.global-modal .modal-dialog {
    width: auto;
}
.mobile-view .datepicker table{
    font-size: 11px;
}
.mobile-view .datepicker table thead th.datepicker-switch{
    font-size: 14px;
}

/* Switch component */
.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 26px;
}
.switch input { 
    opacity: 0;
    position: relative;
    width: 56px;
    height: 26px;
    z-index: 9;
    cursor: pointer;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: #f7d44c;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 0;
    top:2px;
    border-radius: 8px;
    background-color: white;
    transform: translateX(2px);
    -webkit-transition: .4s;
    transition: .4s;
}
.disable-switch.switch{
    pointer-events: none;
}
.disable-switch .slider{
    background-color: #d5d5d5 !important;
}
input:checked + .slider {
    background-color: #009a61;
}
input:checked + .slider:before {
    left: 0px;
    transform: translateX(32px);
}
.off-txt, .on-txt{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 500;
    font-size: 12px;
    pointer-events: none;
}
.off-txt{
    right: 5px;
}
.on-txt{
    left:5px;
}

.weekly-days-calender{
    display: inline-flex;
    box-shadow: 0px 2px 4px 0px #00000040;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #979797;
    margin-right: 10px;
    cursor: pointer;
}
.weekly-days-calender:last-child{
    margin-right: 0;
}
.weekly-days-calender.activeday{
    background: #009A61;
    color: #fff;
}

#selectExcludeBillingDays_modal .cstm-input-value {
    padding-left: 10px;
    padding-right: 10px;
}
.structureVideoInTooltip {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 20px;
}
#structureVideoInTooltip {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.tooltip-container{
    padding: 5px;
    cursor: pointer;
    position: relative;
}
.tooltip-wrapper{
    position: absolute;
    display: none;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    z-index: 99999;
    width: max-content;
    max-width: 200px;
    overflow-y: auto;
    color: #000000;
    border: 1px solid #dfe3e9;
    box-shadow: 2px 4px 14px 4px rgba(0,0,0,0.2);
}
#tooltip-wrapper{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    z-index: 99999;
    width: max-content;
    max-width: 200px;
    overflow-y: auto;
    color: #000000;
    border: 1px solid #dfe3e9;
    font-size: var(--modal-font);
    box-shadow: 2px 4px 14px 4px rgba(0,0,0,0.2);
}
button:disabled{
    opacity: 1!important;
    background-color: #009a6150 !important;
}
@media screen and (max-width: 680px) {
    #tootltip_mobile {
        z-index: 999999;
    }
    #membershipStructureVideo_modal .modal-dialog, #individualVideo_modal .modal-dialog, #tootltip_mobile .modal-dialog{
        width: 100vw;
        max-width: 100vw !important;
        height: 100vh;
        top: 0!important;
        left: 0 !important;
        transform: translate(0,0)!important;
    }
    #membershipStructureVideo_modal .modal-content, #individualVideo_modal .modal-content, #tootltip_mobile .modal-content{
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    #membershipStructureVideo_modal .modal-body, #individualVideo_modal .modal-body, #tootltip_mobile .modal-body{
        max-height: 80vh;
        border-radius: 0;
    }   
}
@media screen and (max-width: 1024px) {
    #membershipStructureVideo_modal .row{
        display: block;
        margin-bottom: 0 !important;
    }
    #membershipStructureVideo_modal .col-6{
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding: 0 !important;
    } 
}
@media screen and (min-width: 681px) {
    #tootltip_mobile {
        display: none !important;
    }    
}