:root {
    --missio-font: "Poppins", sans-serif;
    --missio-font-two: "Poppins", serif;
    --missio-font: "Poppins", cursive;
    --missio-white: #fff;
    --missio-dark: #000;
    --missio-primary: #C62F5C;
    --missio-primary2: #3C1D48;
    --missio-info: #303171;
    --missio-default: #b0b3b8;
    --missio-black: #000000;
    --missio-contrast: #322C58;
    --missio-bdr-color: #d3d3d3;
    --missio-hero: #303171;
    --missio-hero-rgb: 48, 49, 113;
    --missio-gray: #4d5259;
    --missio-gray-rgb: 114, 109, 123;
    --missio-danger: #fc6b67; /* #eb444e */
    --missio-danger-rgb: 235, 68, 78; /* #eb444e */
    --missio-info: #303171;
    --missio-info-rgb: 48, 49, 113;
    --missio-bdr-radius: 8px;
    --missio-bdr-radius-sm: 4px;
    --missio-bdr-radius-xs: 4px;
}

.form-group-btn {
	gap: 0.75rem;
	display: flex;
	align-items: center;
}

/* Custom Radio and Checkboxes */
.button-set {
    width: 100%;
    position: relative;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}
.button-set [class^="column"] {
    margin-right: 50px;
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .button-set [class^="column"] {
        display: block;
        margin-right: 0px;
    }
}
.button-set label {
    width: 100%;
    color: #000000;
    cursor: pointer;
    margin-right: 0px;
    margin-bottom: 0px;
    font-size: 0.938em;
    line-height: 1.5;
    padding-left: 1.875rem;
    font-weight: 400;
}
.button-set input[type="radio"],
.button-set input[type="checkbox"] {
    margin: 0;
    height: 1px;
    padding: 0rem;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    pointer-events: none;
}
.button-set input[type="radio"] + span {
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    background-color: var(--missio-white);
    border: 2px solid var(--missio-bdr-color);
    vertical-align: top;
    position: relative;
    margin-right: 0.625rem;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.button-set input[type="radio"] + span {
    top: 2px;
}
.button-set input[type="radio"] + span::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
    display: inline-block;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.button-set input[type="radio"]:focus + span,
.button-set input[type="radio"]:active + span {
    border-color: #05c31b;
}
.button-set input[type="radio"]:checked + span::after {
    opacity: 1;
    filter: alpha(opacity=100);
}
.button-set input[type="radio"].error + span {
    border-color: #f23a58;
}
.button-set input[type="radio"] + span {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.button-set input[type="radio"] + span::after {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #302d75;
    border-color: #302d75;
}
.button-set input[type="radio"]:checked + span {
    border: 2px solid #302d75;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.button-set input[type="radio"]:checked + span::after {
    border: 3px solid #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.button-set .eds-checked {
    top: 1px;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3125rem;
}
.button-set .eds-checked::before {
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 1.25rem;
    height: 1.25rem;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transform: scale3d(2.3, 2.3, 1);
    /* Chrome, Safari, Opera */
    -moz-transform: scale3d(2.3, 2.3, 1);
    /* Mozilla Firefox */
    -o-transform: scale3d(2.3, 2.3, 1);
    -ms-transform: scale3d(2.3, 2.3, 1);
    /* IE 9 */
    transform: scale3d(2.3, 2.3, 1);
}
.button-set .eds-checked .check {
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: inline-block;
    background-color: var(--missio-white);
    border: 2px solid var(--missio-bdr-color);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}
.button-set .eds-checked .check::before {
    width: 0;
    height: 0;
    content: "";
    display: block;
    margin-top: -0.219rem;
    margin-left: 0.391rem;
    position: absolute;
    background: var(--primary) !important;
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    -moz-transform: rotate(45deg);
    /* Mozilla Firefox */
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    /* IE 9 */
    transform: rotate(45deg);
    -webkit-animation: checkbox-off 0.3s forwards;
    -moz-animation: checkbox-off 0.3s forwards;
    -o-animation: checkbox-off 0.3s forwards;
    -ms-animation: checkbox-off 0.3s forwards;
    animation: checkbox-off 0.3s forwards;
}
.button-set input[type="checkbox"]:focus + .eds-checked .check:after {
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.button-set input[type="checkbox"]:checked + .eds-checked .check {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
.button-set input[type="checkbox"]:checked + .eds-checked .check:before {
    color: var(--missio-white);
    background: var(--primary) !important;
    -webkit-animation: checkbox-on 0.3s forwards;
    -moz-animation: checkbox-on 0.3s forwards;
    -ms-animation: checkbox-on 0.3s forwards;
    -o-animation: checkbox-on 0.3s forwards;
    animation: checkbox-on 0.3s forwards;
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
}
.button-set input[type="checkbox"][disabled] ~ .eds-checked .check {
    border-color: #302d75;
    opacity: 0.26;
    filter: alpha(opacity=26);
}
.button-set input[type="checkbox"][disabled] + .eds-checked .check:after {
    -webkit-transform: rotate(-45deg);
    /* Chrome, Safari, Opera */
    -moz-transform: rotate(-45deg);
    /* Mozilla Firefox */
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    transform: rotate(-45deg);
    background-color: #302d75 !important;
}
.button-set input[type="checkbox"]:checked + .eds-checked:before,
.button-set input[type="radio"]:checked + .eds-checked:before {
    -webkit-animation: rippleOn 500ms;
    -moz-animation: rippleOn 500ms;
    -o-animation: rippleOn 500ms;
    -ms-animation: rippleOn 500ms;
    animation: rippleOn 500ms;
    background-color: rgba(48, 45, 117, 0.3);
}
.button-set input[type="checkbox"]:checked + .eds-checked .check:after,
.button-set input[type="radio"]:checked + .eds-checked span:after {
    -webkit-animation: rippleOn 500ms forwards;
    -moz-animation: rippleOn 500ms forwards;
    -o-animation: rippleOn 500ms forwards;
    -ms-animation: rippleOn 500ms forwards;
    animation: rippleOn 500ms forwards;
}
.button-set input[type="checkbox"]:not(:checked) + .eds-checked:before,
.button-set input[type="radio"]:not(:checked) + .eds-checked:before {
    -webkit-animation: rippleOff 500ms;
    -moz-animation: rippleOff 500ms;
    -o-animation: rippleOff 500ms;
    -ms-animation: rippleOff 500ms;
    animation: rippleOff 500ms;
    background-color: rgba(48, 45, 117, 0.3);
}

@keyframes checkbox-on {
    0% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -moz-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -ms-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        -o-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
        box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
    }
}

@keyframes rippleOn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@keyframes rippleOff {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 0.2;
        filter: alpha(opacity=20);
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

.radio {
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
.radio.column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}
.radio label {
    color: #000000;
    height: auto;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.625rem;
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    text-transform: inherit !important;
    max-width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}
.radio label strong {
    color: #333333;
    padding-left: 0.25rem;
}
.radio label span.text-green,
.radio label a {
    padding-left: 0.25rem;
}
.radio label:before {
    left: 0;
    top: 0.25rem;
    content: " ";
    background-color: var(--missio-white);
    border-radius: 50%;
    border: 2px solid var(--missio-bdr-color);
    display: inline-block;
    margin-left: 0rem;
    position: absolute;
    -webkit-transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    transition: border 0.5s ease-in-out;
    width: 20px;
    height: 20px;
    outline: 0 !important;
}
.radio label:after {
    left: 4px;
    /* 4px */
    top: 0.5rem;
    /* 8px */
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -webkit-transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    background-color: #6c757d;
    border-radius: 50%;
    content: " ";
    display: inline-block;
    margin-left: 0rem;
    position: absolute;
    transform: scale(0, 0);
    transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33), -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    width: 12px;
    height: 12px;
}
.radio input[type="radio"] {
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    outline: 0 !important;
    position: absolute;
    width: 1px;
    height: 1px;
}
.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
    filter: alpha(opacity=65);
}
.radio input[type="radio"]:focus + label::before {
    outline-offset: -2px;
    outline: 5px auto -webkit-focus-ring-color;
    outline: thin dotted;
}
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    /* Chrome, Safari, Opera */
    -moz-transform: scale(1, 1);
    /* Mozilla Firefox */
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    /* IE 9 */
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}
.radio-right label {
    padding-left: 0px;
    padding-right: 26px;
}
.radio-right label:before {
    top: 1px;
    right: 0;
    left: auto;
    margin-left: 0;
    margin-right: 0px;
    position: absolute;
    -webkit-transition: border 0.5s ease-in-out;
    -moz-transition: border 0.5s ease-in-out;
    -ms-transition: border 0.5s ease-in-out;
    -o-transition: border 0.5s ease-in-out;
    transition: border 0.5s ease-in-out;
    width: 18px;
    outline: 0 !important;
}
.radio-right label:after {
    top: 5px;
    left: auto;
    right: 4px;
    margin-left: 0px;
    margin-right: 0px;
}
.radio-right input[type="radio"] {
    position: absolute;
}
.radio.radio-inline {
    margin-top: 0;
}
.radio.radio-single label {
    height: 17px;
}
.radio-primary input[type="radio"] + label::before {
    border-color: #c7cfd8;
}
.radio-primary input[type="radio"] + label::after {
    background-color: #302d75;
}
.radio-primary input[type="radio"]:checked + label {
    color: #302d75;
}
.radio-primary input[type="radio"]:checked + label strong {
    color: #302d75;
}
.radio-primary input[type="radio"]:checked + label::before {
    border-color: #302d75;
}
.radio-primary input[type="radio"]:checked + label::after {
    background-color: #302d75;
}

.fs-14 {
    font-size: 14px;
    font-family: var(--missio-font);
}

.u-flexed,
.widget-scroll-header,
.widget-scroll-header .page-logo,
.missio-schedule-wrap,
.missio-schedule-right-body,
.missio-schedule-details,
.missio-schedule-details-wrap,
.missio-schedule-details-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex
}
.u-flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}
.u-inline-flexed,
.inline--form .inline-flex {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
}
.u-flex-direction-column,
.missio-schedule-details,
.missio-schedule-details-wrap,
.missio-schedule-details-content {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
.u-flexed-reversed {
    order: 2
}
.u-flex-direction-row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal
}
.u-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}
.u-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.u-justify-btw,
.missio-schedule-details-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}
.u-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}
.u-align-start,
.widget-scroll-header .page-logo,
.missio-schedule-right-body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start
}
.u-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center
}
.u-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end
}
.u-align-stretch,
.missio-schedule-details-wrap,
.missio-schedule-details-content {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch
}
.u-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
.u-columns .u-column1,
.u-columns .u-column2 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -moz-box-flex: 1;
    -moz-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0
}
.u-columns .u-column1.right-layout {
    min-width: 500px;
    max-width: 500px;
    margin-bottom: 1.875rem;
    padding-bottom: 1.875rem;
    border-bottom: 1px solid #CCD3DE
}
@media (max-width: 767px) {
    .u-columns .u-column1.right-layout {
        min-width: 100%;
        max-width: 500px
    }
}
.u-columns .u-column2 {
    padding-left: 0rem;
    padding-bottom: 1.25rem
}
@media (min-width: 768px) {
    .u-columns-sm {
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -ms-box-orient: horizontal;
        box-orient: horizontal
    }
    .u-columns-sm .u-column1.right-layout {
        padding-right: 1.875rem;
        border-right: 1px solid #CCD3DE;
        border-bottom: 0px none
    }
    .u-columns-sm .u-column2 {
        padding-left: 1.875rem
    }
}
@media (max-width: 640px) {
    .m-flexed {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-box-orient: vertical;
        box-orient: vertical
    }
    .m-flexed .control-label,
    .m-flexed .control-details {
        max-width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -moz-box-flex: 0;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding-left: 0rem;
        padding-right: 0rem
    }
}

/* Missio Schedules */
.missio-schedule-wrap {
    width: 100%;
}
.missio-schedule {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /*grid-column-gap: 25px;
    grid-row-gap: 25px;*/
}
.missio-schedule-card {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border: 1px solid #e8ebf0;
    -webkit-box-shadow: 0 2px 4px rgba(0,9,128,0.035),0 3px 6px rgba(0,9,128,0.05);
    -moz-box-shadow: 0 2px 4px rgba(0,9,128,0.035),0 3px 6px rgba(0,9,128,0.05);
    -ms-box-shadow: 0 2px 4px rgba(0,9,128,0.035),0 3px 6px rgba(0,9,128,0.05);
    box-shadow: 0 2px 4px rgba(0,9,128,0.035),0 3px 6px rgba(0,9,128,0.05);
    margin-bottom: 30px;
}
.missio-schedule-card_content {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 24px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.missio-schedule-card_content .event-title-header {
    color: #1D367A;
    min-height: 50px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 1.625rem;
    line-height: 1.95rem;
    line-height: 1.35;
    font-weight: 700;
    border-bottom: 1px solid rgba(2,0,1,0.1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
}
.missio-schedule-card_content .event-title-header .event-title-header-wrap {
    min-height: 44px;
    align-content: center;
}
.missio-schedule-card_content .event-title-header .event-button {
    margin-left: auto;
}
.missio-schedule-card_content .event-title-header .event-button .btn-sm {
    padding: 12px 15px;
}


.missio-schedule-card_content .event-title {
    position: relative;
    padding-left: 35px;
}
.event-badge {
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 10px;
    border: solid 2px #fff;
    border-radius: 50%;
    display: flex;
    position: absolute;
}

.missio-schedule-card_content .event-title,
.missio-schedule-card_content .event-title a {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
    transition: all 0.3s ease-in;
    font-family: var(--missio-font-two);
}
.missio-schedule-card_content .event-title {
    margin-right: 10px;
}
.missio-schedule-card_content .event-title a {
    color: var(--primary);
    transition: all 0.3s ease-in;
}
.missio-schedule-card_content .event-title a:hover,
.missio-schedule-card_content .event-title a:focus,
.missio-schedule-card_content .event-title a:active {
    color: var(--missio-primary2);
}

.missio-schedule-card_content .event-button,
.missio-schedule-card_content .event-meta,
.missio-schedule-card_content .event-title-header {
    flex-shrink: 0;
}
.missio-schedule-card_content .event-meta {
    color: #262626;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    font-size: 1.0625rem;
    line-height: 1.275rem;
    line-height: 1.25;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}
.missio-schedule-card_content .event-price {
    font-size: 18px;
    color: var(--missio-dark);
    font-weight: 700;
    font-family: var(--missio-font-two);
}
.missio-schedule-card_content .event-date {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 2px;
    color: #d1410c;
}
.missio-schedule-card_content .event-date-wrap {
    width: 80px;
    padding-right: 0;
}
.event-date-wrap .event-date {
    position: relative;
}
.event-date-wrap .event-date span.event-date-day {
    font-size: 1.5rem;
    line-height: 1.8rem;
    line-height: 1.25;
    color: #1D367A;
    font-weight: 700;
}
.event-date-wrap .event-date span.event-date-month {
    text-transform: uppercase;
}
.event-date-wrap .event-date span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(89,88,89,0.7);
}
.event-date-wrap .event-date span.event-date-month,
.event-date-wrap .event-date span.event-date-year {
    right: 16px;
    position: absolute;
}
.event-date-wrap .event-date span.event-date-month {
    top: 1px;
}
.event-date-wrap .event-date span.event-date-year {
    bottom: 1px;
}


.missio-schedule-card_content .event-venue-wrap {
    width: 100%;
    color: #636363;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
    font-family: var(--missio-font);
    max-width: calc(100% - 110px) !important;
}

.missio-schedule-card_content .event-meta div:only-of-type {
    max-width: 100% !important;
}

.missio-schedule-card:hover {
    /*-webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);*/
    -webkit-box-shadow: 0 3px 6px rgba(0,9,128,0, .1);
    -moz-box-shadow: 0 3px 6px rgba(0,9,128,0, .1);
    -ms-box-shadow: 0 3px 6px rgba(0,9,128,0, .1);
    box-shadow: 0 3px 6px rgba(0,9,128,0, .1);
}

.missio-schedule-card_content > article.missio-schedule-card:last-of-type,
.missio-schedule-card_content > article.missio-schedule-card:only-of-type {
    margin-bottom: 0 !important;
}
.missio-schedule-card_content > article.missio-schedule-card {
    box-shadow: none !important;
}

/*.missio-schedule-card_content > article.missio-schedule-card {
    border: 0 none !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}
.missio-schedule-card_content > article.missio-schedule-card > .missio-schedule-card_content {
    padding: 0 !important;
}*/

.o-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}


@media (max-width: 767px) {
    .missio-schedule-card {
        max-width: 100%;
    }
    .missio-schedule-card_content {
        padding: 20px;
    }
    
    .missio-schedule-card_content .event-title-header {
        font-size: 1.25rem;
        line-height: 1.5rem;
        line-height: 1.35;
        padding-right: 0rem;
        padding-bottom: 4.25rem;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        align-items: flex-start;
    }
    .missio-schedule-card_content .event-title {
        margin-right: 0;
    }
    .missio-schedule-card_content .event-title-header .event-button {
        left: 0;
        top: auto;
        right: auto;
        margin-left: 0;
        bottom: 0.75rem;
        margin-top: 15px;
        position: absolute !important;
    }
    .missio-schedule-card_content .event-meta {
        display: block;
    }
    .missio-schedule-card_content .event-venue-wrap {
        max-width: 100% !important;
        padding-top: 15px;
    }
    .missio-schedule-card_content .event-title-header .event-title-header-wrap {
        margin-top: 5px;
    }
}
.event-button .btn-cta,
.event-button .btn.small {
    font-size: 14px;
    padding: 12px 20px !important;
}
.event-button .fs-14 {
    font-size: 14px;
    font-family: var(--missio-font);
}


/* Detail Page */
.widget-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}
.widget-scroll-content {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    overflow-x: auto;
    overflow-x: hidden;
    position: absolute;
    padding: 1.25rem 0rem;
    padding-top: 0rem;
    -webkit-overflow-scrolling: touch
}
.widget-scroll-header {
    top: 0;
    z-index: 3;
    position: sticky;
    padding: 1.25rem;
    background-color: #fff;
    border-top-left-radius: 0.75rem;
    border-bottom: 1px solid #E0E0E0;
    -webkit-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -moz-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -ms-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1)
}
.widget-scroll-header .page-logo {
    top: 5px;
    width: auto;
    position: relative
}
.widget-scroll-body {
    padding: 1.25rem;
    padding-left: 1.5625rem
}
.missio-schedule {
    padding: 1.875rem 0rem
}
@media (min-width: 768px) {
    .missio-schedule-sm {
        padding: 2.5rem 0rem
    }
}
@media (min-width: 768px) and (min-width: 992px) {
    .missio-schedule-sm {
        padding: 3.125rem 0rem
    }
}

.missio-schedule-wrap {
    width: 100%;
    border: 1px solid #E0E0E0;
    -webkit-border-radius: .75rem;
    border-radius: .75rem;
    flex: 1 1 auto;
    /* min-height: 450px; */
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out;
    -webkit-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -moz-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -ms-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1)
}
.missio-schedule-left,
.missio-schedule-right {
    width: 50%;
    flex-shrink: 0;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out
}
.missio-schedule-left {
    position: relative;
    padding-bottom: 1.5rem;
    border-right: 1px solid #E0E0E0
}
.missio-schedule-right {
    flex: 1 1 50%
}
.missio-schedule-right-body {
    padding: 30px;
    min-height: 500px;
}

.missio-schedule-right-body #loading_div {
    height: 100%;
}

.missio-schedule-right-body .missio-select-date {
    width: 100%
}
.missio-schedule-right-body .missio-available-date {
    width: 0;
    height: 0;
    min-width: 0;
    max-width: 0;
    min-height: 0;
    display: none;
    visibility: hidden;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out
}
.missio-schedule-details {
    gap: 30px;
    height: 100%
}
.missio-schedule-details-wrap {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-transition: opacity 0.1s ease 0.25s;
    -moz-transition: opacity 0.1s ease 0.25s;
    -ms-transition: opacity 0.1s ease 0.25s;
    -o-transition: opacity 0.1s ease 0.25s;
    transition: opacity 0.1s ease 0.25s
}
.missio-schedule-details-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-top-left-radius: 0.75rem;
    background-color: #fff none repeat scroll 0 0
}
html[data-select2-id],
body[data-select2-id] {
    overflow-x: hidden !important
}
.m-selectdropdowns .form-control {
    border-width: 2px !important
}
.m-selectdropdown .form-control {
    height: 50px !important;
    max-height: 50px !important;
    border-width: 2px !important
}
.m-selectdropdown::after {
    display: none !important
}
.m-selectdropdown .select2-container--open .select2-selection--single,
.m-selectdropdown .select2-container--open .select2-selection--multiple {
    border-color: #49a7d9 !important
}
.select2-dropdown,
.select2-search__field {
    border-color: #49a7d9 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #49a7d9 !important;
}
.select2-search__field {
    outline: none !important
}
.select2-results__option,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0.5rem !important;
    font-size: 15px !important;
}
.flex-shrink-0 {
    flex-shrink: 0
}
.datepicker.datepicker-inline {
    padding: 0;
    width: 100%;
    max-width: 425px;
}
.datepicker.datepicker-inline .datepicker-days {
    width: 100%
}
.datepicker.datepicker-inline .datepicker-days table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 8px;
    border-collapse: separate
}
.datepicker.datepicker-inline .datepicker-days table thead tr:first-of-type {
    margin-bottom: 15px
}
.datepicker.datepicker-inline .datepicker-days table thead th {
    color: #020001;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev,
.datepicker.datepicker-inline .datepicker-days table thead th.next {
    color: #020001;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    position: relative;
    font-size: 0;
    text-indent: -9999rem;
    color: rgba(89, 89, 89, 0)
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev::before,
.datepicker.datepicker-inline .datepicker-days table thead th.next::before {
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    content: " ";
    position: absolute;
    background-color: transparent;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' role='img'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4806 15.9941C13.8398 15.6529 13.8398 15.0998 13.4806 14.7586L8.47062 10L13.4806 5.24142C13.8398 4.90024 13.8398 4.34707 13.4806 4.00589C13.1214 3.66471 12.539 3.66471 12.1798 4.00589L6.51941 9.38223C6.1602 9.72342 6.1602 10.2766 6.51941 10.6178L12.1798 15.9941C12.539 16.3353 13.1214 16.3353 13.4806 15.9941Z' fill='%23737373'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat
}
.datepicker.datepicker-inline .datepicker-days table thead th.next {
    color: #f00
}
.datepicker.datepicker-inline .datepicker-days table thead th.next::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' role='img'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.51941 15.9941C6.1602 15.6529 6.1602 15.0998 6.51941 14.7586L11.5294 10L6.51941 5.24142C6.1602 4.90024 6.1602 4.34707 6.51941 4.00589C6.87862 3.66471 7.46101 3.66471 7.82022 4.00589L13.4806 9.38223C13.8398 9.72342 13.8398 10.2766 13.4806 10.6178L7.82022 15.9941C7.46101 16.3353 6.87862 16.3353 6.51941 15.9941Z' fill='%2349A7D9'%3E%3C/path%3E%3C/svg%3E")
}
.datepicker.datepicker-inline .datepicker-days table thead th.datepicker-switch {
    pointer-events: none !important;
    animation: slideIn .2s ease-out .1s normal both;
}
.datepicker.datepicker-inline .datepicker-days table tbody td {
    color: #595959;
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
    position: relative;
    text-align: center;
    border-radius: 0.375rem;
    border: 1px solid transparent
}
.datepicker.datepicker-inline .datepicker-days table tbody td.day.old,
.datepicker.datepicker-inline .datepicker-days table tbody td.day.new {
    pointer-events: none;
    color: rgba(89, 89, 89, 0.25)
}
.datepicker.datepicker-inline .datepicker-days table tbody td.today {
    color: rgb(44,103,246);
    position: relative;
    font-weight: 700;
    background: rgba(44,103,246,0.1);
    background: -moz-linear-gradient(legacy-direction(to bottom), rgba(44,103,246,0.1) 20%, rgba(44,103,246,0.1) 40%, rgba(44,103,246,0.1) 100%);
    background: -webkit-linear-gradient(legacy-direction(to bottom), rgba(44,103,246,0.1) 20%, rgba(44,103,246,0.1) 40%, rgba(44,103,246,0.1) 100%);
    background: linear-gradient(to bottom, rgba(44,103,246,0.1) 20%, rgba(44,103,246,0.1) 40%, rgba(44,103,246,0.1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="rgba(44,103,246,0.1) 20%, rgba(44,103,246,0.1) 40%, rgba(44,103,246,0.1) 100%")
}
.datepicker.datepicker-inline .datepicker-days table tbody td.today::before {
    top: 55%;
    left: 50%;
    width: 4px;
    height: 4px;
    content: " ";
    margin-top: 13px;
    position: absolute;
    background-color: rgba(44,103,246,1);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.datepicker.datepicker-inline .datepicker-days table tbody td.active {
    color: #FFF !important;;
    text-shadow: none !important;
    background-color: rgba(44,103,246,1) !important;;
}

.datepicker.datepicker-inline .datepicker-days table tbody td.day:not(.old):not(.disabled-date):not(.new),
.datepicker.datepicker-inline .datepicker-days table tbody td.available {
    font-weight: 700;
    color: rgb(44,103,246);
    text-shadow: none !important;
    background-color: rgba(44,103,246,0.1);
    border-radius: 50%;
}
.datepicker.datepicker-inline .datepicker-days table tbody td.today.active::before {
    background-color: rgba(255,255,255,1);
}

.datepicker.datepicker-inline .datepicker-days table tbody td.disabled,
.datepicker.datepicker-inline .datepicker-days table tbody td.disabled-date {
    color: #595959;
    font-size: 16px;
    font-weight: normal !important;
    color: rgba(89,89,89,0.5) !important;
    pointer-events: none !important;
    background-color: rgba(255,255,255,1) !important;
}

.event-calendar-wrap {
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    max-width: 900px;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out;
}
.event-calendar-wrap-large {
    min-width: 900px;
    max-width: 1150px
}
.event-calendar-wrap-large .missio-schedule-left {
    width: 100%;
    max-width: 35%
}
.event-calendar-wrap-large .missio-schedule-right {
    width: 100%;
    max-width: 65%
}
.event-calendar-wrap-large .missio-schedule-right .missio-select-date {
    width: calc(100% - 250px)
}
.event-calendar-wrap-large .missio-schedule-right .missio-available-date {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    visibility: visible;
    display: block
}
.event-calendar-wrap-large .missio-schedule-right .missio-available-date .widget-scroll {
    min-height: 500px;
    max-height: 500px
}
.no-radius {
    border-radius: 0 !important
}
.no-shadow {
    box-shadow: none !important
}
.scrollY,
.scrollX {
    scrollbar-color: #807f91 transparent
}
.scrollY, .select2-results__options {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scroll: touch;
    scrollbar-width: thin;
    -webkit-border-radius: 0;
    border-radius: 0
}
@media (max-width: 767px) {
    .m-w-100 {
        width: 100% !important;
        max-width: 100% !important
    }
    .missio-schedule {
        overflow: hidden
    }
    .missio-schedule-wrap {
        display: block !important;
		max-width: 390px !important;
		margin-inline: 0;
    }
    .missio-schedule-left,
    .missio-schedule-right {
        width: 100%;
        flex: 1
    }
    .missio-schedule-left {
        border-right: 0 none;
        border-bottom: 1px solid #E0E0E0
    }
    .missio-schedule-right-body {
        padding: 1.5625rem 1.25rem
    }
    .missio-schedule .Missio__Event__Details {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 0 none
    }
    .widget-scroll-content {
        position: relative
    }
    .widget-scroll-header {
        border-top-right-radius: 0.75rem
    }
}

.loaders {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #020001;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -ms-box-orient: horizontal;
    box-orient: horizontal
}
.loaders .loader {
    height: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
.loaders .ball-clip-rotate-multiple {
    position: relative
}
.ball-clip-rotate-multiple>div {
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 2px solid #49a7d9;
    border-bottom-color: transparent;
    border-top-color: transparent;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
    animation: rotate 1s 0s ease-in-out infinite
}
.ball-clip-rotate-multiple>div:last-child {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    display: inline-block;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    border-color: #49a7d9 transparent #49a7d9 transparent;
    -webkit-animation-direction: reverse;
    animation-direction: reverse
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6)
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1)
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1)
    }
    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6)
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1)
    }
}

.Missio__Event__Section {
    width: 100%;
    margin-top: .625rem;
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
    min-height: calc(100vh - 185px)
}
.Missio__Container__Wrap {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0rem -.625rem;
    margin-bottom: 1.5625rem;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.Missio__Container__Wrap:last-child,
.Missio__Container__Wrap:only-child {
    margin-bottom: 0rem
}
@media (max-width: 600px) {
    .Missio__Container__Wrap {
        display: block;
        margin-left: 0rem;
        margin-right: 0rem
    }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
    .Missio__Container__Wrap {
        display: block;
        margin-left: 0rem;
        margin-right: 0rem
    }
}
.Missio__Block__Content {
    min-height: 155px;
    position: relative;
    padding: 1.25rem;
    margin: 0rem .625rem;
    background-color: #e6e9ec;
    margin-bottom: 1.25rem;
    padding-bottom: 1.875rem;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    flex: 1 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    -webkit-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    -khtml-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    -moz-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    -ms-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    -o-box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05);
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05)
}
@media (max-width: 600px) {
    .Missio__Block__Content {
        width: 100%;
        display: block;
        margin: 0rem;
        min-height: inherit;
        padding: 1.25rem .9375rem;
        margin-bottom: 1.25rem;
        flex: 1 0 calc(100% - 0px);
        max-width: calc(100% - 0px)
    }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
    .Missio__Block__Content {
        width: 100%;
        margin: 0rem;
        min-height: inherit;
        padding: 1.25rem .9375rem;
        margin-bottom: 1.25rem;
        flex: 1 0 calc(100% - 0px);
        max-width: calc(100% - 0px)
    }
}
.Missio__Event__Image {
    display: block;
    overflow: hidden;
    max-width: 110px;
    -webkit-border-radius: 25px 25px 25px 25px;
    border-radius: 25px 25px 25px 25px
}
.Missio__Event__Image img {
    -webkit-border-radius: 25px 25px 25px 25px;
    border-radius: 25px 25px 25px 25px
}
@media (max-width: 600px) {
    .Missio__Event__Image {
        max-width: 80px;
        margin: 0px auto;
        text-align: center;
        margin-bottom: .625rem;
        -webkit-border-radius: 20px 20px 20px 20px;
        border-radius: 20px 20px 20px 20px
    }
    .Missio__Event__Image img {
        -webkit-border-radius: 20px 20px 20px 20px;
        border-radius: 20px 20px 20px 20px
    }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
    .Missio__Event__Image {
        max-width: 100px;
        -webkit-border-radius: 10px 10px 10px 10px;
        border-radius: 10px 10px 10px 10px
    }
    .Missio__Event__Image img {
        -webkit-border-radius: 10px 10px 10px 10px;
        border-radius: 10px 10px 10px 10px
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Image {
        max-width: 80px;
        -webkit-border-radius: 10px 10px 10px 10px;
        border-radius: 10px 10px 10px 10px
    }
    .Missio__Event__Image img {
        -webkit-border-radius: 10px 10px 10px 10px;
        border-radius: 10px 10px 10px 10px
    }
}
.Missio__Event__Content {
    width: 100%;
    margin-left: 0px;
    position: relative
}
@media (max-width: 600px) {
    .Missio__Event__Content {
        margin-left: 0px
    }
}
.Missio__Event__Content .event-title {
    color: #1D367A;
    position: relative;
    margin-bottom: 10px;
    padding-right: 60px;
    padding-bottom: 10px;
    font-size: 1.625rem;
    line-height: 1.95rem;
    line-height: 1.35;
    font-weight: 700;
    border-bottom: 1px solid rgba(2, 0, 1, 0.1)
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
        line-height: 1.35
    }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
    .Missio__Event__Content .event-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
        line-height: 1.35
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-title {
        font-size: 1.375rem;
        line-height: 1.65rem;
        line-height: 1.35
    }
}
.Missio__Event__Content .event-title .field-title {
    color: #1D367A
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-title .field-title {
        width: 100%;
        display: block;
        min-width: 210px;
        max-width: 210px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }
}
@media screen and (min-width: 992px) and (max-width: 1299px) {
    .Missio__Event__Content .event-title .field-title {
        width: 100%;
        display: block;
        min-width: 340px;
        max-width: 340px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }
}
@media (min-width: 1300px) {
    .Missio__Event__Content .event-title .field-title {
        width: 100%;
        display: block;
        min-width: 420px;
        max-width: 420px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }
}
.Missio__Event__Content .event-price {
    top: 50%;
    right: 0px;
    color: #49a7d9;
    position: absolute;
    font-size: 1.5rem;
    line-height: 1.8rem;
    line-height: 1.25;
    margin-top: -.3125rem;
    font-weight: 700;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-price {
        font-size: 1.25rem;
        line-height: 1.5rem;
        line-height: 1.25
    }
}
.Missio__Event__Content .event-meta {
    color: #262626;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    font-size: 1.0625rem;
    line-height: 1.275rem;
    line-height: 1.25;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-meta {
        font-size: .9375rem;
        line-height: 1.125rem;
        line-height: 1.25;
        margin-bottom: .9375rem
    }
}
.Missio__Event__Content .event-date-wrap {
    width: 22%;
    padding-right: 10px
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-date-wrap {
        width: auto;
        padding-right: 60px
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-date-wrap {
        width: auto;
        padding-right: 60px
    }
}
.Missio__Event__Content .event-date-wrap .event-date {
    position: relative
}
.Missio__Event__Content .event-date-wrap .event-date span {
    color: rgba(89, 88, 89, 0.7);
    display: block;
    font-size: 12px;
    line-height: 1.2
}
.Missio__Event__Content .event-date-wrap .event-date span.event-date-day {
    font-size: 1.5rem;
    line-height: 1.8rem;
    line-height: 1.25;
    color: #1D367A;
    font-weight: 700
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-date-wrap .event-date span.event-date-day {
        font-size: 1.25rem;
        line-height: 1.5rem;
        line-height: 1.25
    }
}
.Missio__Event__Content .event-date-wrap .event-date span.event-date-month {
    top: 1px;
    right: 16px;
    position: absolute
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-date-wrap .event-date span.event-date-month {
        top: -2px;
        left: 44px;
        right: auto
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-date-wrap .event-date span.event-date-month {
        top: -2px;
        left: 55px;
        right: auto
    }
}
.Missio__Event__Content .event-date-wrap .event-date span.event-date-year {
    bottom: 1px;
    right: 16px;
    position: absolute
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-date-wrap .event-date span.event-date-year {
        left: 44px;
        right: auto;
        bottom: -2px
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-date-wrap .event-date span.event-date-year {
        left: 55px;
        right: auto;
        bottom: -2px
    }
}
.Missio__Event__Content .event-time-wrap {
    width: 22%;
    padding-right: 10px
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-time-wrap {
        width: auto;
        padding-right: 15px
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .Missio__Event__Content .event-time-wrap {
        width: auto;
        padding-right: 15px
    }
}
.Missio__Event__Content .event-venue-wrap {
    width: 78% !important
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-venue-wrap {
        width: auto
    }
}
.Missio__Event__Content .event-venue-wrap .event-venue {
    line-height: 1.5;
    margin-bottom: 1.875rem
}
.Missio__Event__Content .event-venue-wrap .event-venue span {
    margin: 0px 2px
}
.missio-schedule-card_content .event-venue-wrap p:last-of-type,
.missio-schedule-card_content .event-venue-wrap p:only-of-type {
    margin-bottom: 0 !important;
}
.Missio__Event__Content .event-button {
    position: relative
}
@media (max-width: 600px) {
    .Missio__Event__Content .event-button {
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }
}
.Missio__Event__Content .event-button .button.blue {
    border-color: #49a7d9;
    background-color: #49a7d9
}
.Missio__Event__Content .event-button .button.blue:hover,
.Missio__Event__Content .event-button .button.blue:focus,
.Missio__Event__Content .event-button .button.blue:active {
    color: #fff;
    border-color: #349dd5;
    background-color: #349dd5
}
.flex_CHVL,
.Missio__Event__Timezone {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}
.flex_CHV,
.Missio__Event__Type__Head {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.Missio__Event__Type {
    width: 100%;
}
.Missio__Event__Type__Head {
    width: 100%;
    padding: 35px 0px 25px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
.Missio__Event__Type__Head h3 {
    font-size: 2.5rem;
    line-height: 3rem;
    color: #1D367A !important
}
.Missio__Event__Type__Head .link-blue {
    color: #49a7d9 !important
}
.Missio__Event__User {
    width: 90px;
    padding: 5px;
    height: 90px;
    display: block;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 10px;
    background-color: #e0e7ee
}
.Missio__Event__User>img {
    width: 80px;
    height: 80px;
    border-radius: 100%
}
.Missio__Event__Type__Subheader {
    height: 100%;
    padding: 1.5625rem 0rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-bottom: 1px solid #CCD3DE;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.Missio__Event__Type__Subheader .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}
@media (max-width: 767px) {
    .Missio__Event__Type__Subheader .row {
        display: block
    }
}
.Missio__Event__Type__Subheader .marker {
    float: left;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px
}
.Event__Name h3 {
    margin: 0px;
    padding: 0px;
    color: #666a73;
    font-size: 16px;
    font-weight: 600
}
.Missio__Event__Timezone {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}
@media (max-width: 767px) {
    .Missio__Event__Timezone {
        margin-top: 15px
    }
}
.Missio__Event__Timezone .dropdown {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end
}
.Missio__Event__Timezone .dropdown>.time__title {
    width: 130px;
    white-space: nowrap;
    padding-right: .625rem
}
@media (max-width: 767px) {
    .Missio__Event__Timezone .dropdown {
        width: 100%
    }
}
.Missio__Event__Timezone .dropdown .selectdropdown .form-control {
    border-width: 2px;
    padding-left: .3125rem
}
.Missio__Event__Timezone .dropdown-toggle {
    color: #1D367A;
    text-decoration: none !important
}
.Missio__Event__Timezone .dropdown-toggle:after {
    width: 0;
    height: 0;
    content: ' ';
    position: relative;
    margin-left: .255em;
    display: inline-block;
    vertical-align: .255em;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}
.Missio__Event__Timezone .open .dropdown-toggle:after {
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}
.Missio__Event__Timezone .dropdown-toggle span:after {
    top: 5px;
    right: 20px;
    color: #a8a8a8;
    font-size: 14px;
    position: absolute;
    content: attr(data-time)
}
.Missio__Event__Timezone .dropdown-menu {
    min-width: 360px;
    max-width: 360px;
    margin-top: 15px;
    padding-top: 10px;
    border-radius: 0px;
    padding-bottom: 0px;
    left: auto !important;
    right: -10px !important;
    border: 1px solid #c2cad7;
    -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075);
    -khtml-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075);
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.075)
}
@media (max-width: 480px) {
    .Missio__Event__Timezone .dropdown-menu {
        min-width: 100%;
        max-width: 100%;
        right: 10px !important
    }
}
.Missio__Event__Timezone .dropdown-menu:before {
    width: 0;
    height: 0;
    top: -10px;
    right: 15px;
    content: ' ';
    border-top: 0;
    position: absolute;
    display: inline-block;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #c2cad7;
    border-left: 10px solid transparent
}
.Missio__Event__Timezone .dropdown-menu:after {
    width: 0;
    height: 0;
    top: -9px;
    right: 16px;
    content: ' ';
    border-top: 0;
    position: absolute;
    display: inline-block;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fff;
    border-left: 9px solid transparent
}
.Missio__Event__Timezone .dropdown-menu-list.scroller {
    margin: 0;
    overflow: hidden;
    padding: 0 12px 0 0
}
.slimScrollBar {
    cursor: pointer;
    margin-right: 5px;
    opacity: 0.5 !important;
    border-radius: 1px !important
}
.slimScrollBar:hover {
    opacity: 0.75 !important
}
.Missio__Event__Timezone .dropdown-menu-list,
.Missio__Event__Timezone .dropdown-menu-list li,
.timezones-list,
.timezones-list li {
    margin: 0px;
    padding: 0px;
    list-style: none
}
.Missio__Event__Timezone .dropdown-menu-list .option_group {
    color: #1D367A;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
    padding: 5px 70px 5px 15px
}
.Missio__Event__Timezone .dropdown-menu-list .timezones-list {
    margin-bottom: 20px
}
.Missio__Event__Timezone .dropdown-menu-list .timezones-list:last-child {
    margin-bottom: 20px
}
.Missio__Event__Timezone .dropdown-menu-list .timezones-list .timezone {
    cursor: pointer;
    position: relative;
    padding: 5px 70px 5px 15px
}
.Missio__Event__Timezone .dropdown-menu-list .timezones-list .timezone:after {
    top: 5px;
    right: 10px;
    color: #a8a8a8;
    position: absolute;
    font-size: .875rem;
    line-height: 1.05rem;
    content: attr(data-time)
}
.Missio__Week__View {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.1875rem 0rem;
    padding-bottom: 4.6875rem
}
@media (max-width: 767px) {
    .Missio__Week__View {
        padding-bottom: 3.125rem
    }
}
.section__title {
    width: 100%;
    display: block;
    margin-bottom: 1.25rem
}
.section__title h3 {
    margin: 0px;
    font-size: 20px;
    font-weight: 700
}
.Missio__Week__View__Wrapper {
    width: 100%;
    max-width: 384px;
    position: relative;
    margin-bottom: 1.25rem
}
.Missio__Week__View__Day {
    text-align: center;
    position: relative;
    vertical-align: top;
    display: inline-block;
    border-right: 1px solid transparent
}
.Missio__Week__View__Day .status {
    color: #CCD3DE;
    font-size: .875rem;
    line-height: 1.05rem
}
.Missio__Week__View__Day .today {
    left: 0px;
    top: -10px;
    width: 100%;
    font-weight: 700;
    position: absolute;
    text-transform: uppercase
}
.Missio__Week__View__Day__Picker {
    width: 85px;
    height: 85px;
    padding: 5px;
    cursor: pointer;
    margin: 10px auto;
    position: relative;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    vertical-align: middle;
    background: #49a7d9;
    background: #49a7d9;
    background: -moz-linear-gradient(legacy-direction(to bottom), #49a7d9 20%, #349dd5 40%, #298fc6 100%);
    background: -webkit-linear-gradient(legacy-direction(to bottom), #49a7d9 20%, #349dd5 40%, #298fc6 100%);
    background: linear-gradient(to bottom, #49a7d9 20%, #349dd5 40%, #298fc6 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="#49a7d9 20%,#349dd5 40%,#298fc6 100%");
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.Missio__Week__View__Day__Picker:before {
    top: 4px;
    left: 4px;
    right: 4px;
    z-index: 1;
    bottom: 4px;
    content: ' ';
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background-color: #fff;
    -webkit-border-radius: 14px;
    border-radius: 14px
}
.Missio__Week__View__Day__Picker__Details {
    z-index: 10;
    position: relative
}
.Missio__Week__View__Day.unavailable .Missio__Week__View__Day__Picker {
    color: #9fabb7;
    cursor: default;
    background: #a8a8a8;
    background: #a8a8a8;
    background: -moz-linear-gradient(legacy-direction(to bottom), #a8a8a8 0%, #9fabb7 100%);
    background: -webkit-linear-gradient(legacy-direction(to bottom), #a8a8a8 0%, #9fabb7 100%);
    background: linear-gradient(to bottom, #a8a8a8 0%, #9fabb7 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="#a8a8a8 0%,#9fabb7 100%")
}
.Missio__Week__View__Day.separator {
    border-right: 1px solid #e0e7ee
}
.Missio__Week__View__Day__Picker .Day__View {
    color: #666a73;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.275rem;
    text-decoration: none !important
}
.Missio__Week__View__Day__Picker .Date__View {
    color: #bbc8d4;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.05rem;
    text-decoration: none !important
}
.Missio__Week__View__Day__Picker:hover,
.Missio__Week__View__Day__Picker:hover * {
    color: #49a7d9;
    text-decoration: none !important
}
.Missio__Week__View__Day.unavailable .Missio__Week__View__Day__Picker .Day__View {
    color: #bbc8d4
}
.Indicator {
    width: 100%;
    height: 10px;
    font-size: 0px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed #e0e7ee
}
.Indicator .division {
    height: 20px;
    max-height: 20px;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    border-left: 2px solid #e0e7ee;
    border-right: 2px solid #e0e7ee;
    box-sizing: border-box;
    -webkit-box-sizing: border-box
}
.Indicator .division.EndofWeek {
    width: 75%
}
.Indicator .division.StartofWeek {
    width: 25%
}
.Indicator .division:first-child {
    border-left: none
}
.Indicator .division:last-child {
    border-right: none
}
.Indicator .division .label {
    padding: 0 6px;
    color: #e0e7ee;
    margin-top: 2px;
    background: #fff;
    display: inline-block;
    font-size: .75rem;
    line-height: .9rem;
    font-weight: 700;
    text-transform: uppercase
}
.Missio__Week__View__Day__Picker__Details .arrow-right {
    display: none
}
.Missio__Week__View__Day__Picker__Details .arrow-right .svg_icon {
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    fill: #49a7d9
}
.Missio__Week__View__Wrapper .Previous__Days,
.Missio__Week__View__Wrapper .Next__Days {
    top: 42.5%;
    width: 30px;
    height: 30px;
    fill: #49a7d9;
    cursor: pointer;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.Missio__Week__View__Wrapper .Previous__Days {
    left: 0px
}
.Missio__Week__View__Wrapper .Next__Days {
    right: 0px
}
.Missio__Week__View__Wrapper .Previous__Days .svg_icon,
.Missio__Week__View__Wrapper .Next__Days .svg_icon {
    width: 30px;
    height: 30px;
    fill: #49a7d9;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.Missio__Week__View__Wrapper .Previous__Days .svg_icon {
    -webkit-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}
.Missio__Week__View__Wrapper .Previous__Days .svg_icon:hover,
.Missio__Week__View__Wrapper .Next__Days .svg_icon:hover {
    fill: #78d1f9
}
.Missio__Week__View__Wrapper .Previous__Days.disabled .svg_icon,
.Missio__Week__View__Wrapper .Next__Days.disabled .svg_icon {
    fill: #e0e7ee !important
}
.Timing__Slot__list {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto
}
.Timing__Slot__lists,
.Timing__Slot__lists > li {
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 0px;
    list-style: none;
    display: inline-block
}
.Timing__Slot__lists > li {
    font-size: 0px;
    position: relative;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.Timing__Slot__lists > li:last-of-type {
    margin-bottom: 0
}
.Timing__Slot__lists .button-time,
.Timing__Slot__lists .button-confirm {
    float: left;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
    background-color: #49a7d9;
    border: 2px solid #49a7d9;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 7px 18px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 7px 18px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 7px 18px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 7px 18px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05), 0 7px 18px rgba(0, 0, 0, 0.05);
}
.Timing__Slot__lists > li.is--selected .button-time,
.Timing__Slot__lists > li.is--selected .button-confirm {
    width: 48%;
    float: left;
    text-align: center;
}
.Timing__Slot__lists > li.is--selected .button-time {
    color: #fff;
    cursor: default;
    margin-right: 4%;
    background-color: #323232;
    border: 2px solid #323232;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}
.Timing__Slot__lists > li.is--selected .button-confirm {
    color: #fff;
    background-color: #49a7d9;
    border: 2px solid #49a7d9;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}
.Timing__Slot__lists > li .button-confirm {
    display: none
}
.Timing__Slot__lists > li.is--selected .button-confirm {
    display: inline-block
}
.Timing__Slot__lists > li .button-time {
    width: 100%
}
.Timing__Slot__lists > li.noon {
    margin-top: 40px;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 1px solid #e0e7ee
}
.Timing__Slot__lists > li.noon > span {
    top: 50%;
    left: 50%;
    color: #bbc8d4;
    font-size: 15px;
    padding: 0px 6px;
    font-weight: 700;
    position: absolute;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.Missio__Event__Details,
.Missio__Event__Details > li {
    margin: 0px;
    padding: 0px;
    list-style: none
}
.Missio__Event__Details > li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px
}
.Missio__Event__Details > li:first-child {
    color: #1D367A;
    font-size: 20px;
    font-weight: 700
}
.Missio__Event__Details > li:empty {
    display: none !important
}
.Missio__Event__Details > li .rounded__marker {
    top: 6px;
    left: 0px;
    width: 20px;
    height: 20px;
    content: ' ';
    position: absolute;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #49a7d9;
}
.Missio__Event__Details > li.timings::before,
.Missio__Event__Details > li.timezone::before,
.Missio__Event__Details > li.name::before,
.Missio__Event__Details > li.location::before,
.Missio__Event__Details > li.duration::before,
.Missio__Event__Details > li.tags::before,
.Missio__Event__Details > li.desc::before,
.Missio__Event__Details > li.person-name::before,
.Missio__Event__Details > li.phone::before,
.Missio__Event__Details > li.email::before,
.Missio__Event__Details > li.credit_card::before {
    top: 2px;
    left: 0px;
    width: 20px;
    height: 20px;
    content: ' ';
    position: absolute;
    margin-right: 10px;
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center
}
.Missio__Event__Details > li.timings::before,
.m-former--time ul>li.timings::before {
    background-image: url("../images/icons/24-hours.svg")
}
.Missio__Event__Details > li.timings,
.Missio__Event__Details > li > a {
    color: #49a7d9
}
.Missio__Event__Details > li.timezone::before,
.m-former--time ul>li.timezone::before {
    background-image: url("../images/icons/globe.svg")
}
.Missio__Event__Details > li.name::before {
    background-image: url("../images/icons/home.svg")
}
.Missio__Event__Details > li.credit_card::before {
    background-image: url("../images/icons/cc.svg")
}
.Missio__Event__Details > li.location::before,
.m-former--time ul>li.location::before {
    background-image: url("../images/icons/target.svg")
}
.Missio__Event__Details > li.duration::before,
.m-former--time ul>li.duration::before {
    background-image: url("../images/icons/duration.svg")
}
.Missio__Event__Details > li.tags::before {
    background-image: url("../images/icons/tag.svg")
}
.Missio__Event__Details > li.desc::before {
    background-image: url("../images/icons/description.svg")
}
.Missio__Event__Details > li.person-name::before,
.m-former--time ul>li.person-name::before {
    background-image: url("../images/icons/user.svg")
}
.Missio__Event__Details > li.phone::before,
.m-former--time ul>li.phone::before {
    background-image: url("../images/icons/phone.svg")
}
.Missio__Event__Details > li.email::before,
.m-former--time ul>li.email::before {
    background-image: url("../images/icons/email.svg")
}
.Enter__Details {
    padding-left: 0;
}
@media (max-width: 767px) {
    .Enter__Details {
        padding-left: 0px;
    }
}
.Enter__Details .row.form-group {
    margin-left: -10px;
    margin-right: -10px
}
.Enter__Details .form-group .button.blue {
    color: #fff;
    border-color: #49a7d9 !important;
    background-color: #49a7d9 !important
}
.Enter__Details.bdm {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #CCD3DE
}
.Enter__Details .form-group {
    margin: 0px 0px 15px 0px
}
.Enter__Details .form-group .control-label {
    padding: 0px;
    font-size: 14px;
    line-height: 1;
    color: #666a73;
    cursor: pointer;
    font-weight: 500;
    margin: 0px 0px 8px 0px
}
.req {
    color: #ff0000
}
.Enter__Details .form-group .form-control {
    height: auto;
    padding: 12px;
    height: 50px !important;
    font-size: 15px !important;
    box-shadow: none !important;
    border: 2px solid #CCD3DE !important;
    -webkit-border-radius: 5px !important;
    border-radius: 5px !important
}
.Enter__Details .form-group .form-control:focus {
    box-shadow: none !important;
    border: 2px solid #49a7d9 !important;
    -webkit-border-radius: 5px !important;
    border-radius: 5px !important
}
.Missio__Event__Details {
    padding-right: 40px
}
.hidden-xs,
.visible-lg {
    display: none
}
@media (max-width: 767px) {
    .Missio__Event__Details {
        padding-right: 0px
    }
    .hidden-xs {
        display: block !important
    }
    .today,
    .Indicator {
        display: none
    }
    .data-today:after {
        color: #9fabb7;
        font-size: 13px;
        margin-left: 5px;
        text-transform: uppercase;
        content: attr(data-today)
    }
    .status {
        top: 50%;
        right: 65px;
        color: #9fabb7;
        position: absolute;
        font-size: .8125rem;
        line-height: .975rem;
        -webkit-transform: translateY(-50%);
        -khtml-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .Missio__Week__View {
        clear: both;
        padding-left: 10px;
        padding-right: 10px
    }
    .Missio__Week__View__Day {
        float: none;
        width: 100%;
        padding: 0px;
        display: block;
        max-width: 100%;
        border: 1px solid #e0e7ee;
        border-bottom: 0px none
    }
    .Missio__Week__View__Day:last-child,
    .Missio__Week__View__Day.last {
        border: 1px solid #e0e7ee;
        border-bottom: 1px solid #e0e7ee
    }
    .Missio__Week__View__Day__Picker {
        margin: 0px;
        width: 100%;
        height: auto;
        display: block;
        text-align: left;
        border-radius: 0px;
        padding: 1.25rem .625rem;
        background-color: #fff;
        background: #fff;
        background: -moz-linear-gradient(legacy-direction(to bottom), #fff 0%, #fff 100%);
        background: -webkit-linear-gradient(legacy-direction(to bottom), #fff 0%, #fff 100%);
        background: linear-gradient(to bottom, #fff 0%, #fff 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="#fff 0%,#fff 100%")
    }
    .Missio__Week__View__Day.unavailable .Missio__Week__View__Day__Picker {
        background-color: #fbfbfb;
        background: #fbfbfb;
        background: -moz-linear-gradient(legacy-direction(to bottom), #fbfbfb 0%, #fbfbfb 100%);
        background: -webkit-linear-gradient(legacy-direction(to bottom), #fbfbfb 0%, #fbfbfb 100%);
        background: linear-gradient(to bottom, #fbfbfb 0%, #fbfbfb 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="#fbfbfb 0%,#fbfbfb 100%")
    }
    .Missio__Week__View__Day__Picker:before {
        display: none
    }
    .Missio__Week__View__Day__Picker__Details .arrow-right {
        top: 50%;
        right: 0px;
        width: 36px;
        height: 36px;
        padding: 10px;
        color: #49a7d9;
        font-size: 20px;
        border-radius: 50%;
        position: absolute;
        display: inline-block;
        border: 1px solid #49a7d9;
        -webkit-transform: translateY(-50%);
        -khtml-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .unavailable .arrow-right,
    .Missio__Week__View__Wrapper .Previous__Days,
    .Missio__Week__View__Wrapper .Next__Days {
        display: none
    }
    .Timing__Slot__list {
        max-width: 100%
    }
    .Missio__Event__Details {
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        border-bottom: 3px double #e0e7ee
    }
    .Missio__Week__View__Wrapper,
    .slick-slider {
        margin-bottom: 0px !important
    }
    .Missio__Week__View .slick-list {
        padding-bottom: 0px !important
    }
}
@media (min-width: 768px) {
    .visible-lg {
        display: block !important
    }
}
@media (max-width: 480px) {
    .Missio__Week__View__Day__Picker {
        padding: .9375rem
    }
    .Missio__Week__View__Day__Picker .Day__View {
        margin-bottom: .3125rem
    }
    .Missio__Week__View__Day__Picker .Date__View {
        font-size: .875rem;
        line-height: 1.05rem
    }
}
@media (max-width: 767px) {
    .slick-track,
    #Scheduler .owl-stage {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-flex-flow: row wrap;
        -moz-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center
    }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
    #Scheduler .owl-stage .owl-item {
        width: 50% !important;
        max-width: 50% !important;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        justify-content: flex-start;
        flex: 1 0 50%;
        max-width: 50%
    }
    #Scheduler .owl-stage .owl-item .item {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important
    }
}
#Scheduler.scheduler-slide .owl-nav {
    top: 50%;
    right: 0px;
    width: 100%;
    bottom: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    pointer-events: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between
}
@media (max-width: 576px) {
    #Scheduler.scheduler-slide .owl-nav {
        top: 0px;
        bottom: auto;
        display: none !important
    }
}
@media screen and (min-width: 577px) and (max-width: 767px) {
    #Scheduler.scheduler-slide .owl-nav {
        top: -80px;
        bottom: auto;
        display: none !important
    }
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-] {
    left: 0;
    top: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
    width: 24px;
    height: 24px;
    margin: 0rem .125rem;
    background-color: #49a7d9;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-].disabled {
    background-color: rgba(89, 88, 89, 0.7)
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-next] {
    left: auto;
    right: 0px;
    margin-right: -1.5625rem
}
@media (max-width: 576px) {
    #Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-next] {
        margin-right: 0rem
    }
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-prev] {
    left: 0px;
    right: auto;
    font-size: 0px;
    margin-left: -1.5625rem
}
@media (max-width: 576px) {
    #Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-prev] {
        margin-left: 0rem
    }
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-prev]:before,
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-next]:before {
    padding: 0px;
    content: " ";
    display: block;
    font-size: 20px;
    font-family: 'feather' !important
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-prev]:before {
    content: "\e843"
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-next]:before {
    content: "\e844"
}
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-prev] span,
#Scheduler.scheduler-slide.owl-carousel.owl-theme .owl-nav [class*=owl-next] span {
    font-size: 0px;
    opacity: 0;
    filter: alpha(opacity=0)
}
.attachments-browser {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e0e7ee
}
.media-attachments {
    width: 75%;
    padding: 20px;
    padding-right: 10px;
    display: inline-block
}
.media-attachments .attachments {
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none
}
.media-attachments .attachments.mediascroller {
    padding: 0px;
    overflow: hidden;
    padding-right: 10px
}
.attachment-lists {
    float: left;
    padding: 10px;
    outline: none;
    position: relative;
    width: calc(100%/5);
    box-sizing: border-box
}
.attachment-lists .attachment-preview {
    cursor: pointer;
    position: relative;
    background: #eeeeee;
    -webkit-border-bottom: 0 0 20px 0 rgba(47, 187, 250, 0.1);
    -khtml-box-shadow: 0 0 20px 0 rgba(47, 187, 250, 0.1);
    -moz-box-shadow: 0 0 20px 0 rgba(47, 187, 250, 0.1);
    -ms-box-shadow: 0 0 20px 0 rgba(47, 187, 250, 0.1);
    -o-box-shadow: 0 0 20px 0 rgba(47, 187, 250, 0.1);
    box-shadow: 0 0 20px 0 rgba(47, 187, 250, 0.1)
}
.attachment-lists .attachment-preview:before {
    content: "";
    display: block;
    padding-top: 100%
}
.attachment-lists .thumbnail {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    padding: 0px;
    outline: none;
    overflow: hidden;
    margin-bottom: 0px;
    border-radius: 0px;
    position: absolute;
    transition: opacity .1s;
    border: 2px solid #e0e7ee;
    background-color: transparent
}
.attachment-lists.selected .thumbnail {
    border: 2px solid #49a7d9
}
.attachment-lists .thumbnail:after,
.attachment-lists.selected .thumbnail:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    overflow: hidden;
    position: absolute
}
.attachment-lists .thumbnail .centered {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-transform: translate(50%, 50%);
    transform: translate(50%, 50%)
}
.attachment-lists .thumbnail .centered img {
    top: 0;
    left: 0;
    max-height: 100%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.attachment-lists .check {
    top: 4px;
    right: 4px;
    border: 0;
    outline: 0;
    padding: 0;
    z-index: 10;
    width: 24px;
    height: 24px;
    display: none;
    cursor: pointer;
    position: absolute;
    background: #eeeeee;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba(0, 0, 0, 0.15)
}
.attachment-lists.selected .check {
    display: block;
    background-color: #49a7d9;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #49a7d9
}
.check .media-modal-icon {
    margin: 5px;
    width: 15px;
    height: 15px;
    display: block;
    background-image: url("../images/icons/uploader-icons-2x.png");
    background-size: 134px 15px
}
.attachment-lists.selected .check .media-modal-icon {
    background-position: -21px 0
}
.check .screen-reader-text {
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0px;
    overflow: hidden;
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    word-wrap: normal !important
}
.attachment-lists.selected .check:hover .media-modal-icon {
    background-position: -61px 0
}
.media-sidebar {
    width: 25%;
    padding: 20px 15px;
    display: inline-block;
    background-color: #f3f3f3;
    border-left: 1px solid #e0e7ee
}
.attachment-details {
    width: 100%;
    overflow: hidden;
    padding-top: 10px;
    padding-right: 10px
}
.attachment-details h2 {
    width: 100%;
    margin: 0px;
    color: #666a73;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase
}
.Missio__Ticket__Summary__Container {
    width: 100%
}
.g-cell.paid-ticket-container {
    overflow: visible
}
.g-group,
.g-grid,
.overlay-dialog__frame,
.g-vertical-group,
.dialog-frame-content,
.timeline__item,
.breakdown__item {
    font-size: 0;
    letter-spacing: 0
}
.Missio__Create__Tickets__Header {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #EEEDF2;
    font-weight: 600;
    line-height: 21px;
    border: 1px solid #DBDAE3;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center
}
.padd10 {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px
}
.w-6-12 {
    width: 50%
}
.w-5-12 {
    width: 41.6666666667%
}
.w-2-12 {
    width: 16.6666666667%
}
.w-3-12 {
    width: 25%
}
.w-4-12 {
    width: 33.33333333%
}
.g-cell.l-block-h-2 {
    padding-left: 20px !important
}
.Missio__Create__Tickets__Container {
    width: 100%;
    border-width: 0 1px;
    border-color: #DBDAE3;
    border-style: solid;
    border-top: 0;
    border-bottom: 0
}
.create-tickets--footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #DBDAE3;
    margin-top: -1px
}
.create-tickets--ticket {
    opacity: 0;
    width: 100%
}
.create-tickets--color {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 10px
}
.create-tickets--row {
    position: relative;
    border-width: 1px 0;
    border-color: #DBDAE3;
    border-style: solid;
    background: #fff;
    margin-top: -1px;
    padding-bottom: 0
}
.create-tickets--visibility {
    display: inline-block;
    padding: 8px 12px;
    line-height: 17px;
    background: #F8F7FA;
    color: #4B4D63;
    border: 1px solid #DBDAE3;
    margin-left: 5px;
    vertical-align: middle;
    border-radius: 3px
}
#create_tickets_wrapper.form {
    margin-top: 0
}
.form-input-with-icon {
    padding-right: 54px;
    position: relative
}
.form-input-with-icon .create-tickets--visibility {
    position: absolute;
    right: 0;
    top: 0
}
.responsive-form .form__input.form__input--short-number {
    width: 30px
}
.inner-block {
    padding: 18px
}
.create-tickets--row .report__row__tab-group {
    vertical-align: bottom;
    padding-bottom: 0;
    margin-bottom: -1px
}
.Missio__Week__View .slick-list {
    padding: 30px 0px
}
@media (max-width: 767px) {
    .Missio__Week__View .slick-list {
        padding-top: 0px
    }
}
.Missio__Week__View .slick-prev {
    left: -30px
}
.Missio__Week__View .slick-next {
    right: -30px
}
.Missio__Week__View .slick-prev,
.Missio__Week__View .slick-next {
    top: 47.5%;
    width: 30px;
    height: 30px
}
.Missio__Week__View .slick-prev:before,
.Missio__Week__View .slick-next:before {
    color: #49a7d9;
    font-size: 30px;
    opacity: 1;
    filter: alpha(opacity=100)
}
.Missio__Week__View .slick-prev.slick-disabled,
.Missio__Week__View .slick-next.slick-disabled {
    pointer-events: none
}
.Missio__Week__View .slick-prev.slick-disabled:before,
.Missio__Week__View .slick-next.slick-disabled:before {
    pointer-events: none;
    opacity: .25;
    filter: alpha(opacity=25)
}
@media (max-width: 767px) {
    .Missio__Week__View .slick-prev,
    .Missio__Week__View .slick-next {
        display: none !important
    }
}
.Missio__Week__View .slick-track,
.Missio__Week__View .owl-stage {
    margin-left: auto;
    margin-right: auto
}
.Equal__Height {
    overflow: hidden;
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0.25);
    -moz-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0.25);
    -ms-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0.25);
    box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0.25)
}
@media (max-width: 600px) {
    .Equal__Height {
        width: auto;
        display: block;
        overflow: inherit;
        margin: 0px -25px;
        -webkit-border-radius: 0px;
        border-radius: 0px;
        -webkit-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0);
        -moz-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0);
        -ms-box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0);
        box-shadow: 0 0 20px 0 rgba(2, 0, 1, 0)
    }
}
.Equal__Height__Left {
    width: 50%;
    padding: 30px;
    padding-top: 70px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    background-color: #fff;
    -webkit-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
@media (max-width: 600px) {
    .Equal__Height__Left {
        width: 100%;
        padding: 0px 20px;
        padding-top: 50px;
        -webkit-border-radius: 0px;
        border-radius: 0px
    }
    .Equal__Height__Left .Missio__Event__Details {
        margin-bottom: 0px;
        border-bottom: 0px none !important
    }
}
@media (max-width: 767px) {
    .Equal__Height__Left .Missio__Event__Details {
        margin-bottom: 0px;
        border-bottom: 0px none !important
    }
}
.Equal__Height__Right {
    margin: -30px;
    width: calc(100% + 60px);
    height: calc(500px + 60px);
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    text-align: center;
    padding: 1.875rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 5px 5px 0px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    background-color: #f4f4f4;
    background: linear-gradient(135deg, #fff 0%, #f4f4f4 44%, #f4f4f4 100%);
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}
.Equal__Height__Right .social-calendar {
    width: 100%;
    max-width: 285px;
}
.Equal__Height__Right .social-calendar .btn.btn-sm {
    padding: 15px 20px;
}

.missio-schedule-right-body h3 {
    color: var(--primary);
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0.25rem
}
.missio-schedule-right-body .missio-select-date h2 {
    font-size: 1.5rem;
}
@media (max-width: 600px) {
    .missio-schedule-right-body h3 {
        font-size: 2rem!important;
        line-height: 1.35;
    }
    .missio-schedule-right-body .missio-select-date h2 {
        font-size: 1.25rem!important;
    }
}

.Equal__Height__Right p {
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
@media (max-width: 600px) {
    .Equal__Height__Right p {
        font-size: .875rem;
        line-height: 1.5;
        margin-bottom: .625rem
    }
}
.Header__Back {
    top: 20px;
    left: 25px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    border: 0px none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start
}
@media (max-width: 600px) {
    .Header__Back {
        top: 0px;
        left: 15px
    }
}
.Header__Back .Icon__back-arrow {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 384' fill='%23000000'%3E%3Cpath d='M384 170.667H81.707l76.48-76.48L128 64 0 192l128 128 30.187-30.187-76.48-76.48H384z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 20px auto;
    -moz-background-size: 20px auto;
    -ms-background-size: 20px auto;
    -o-background-size: 20px auto;
    background-size: 20px auto
}
.Header__Back__Button {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    border: 0px none;
    background: #fff;
    width: 36px;
    height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}
.Header__Back__Button span {
    color: #49a7d9;
    font-size: 1.25rem;
    line-height: 1.5rem
}
.Header__Back__Button:hover {
    background-color: #49a7d9;
    -webkit-box-shadow: 0 0 20px 0 rgba(29, 54, 122, 0.25);
    -moz-box-shadow: 0 0 20px 0 rgba(29, 54, 122, 0.25);
    -ms-box-shadow: 0 0 20px 0 rgba(29, 54, 122, 0.25);
    box-shadow: 0 0 20px 0 rgba(29, 54, 122, 0.25)
}
.Header__Back__Button:hover span {
    color: #fff
}
.Header__Back__Button:hover .Icon__back-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 384' fill='%23ffffff'%3E%3Cpath d='M384 170.667H81.707l76.48-76.48L128 64 0 192l128 128 30.187-30.187-76.48-76.48H384z'/%3E%3C/svg%3E")
}
.Message__Blocks {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
@media (max-width: 767px) {
    .Message__Blocks {
        min-height: calc(400px - 40px);
    }
}
@media (min-width: 768px) {
    .Message__Blocks {
        min-height: calc(500px - 60px);
    }
}
.Message__Blocks .section__title {
    margin-top: -80px;
    text-align: center;
}
.Message__Blocks .section__title h3 {
    font-size: 30px !important;
}
.Message__Blocks .sk-cube-grid {
    top: 55%;
    left: 50%;
    margin: 0px auto;
    position: absolute;
    width: 50px;
    height: 50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.Message__Blocks .sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    float: left;
    background-color: #49a7d9;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out
}
.Message__Blocks .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}
.Message__Blocks .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s
}
.Message__Blocks .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s
}
.Message__Blocks .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s
}
.Message__Blocks .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}
.Message__Blocks .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s
}
.Message__Blocks .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}
.Message__Blocks .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s
}
.Message__Blocks .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s
}
@-webkit-keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        -moz-transform: scale3D(1, 1, 1);
        -o-transform: scale3D(1, 1, 1);
        -ms-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1)
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        -moz-transform: scale3D(0, 0, 1);
        -o-transform: scale3D(0, 0, 1);
        -ms-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1)
    }
}
@keyframes sk-cubeGridScaleDelay {
    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        -moz-transform: scale3D(1, 1, 1);
        -o-transform: scale3D(1, 1, 1);
        -ms-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1)
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        -moz-transform: scale3D(0, 0, 1);
        -o-transform: scale3D(0, 0, 1);
        -ms-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1)
    }
}
.flex_CHVL .marker {
    background-color: #49a7d9 !important
}
.flex_CHVL .Event__Name .link-blue {
    color: #1D367A !important
}
.Add_To_Calendar .cal__Icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0rem;
    margin-right: .375rem
}
.Add_To_Calendar .cal__Icon>img {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle
}
.Add_To_Calendar .button--google .cal__Icon {
    margin-top: -3px
}
.page--details .Missio__Event__Section {
    padding: 0rem;
    margin-top: 0rem
}
.button--google {
    color: #fff;
    background-color: #020001
}
.button--google:hover {
    color: #fff
}
.m-former--time {
    margin: 0px auto;
    max-width: 880px;
    padding: 1.875rem 3.125rem;
    background-color: #eef6fa;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding-bottom: 1.25rem;
    border: 1px solid #c7e1ee;
    box-shadow: 0 5px 10px rgba(0, 9, 128, 0.035), 0 7px 18px rgba(0, 9, 128, 0.05)
}
@media only screen and (max-width: 767px) {
    .m-former--time {
        padding: 1.25rem 1.5625rem;
        padding-bottom: 1.25rem
    }
}
@media only screen and (max-width: 576px) {
    .m-former--time [class^="col-"]:last-child {
        padding-top: 1.25rem
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    .m-former--time .col-half {
        flex: 0 0 50%;
        max-width: 50%
    }
}
.m-former--time h1,
.m-former--time h2 {
    font-weight: 900;
    margin-bottom: 0rem
}
.m-former--time h1 {
    color: #49a7d9;
    font-size: 26px
}
@media only screen and (max-width: 576px) {
    .m-former--time h1 {
        font-size: 22px
    }
}
.m-former--time h2 {
    color: #020001;
    font-size: 20px;
    margin-bottom: 10px
}
.m-former--time ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0rem;
    padding: 0rem;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical
}
.m-former--time ul:not(:last-child) {
    margin-top: 0rem
}
.m-former--time ul>li {
    font-weight: 500;
    position: relative;
    margin: 0rem;
    font-size: 1rem;
    line-height: 1.2rem;
    line-height: 1.3em;
    padding-left: 1.875rem;
    margin-bottom: .625rem
}
.m-former--time ul>li:before {
    top: 2px;
    left: 0px;
    width: 20px;
    height: 20px;
    content: ' ';
    position: absolute;
    margin-right: 10px;
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center
}
.Add_To_Calendar .seperator {
    position: relative;
    margin-bottom: 1.25rem
}
.Add_To_Calendar .seperator:before,
.Add_To_Calendar .seperator:after {
    top: 50%;
    width: 40%;
    height: 1px;
    content: ' ';
    position: absolute;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.25)
}
.Add_To_Calendar .seperator:before {
    left: 0
}
.Add_To_Calendar .seperator:after {
    right: 0
}
.Add_To_Calendar .button--prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center
}
.Add_To_Calendar .button--prev [class^="fe-"] {
    font-size: 20px;
    margin-top: 1px;
    margin-right: 5px;
    position: relative
}
.event-button .button {
    font-size: 16px;
    line-height: 35px;
    min-width: inherit;
    box-sizing: border-box;
    padding: 0 30px !important
}
.event-venue-wrap .event-venue {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    max-height: 105px
}
.Missio__Event__Content .event-title .field-title {
    font-size: 20px !important;
    font-weight: 900
}
.event-meta {
    margin-bottom: 0
}
.Missio__Block__Content {
    padding-bottom: 1.25 !important
}
.form-group .selectdropdown select.form-control {
    padding-left: 0.625rem !important;
    padding-right: 2.5rem !important
}
.Missio__Event__Timezone .dropdown,
.Missio__Event__Timezone .dropdown .selectdropdown {
    width: 100%
}

@media (min-width: 992px) {
    .Missio__Event__Timezone .dropdown {
        max-width: 90% !important
    }
}
.widget-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}
.widget-scroll-content {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    overflow-x: auto;
    overflow-x: hidden;
    position: absolute;
    padding: 1.25rem 0rem;
    padding-top: 0rem;
    -webkit-overflow-scrolling: touch
}
.widget-scroll-header {
    top: 0;
    z-index: 3;
    position: sticky;
    padding: 1.25rem;
    padding-left: 1.5625rem;
    background-color: #fff;
    border-top-left-radius: 0.75rem;
    border-bottom: 1px solid #E0E0E0;
    -webkit-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -moz-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -ms-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1)
}
.widget-scroll-header .page-logo {
    top: 5px;
    width: auto;
    position: relative
}
.widget-scroll-body {
    padding: 1.25rem;
    padding-left: 1.5625rem
}
.missio-schedule {
    padding: 1.875rem 0rem
}
@media (min-width: 768px) {
    .missio-schedule-sm {
        padding: 2.5rem 0rem
    }
}
@media (min-width: 768px) and (min-width: 992px) {
    .missio-schedule-sm {
        padding: 3.125rem 0rem
    }
}
.missio-schedule-wrap {
    width: 100%;
    border: 1px solid #E0E0E0;
    -webkit-border-radius: .75rem;
    border-radius: .75rem;
    flex: 1 1 auto;
    /* min-height: 500px; */
    background-color: #fff;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out;
    -webkit-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -moz-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    -ms-box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1);
    box-shadow: 0 1px 8px 0 rgba(2, 0, 1, 0.1)
}
.missio-schedule-left,
.missio-schedule-right {
    width: 50%;
    flex-shrink: 0;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out
}
.missio-schedule-left {
    position: relative;
    padding-bottom: 1.5rem;
    border-right: 1px solid #E0E0E0
}
.missio-schedule-right {
    flex: 1 1 50%
}
.missio-schedule-right-body {
    padding: 30px;
}
.missio-schedule-right-body .missio-select-date {
    width: 100%
}
.missio-schedule-right-body .missio-available-date {
    width: 0;
    height: 0;
    min-width: 0;
    max-width: 0;
    min-height: 0;
    display: none;
    visibility: hidden;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out
}
.missio-schedule-details {
    gap: 30px;
    height: 100%
}
.missio-schedule-details-wrap {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-transition: opacity 0.1s ease 0.25s;
    -moz-transition: opacity 0.1s ease 0.25s;
    -ms-transition: opacity 0.1s ease 0.25s;
    -o-transition: opacity 0.1s ease 0.25s;
    transition: opacity 0.1s ease 0.25s
}
.missio-schedule-details-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-top-left-radius: 0.75rem;
    background-color: #fff none repeat scroll 0 0
}
html[data-select2-id],
body[data-select2-id] {
    overflow-x: hidden !important;
}
.StripeElement {
    height: 50px;
    border-radius: 5px !important;
    padding-left: 0.75rem !important;
    padding-right: 0.25rem !important;
    border: 2px solid #CCD3DE !important;
    margin-bottom: 0.938rem !important;
}
#stripe-errors:empty {
    display: none !important;
    margin-bottom: 0 !important;
}
.StripeElement .__PrivateStripeElement, .StripeElement .__PrivateStripeElement > * {
    height: 46px !important;
    border-radius: 5px !important;
}
.StripeElement .ElementsApp {
    padding-left: 10px !important;
}

.m-selectdropdowns .form-control {
    border-width: 1px !important
}
.m-selectdropdown .form-control {
    height: 50px !important;
    max-height: 50px !important;
    border-width: 1px !important
}
.m-selectdropdown::after {
    display: none !important
}
.m-selectdropdown .select2-container--open .select2-selection--single,
.m-selectdropdown .select2-container--open .select2-selection--multiple {
    border-color: #49a7d9 !important
}
.select2-dropdown,
.select2-search__field {
    border-color: #49a7d9 !important
}
.flex-shrink-0 {
    flex-shrink: 0
}
.datepicker.datepicker-inline {
    padding: 0;
    width: 100%;
    max-width: 425px
}
.datepicker.datepicker-inline .datepicker-days {
    width: 100%
}
.datepicker.datepicker-inline .datepicker-days table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 8px;
    border-collapse: separate
}
.datepicker.datepicker-inline .datepicker-days table thead tr:first-of-type {
    margin-bottom: 15px
}
.datepicker.datepicker-inline .datepicker-days table thead th {
    color: #020001;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev,
.datepicker.datepicker-inline .datepicker-days table thead th.next {
    color: #020001;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    position: relative;
    font-size: 0;
    text-indent: -9999rem;
    color: rgba(89, 89, 89, 0)
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev::before,
.datepicker.datepicker-inline .datepicker-days table thead th.next::before {
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    content: " ";
    position: absolute;
    background-color: transparent;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.datepicker.datepicker-inline .datepicker-days table thead th.prev::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' role='img'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4806 15.9941C13.8398 15.6529 13.8398 15.0998 13.4806 14.7586L8.47062 10L13.4806 5.24142C13.8398 4.90024 13.8398 4.34707 13.4806 4.00589C13.1214 3.66471 12.539 3.66471 12.1798 4.00589L6.51941 9.38223C6.1602 9.72342 6.1602 10.2766 6.51941 10.6178L12.1798 15.9941C12.539 16.3353 13.1214 16.3353 13.4806 15.9941Z' fill='%23737373'%3E%3C/path%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat
}
.datepicker.datepicker-inline .datepicker-days table thead th.next {
    color: #f00
}
.datepicker.datepicker-inline .datepicker-days table thead th.next::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' role='img'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.51941 15.9941C6.1602 15.6529 6.1602 15.0998 6.51941 14.7586L11.5294 10L6.51941 5.24142C6.1602 4.90024 6.1602 4.34707 6.51941 4.00589C6.87862 3.66471 7.46101 3.66471 7.82022 4.00589L13.4806 9.38223C13.8398 9.72342 13.8398 10.2766 13.4806 10.6178L7.82022 15.9941C7.46101 16.3353 6.87862 16.3353 6.51941 15.9941Z' fill='%2349A7D9'%3E%3C/path%3E%3C/svg%3E")
}
.datepicker.datepicker-inline .datepicker-days table thead th.datepicker-switch {
    pointer-events: none !important
}
.datepicker.datepicker-inline .datepicker-days table tbody td {
    color: #595959;
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
    position: relative;
    text-align: center;
    border-radius: 0.375rem;
    border: 1px solid transparent
}
.datepicker.datepicker-inline .datepicker-days table tbody td.day.old,
.datepicker.datepicker-inline .datepicker-days table tbody td.day.new {
    pointer-events: none;
    color: rgba(89, 89, 89, 0.25)
}
.datepicker.datepicker-inline .datepicker-days table tbody td.active {
    color: #020001;
    text-shadow: none !important;
    background: rgba(73, 167, 217, 0.15);
    background: rgba(2, 0, 1, 0.15);
    background: -moz-linear-gradient(legacy-direction(to bottom), rgba(2, 0, 1, 0.15) 20%, rgba(2, 0, 1, 0.15) 40%, rgba(2, 0, 1, 0.15) 100%);
    background: -webkit-linear-gradient(legacy-direction(to bottom), rgba(2, 0, 1, 0.15) 20%, rgba(2, 0, 1, 0.15) 40%, rgba(2, 0, 1, 0.15) 100%);
    background: linear-gradient(to bottom, rgba(2, 0, 1, 0.15) 20%, rgba(2, 0, 1, 0.15) 40%, rgba(2, 0, 1, 0.15) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="rgba(2,0,1,0.15) 20%,rgba(2,0,1,0.15) 40%,rgba(2,0,1,0.15) 100%")
}
.datepicker.datepicker-inline .datepicker-days table tbody td.available {
    color: #1D367A;
    font-weight: 700;
    text-shadow: none !important;
    background: rgba(73, 167, 217, 0.15);
    background: rgba(29, 54, 122, 0.25);
    background: -moz-linear-gradient(legacy-direction(to bottom), rgba(29, 54, 122, 0.25) 20%, rgba(29, 54, 122, 0.25) 40%, rgba(29, 54, 122, 0.25) 100%);
    background: -webkit-linear-gradient(legacy-direction(to bottom), rgba(29, 54, 122, 0.25) 20%, rgba(29, 54, 122, 0.25) 40%, rgba(29, 54, 122, 0.25) 100%);
    background: linear-gradient(to bottom, rgba(29, 54, 122, 0.25) 20%, rgba(29, 54, 122, 0.25) 40%, rgba(29, 54, 122, 0.25) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorStr="to bottom", EndColorStr="rgba(29,54,122,0.25) 20%,rgba(29,54,122,0.25) 40%,rgba(29,54,122,0.25) 100%")
}
.event-calendar-wrap {
    width: 100%;
    display: flex;
    flex: 1 1 auto;
    max-width: 900px;
    -webkit-transition: all 0.22s ease-out;
    -moz-transition: all 0.22s ease-out;
    -ms-transition: all 0.22s ease-out;
    -o-transition: all 0.22s ease-out;
    transition: all 0.22s ease-out
}
.event-calendar-wrap-large {
    min-width: 900px;
    max-width: 1150px
}
.event-calendar-wrap-large .missio-schedule-left {
    width: 100%;
    max-width: 35%
}
.event-calendar-wrap-large .missio-schedule-right {
    width: 100%;
    max-width: 65%
}
.event-calendar-wrap-large .missio-schedule-right .missio-select-date {
    width: calc(100% - 265px)
}
.event-calendar-wrap-large .missio-schedule-right .missio-available-date {
    display: block;
    width: 265px;
    min-width: 265px;
    max-width: 265px;
    visibility: visible;
    padding-left: 15px;
}
.event-calendar-wrap-large .missio-schedule-right .missio-available-date .widget-scroll {
    min-height: 500px;
    max-height: 500px
}
.no-radius {
    border-radius: 0 !important
}
.no-shadow {
    box-shadow: none !important
}

.Missio__Week__View__Wrapper .calendar-wrap {
    width: 100%;
    min-height: 425px;
}
.missio-calendar-loader {
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    display: block;
    min-height: 425px;
    position: absolute;
    border-radius: 0.75rem;
    align-content: center;
    background-color: #ffffff;
}
.missio-calendar-loader-block {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.missio-calendar-loader-block .loader {
    top: 50%;
    left: 50%;
    content: "";
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    border: 5px solid #f4f4f4;
    transition: all 0.1s ease;
    border-left-color: #49a7d9;
    animation: load-spin 450ms infinite linear;
    -webkit-animation: load-spin 450ms infinite linear;
    opacity: 1;
    filter: alpha(opacity=100);
}
@keyframes load-spin {
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes load-spin {
    100% {
        transform: rotate(360deg);
    }
}

.scrollY,
.scrollX {
    scrollbar-color: #807f91 transparent
}
.scrollY {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scroll: touch;
    scrollbar-width: thin;
    -webkit-border-radius: 0;
    border-radius: 0
}
@media (max-width: 767px) {
    .m-w-100 {
        width: 100% !important;
        max-width: 100% !important
    }
    .missio-schedule {
        overflow: hidden
    }
    .missio-schedule-wrap {
        display: block !important;
		margin-inline: auto;
    }
    .missio-schedule-left,
    .missio-schedule-right {
        width: 100%;
        flex: 1
    }
    .missio-schedule-left {
        border-right: 0 none;
        border-bottom: 1px solid #E0E0E0
    }
    .missio-schedule-right-body {
        padding: 20px 5px;
		flex-direction: column;
    }
	.missio-select-date > h2 {
		padding-left: 1rem;
	}
	.widget-scroll-header .page-logo {
		width: 85px;
	}
    .missio-schedule .Missio__Event__Details {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 0 none
    }
    .widget-scroll-content {
        position: relative;
    }
    .widget-scroll-header {
        border-top-right-radius: 0.75rem
    }
    
    .Equal__Height__Right {
        margin: -20px;
        width: calc(100% + 40px);
        height: calc(400px + 40px);
        border-top-right-radius: 0;
        border-bottom-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
    }
	.datepicker.datepicker-inline,
	.event-calendar-wrap-large .missio-schedule-left,
	.event-calendar-wrap-large .missio-schedule-right,
	.event-calendar-wrap-large .missio-schedule-right .missio-select-date {
		width: 100% !important;
		max-width: 390px !important;
	}
	
	.event-calendar-wrap-large .missio-schedule-right .missio-available-date {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		height: 100%;
		padding-inline: 0;
	}
	.missio-schedule-right {
		padding-inline: 1rem;
	}
	.datepicker.datepicker-inline .datepicker-days table tbody td {
		width: 37px;
		height: 37px;
		max-width: 37px;
		max-height: 37px;
	}
	
	.event-calendar-wrap-large {
		min-width: 350px !important;
		max-width: 100% !important;
	}
	.missio-schedule-right-body {
		min-height: inherit;
	}
	.event-calendar-wrap-large .missio-schedule-right .missio-available-date .widget-scroll {
		min-height: 65px;
		max-height: 500px
	}
}

.content__wrap {
    min-height: 350px
}
@media (min-width: 768px) {
    .content__wrap-sm {
        min-height: 450px
    }
}

.missio-select-date .select2-container .select2-selection--single {
    height: 42px;
}
.missio-select-date .select2-container--default .select2-selection--single {
    border-color: #ccc;
}
.missio-select-date .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    padding-left: 12px;
    padding-right: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    position: absolute;
    top: 1px;
    right: 8px;
    width: 20px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 0.375rem !important;
}
.select2-dropdown {
    box-shadow: 0 2px 8px 0 rgba(2,0,1, 0.25);
}
.select2-search--dropdown {
    padding: 0.5rem !important;
}
.select2-results__options {
    scrollbar-color: #807f91 transparent;
}


.zenday-badge {
    color: var(--missio-dark);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.5;
    padding: 4px 6px;
    font-weight: 600;
    background-color: #f9f9f9;
    border: 1px solid var(--missio-bdr-color);
    font-family: var(--missio-font);
}
.zenday-badge .size-16px {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zenday-badge .size-16px img {
    width: 20px;
    height: 20px;
    display: flex;
}
.zenday-badge .me-1 {
    margin-right: .5rem !important;
}

.schedule-disclaimer {
    width: 100%;
    margin-bottom: 0.938rem;
}
.alert-default {
    border-radius: 0.375rem;
    background-color: #f4f4f4;
    border-color: rgba(0,0,0,0.05);
}
.alert-default .fs-14 {
    color: #000;
    font-size: 0.75rem;
}


@-webkit-keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-25px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-25px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loader */
.m-loading {
	position: relative;
}
.m-loading::before {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: -.125em;
	border: .25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: .75s linear infinite spinner-border;
	animation: .75s linear infinite spinner-border;
	width: 1rem;
	height: 1rem;
	border-width: .2em;
}
.m-loading::before {
	margin-inline-end: 0.375rem;
}
/*
.m-loading::after {
	margin-inline-start: 0.375rem;
}
*/

@keyframes spinner-border {
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}