/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS:
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited).
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar.
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars.
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars.
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
    touch-action: pinch-zoom;
    /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
    touch-action: auto;
}

.mCustomScrollBox {
    /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container {
    /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}

/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside>.mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
    /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside+.mCSB_scrollTools {
    right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
    /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
    /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px;
    /* minimum dragger height */
    z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* the dragger element */
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
    min-height: 100%;
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px;
}

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
    margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    /* minimum dragger width */
    height: 100%;
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    /* auto-expanded scrollbar */
    margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    /* auto-expanded scrollbar */
    margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS
yx-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px;
}

.mCSB_container_wrapper>.mCSB_container {
    padding-right: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
    padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
    padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    /* non-visible scrollbar */
    margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
/* auto-expanded scrollbar */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    transition: width .2s ease-out .2s, height .2s ease-out .2s,
        margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
        margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
        opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
------------------------------------------------------------------------------------------------------------------------
*/
/*
	----------------------------------------
	6.1 THEMES
	----------------------------------------
	*/
/* default theme ("light") */
.mCSB_scrollTools {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover>.mCSB_scrollTools,
.mCustomScrollBox:hover~.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    background-image: url(mCSB_buttons.png);
    /* css sprites */
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0;
    /*
		sprites locations
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px;
    /*
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px;
    /*
		sprites locations
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px;
    /*
		sprites locations
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
    opacity: 0.9;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px;
}

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px;
}

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto;
}

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
    height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 14px;
    margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 14px;
    margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px;
    /* auto-expanded scrollbar */
    height: 16px;
    margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px;
    /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    /* auto-expanded scrollbar */
    width: 16px;
    margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    /* auto-expanded scrollbar */
    margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    opacity: 0.3;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px;
}

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 8px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 5px;
}

.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
    left: 0;
    right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------- */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }
/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datepicker-inline {
  width: 220px;
}
.datepicker-rtl {
  direction: rtl;
}
.datepicker-rtl.dropdown-menu {
  left: auto;
}
.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
  background: #eee;
  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eee;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: linear-gradient(to bottom, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}
.datepicker table tr td span:hover,
.datepicker table tr td span.focused {
  background: #eee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999;
  cursor: default;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999;
}
.datepicker .datepicker-switch {
  width: 145px;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #eee;
}
.datepicker .prev.disabled,
.datepicker .next.disabled {
  visibility: hidden;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.input-append.date .add-on,
.input-prepend.date .add-on {
  cursor: pointer;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  margin-top: 3px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 20px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-size: 13px;
  line-height: 20px;
}
.datepicker.dropdown-menu th,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.datepicker-inline td {
  padding: 4px 5px;
}@charset "UTF-8";
/**
    All Required Element add in this file
**/
/*
    ** $zindex-dropdown:          1000 !default; **
    ** $zindex-sticky:            1020 !default; **
    ** $zindex-fixed:             1030 !default; **
    ** $zindex-modal-backdrop:    1040 !default; **
    ** $zindex-modal:             1050 !default; **
    ** $zindex-popover:           1060 !default; **
    ** $zindex-tooltip:           1070 !default; **
*/
/* Customize the label (the chk-rad-box) */
/*
***** checkbox html *****
<div class="form-group">
	<label class="chk-rad-box">Remember Me
		<input type="checkbox" name="remember">
		<span class="checkmark"></span>
	</label>
</div>
*/
/*!
 * Bootstrap v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: red;
  --secondary: green;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: red;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #b30000;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1440px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #ffb8b8;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #ff7a7a;
}

.table-hover .table-primary:hover {
  background-color: #ff9f9f;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #ff9f9f;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #b8dbb8;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #7abd7a;
}

.table-hover .table-secondary:hover {
  background-color: #a7d2a7;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #a7d2a7;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #ff8080;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: red;
  border-color: red;
}

.btn-primary:hover {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: red;
  border-color: red;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #cc0000;
  border-color: #bf0000;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: green;
  border-color: green;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #005a00;
  border-color: #004d00;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #005a00;
  border-color: #004d00;
  box-shadow: 0 0 0 0.2rem rgba(38, 147, 38, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: green;
  border-color: green;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #004d00;
  border-color: #004000;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 147, 38, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: red;
  border-color: red;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: red;
  border-color: red;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: red;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: red;
  border-color: red;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

.btn-outline-secondary {
  color: green;
  border-color: green;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: green;
  border-color: green;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 0, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: green;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: green;
  border-color: green;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 0, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: red;
  text-decoration: none;
}

.btn-link:hover {
  color: #b30000;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: red;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: red;
  background-color: red;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ff8080;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ffb3b3;
  border-color: #ffb3b3;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: red;
  background-color: red;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 0, 0, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #ff8080;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #ff8080;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: red;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #ffb3b3;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: red;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #ffb3b3;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: red;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #ffb3b3;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: red;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

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

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: red;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #b30000;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: red;
  border-color: red;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: red;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #cc0000;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: green;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #004d00;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 0, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #850000;
  background-color: #ffcccc;
  border-color: #ffb8b8;
}

.alert-primary hr {
  border-top-color: #ff9f9f;
}

.alert-primary .alert-link {
  color: #520000;
}

.alert-secondary {
  color: #004300;
  background-color: #cce6cc;
  border-color: #b8dbb8;
}

.alert-secondary hr {
  border-top-color: #a7d2a7;
}

.alert-secondary .alert-link {
  color: #001000;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: red;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: red;
  border-color: red;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #850000;
  background-color: #ffb8b8;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #850000;
  background-color: #ff9f9f;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #850000;
  border-color: #850000;
}

.list-group-item-secondary {
  color: #004300;
  background-color: #b8dbb8;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #004300;
  background-color: #a7d2a7;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #004300;
  border-color: #004300;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

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

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
          animation: .75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
          animation: .75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: red !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cc0000 !important;
}

.bg-secondary {
  background-color: green !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #004d00 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: red !important;
}

.border-secondary {
  border-color: green !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

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

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

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

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: red !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #b30000 !important;
}

.text-secondary {
  color: green !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #003400 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*
    Mixin - font properties Start Below
    Use it : @include font-properties(10px, #303030, 400, normal)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - font properties End Above */
/*
    Mixin - box shadow Start Below
    Use it : @include box-shadow(10px, #303030, 400, normal)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - box shadow End Above */
/*
    Mixin - position Start Below
    Use it : @include positions(" ", absolute, 10px, false, false, 0px, 999, block)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - positions End Above */
/*
    Mixin - set width and height Start Below
    Use it : @include set-Width-Heigh(100%, 100%, 300px, 200px)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*
    Mixin - set margin Start Below
    Use it : @include set-margin(10px, 10px, 20px, 10px)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - set-margin End Above */
/*
    Mixin - set padding Start Below
    Use it : @include set-padding(10px, 10px, 20px, 10px)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - set-padding End Above */
/*
    Mixin - set border Start Below
    Use it : @include set-border(10px, 10px, 20px, 10px)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - set-border End Above */
/*
    Mixin - set border Start Below
    Use it : @include set-border(10px, 10px, 20px, 10px)
*/
/*--------------------------------------------------*/
/*
    Mixin - Background Image Size Start Below
    Use it : @include background-size(cover)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - Background Image Size End Above */
/*
    Mixin - Border Radius Start Below
    Use it : @include border-radius(10px)
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - Border Radius End Above */
/*
    Box Shadow Mixin

    How to Use:

        / * @include box-shadow(none); * /
        / * @include box-shadow(2px 2px 6px $color); * /

    Ref: https://gist.github.com/garyharan/957284/fa9366f955d07671112c32510bfd9a1f141bc38a
*/
/**/
/*
    Box Shadow Mixin

    How to Use:

        / * @include box-shadow-new(none); * /
        /* @include box-shadow-new(0px, 1px, 2px, rgba(0, 0, 0, 0.2), true); * /
        /* @include box-shadow-new(1px, 1px, 1px, #fff, true);  */
/* Ref: https://gist.github.com/garyharan/957284 * /
*/
/*
    Set Font Color opacify
    How to Use: @include bg-opacity(#000,0.85);
    How to Use: @include bg-opacity($moon-mist,0.85);
    Link : https://codepen.io/brandonhimpfen/pen/rVRMvX
*/
/*
    Set Font Color opacify
    How to Use: @include bg-opacity(background-color, #000,0.85);
    How to Use: @include bg-opacity($moon-mist,0.85);
    Link : https://codepen.io/brandonhimpfen/pen/rVRMvX
*/
/*--------------------------------------------------*/
/* Mixin - opacify End Above */
/*
    Mixin - PlaceHolder CSS
    Use it :
    @include PlaceHolder{
        color: $brand-color-4;
    }
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* PlaceHolder Text Color CSS End Above */
/*
    Mixin - Rotate Start Below
    Use it : @include rotate(-45deg);
*/
/*--------------------------------------------------*/
/*
@mixin rotate( $val: -2deg ) {
    -webkit-transform: rotate($val);
    -moz-transform: rotate($val);
    -ms-transform: rotate($val);
    -o-transform: rotate($val);
    transform: rotate($val);
}
*/
/*--------------------------------------------------*/
/* Mixin - Rotate End Above */
/*
	// Rotate
    Mixin - Rotate Start Below
    Use it : @include rotate(-45);
*/
/*--------------------------------------------------*/
/*
	// Scale
    Mixin - Rotate Start Below
    Use it : @include scale(45);
*/
/*--------------------------------------------------*/
/*
	// Translate
    Mixin - Rotate Start Below
    Use it : @include translate(45, 0);
*/
/*--------------------------------------------------*/
/*
	// Skew
    Mixin - Rotate Start Below
    Use it : @include skew(45, 0);
*/
/*--------------------------------------------------*/
/*
	// Transform Origin
    Mixin - Rotate Start Below
    Use it : @include transform-origin(45);
*/
/*--------------------------------------------------*/
/*
    Mixin - Transitions
    Use it : @include transition(color .3s ease);
    link = http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - Transitions End Above */
/*
    Mixin - transition Start Below (Type:2)
    Use it : @include transitions(transition, color 1s, background-color 1s, border-color 1s);
    transition shorthand property can animate multiple CSS properties

    Link:  https://stackoverflow.com/questions/39942415/how-to-use-sass-mixin-transition-for-applying-transition-delay-only
*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Mixin - transition End Above (Type:2) */
/*
    How to disable text selection highlighting
    Use it : @include noselect(all, auto, inherit, initial, none, revert, );
*/
/*--------------------------------------------------*/
.transition {
  transition: ease all 0.3s;
}

.left-menu-transition, body .two-column-page .left-navigation-box, body .two-column-page .left-navigation-box .left-navigation ul li a, body .two-column-page .left-navigation-box .left-navigation ul li a i, body .two-column-page .left-navigation-box .left-navigation ul li a .link-txt, body .two-column-page .page-outer-box, body.menu-close .left-navigation-box, body.menu-close .left-navigation-box .left-navigation ul li a .link-txt, body.menu-close .page-outer-box {
  transition: all 0.5s !important;
}

.logo-transition, body .two-column-page .left-navigation-box .ln-header-logo, body .two-column-page .left-navigation-box .left-nav-logo-lg, body .two-column-page .left-navigation-box .left-nav-logo-sm, body.menu-close .left-navigation-box .ln-header-logo, body.menu-close .left-navigation-box .left-nav-logo-lg, body.menu-close .left-navigation-box .left-nav-logo-sm {
  transition: all 0.5s !important;
}

@-webkit-keyframes logoanimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoanimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loadinganimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes loadinganimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeout {
  /* Safari and Chrome */
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_1.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_2.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_3.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_4.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_5.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_6.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_7.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFCompactDisplay';
  src: url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.eot");
  src: local("SFCompact Display Ultralight"), local("SFCompactDisplay-Ultralight"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.woff") format("woff"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Compact-Display/SFCompactDisplay-Ultralight_8.svg#SFCompactDisplay-Ultralight") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.eot");
  src: local("SF UI Display Black"), local("SFUIDisplay-Black"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Black.svg#SFUIDisplay-Black") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.eot");
  src: local("SF UI Display Heavy"), local("SFUIDisplay-Heavy"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Heavy.svg#SFUIDisplay-Heavy") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.eot");
  src: local("SF UI Display Bold"), local("SFUIDisplay-Bold"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Bold.svg#SFUIDisplay-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.eot");
  src: local("SF UI Display Thin"), local("SFUIDisplay-Thin"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Thin.svg#SFUIDisplay-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.eot");
  src: local("SF UI Display Light"), local("SFUIDisplay-Light"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Light.svg#SFUIDisplay-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.eot");
  src: local("SFUIDisplay-Regular"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Regular.svg#SFUIDisplay-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.eot");
  src: local("SF UI Display Medium"), local("SFUIDisplay-Medium"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Medium.svg#SFUIDisplay-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.eot");
  src: local("SF UI Display Semibold"), local("SFUIDisplay-Semibold"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Semibold.svg#SFUIDisplay-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF UI Display';
  src: url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.eot");
  src: local("SF UI Display Ultralight"), local("SFUIDisplay-Ultralight"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.woff2") format("woff2"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.woff") format("woff"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.ttf") format("truetype"), url("../../fonts/fonts-web/SF-UI-Display/SFUIDisplay-Ultralight.svg#SFUIDisplay-Ultralight") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_1.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_1.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_2.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_3.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_2.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_4.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_3.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_5.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_4.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_6.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_7.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_5.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_8.svg#SFProText-Ultralight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_6.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.eot");
  src: local("SF Pro Text Ultralight"), local("SFProText-Ultralight"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-Ultralight_9.svg#SFProText-Ultralight") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SFProText';
  src: url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.eot");
  src: local("SF Pro Text Ultralight Italic"), local("SFProText-UltralightItalic"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.woff2") format("woff2"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.woff") format("woff"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.ttf") format("truetype"), url("../../fonts/fonts-web/SF-Pro-Text/SFProText-UltralightItalic_7.svg#SFProText-UltralightItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-Bold.eot");
  src: local("Lato Bold"), local("Lato-Bold"), url("../../fonts/fonts-web/Lato/Lato-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Bold.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Bold.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Bold.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-Black.eot");
  src: local("Lato Black"), local("Lato-Black"), url("../../fonts/fonts-web/Lato/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Black.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Black.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Black.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Black.svg#Lato-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-BlackItalic.eot");
  src: local("Lato Black Italic"), local("Lato-BlackItalic"), url("../../fonts/fonts-web/Lato/Lato-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-BlackItalic.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-BlackItalic.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-BlackItalic.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-BlackItalic.svg#Lato-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-LightItalic.eot");
  src: local("Lato-LightItalic"), url("../../fonts/fonts-web/Lato/Lato-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-LightItalic.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-LightItalic.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-LightItalic.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-LightItalic.svg#Lato-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato Hairline';
  src: url("../../fonts/fonts-web/Lato/Lato-Hairline.eot");
  src: local("Lato-Hairline"), url("../../fonts/fonts-web/Lato/Lato-Hairline.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Hairline.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Hairline.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Hairline.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Hairline.svg#Lato-Hairline") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato Hairline';
  src: url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.eot");
  src: local("Lato-HairlineItalic"), url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-HairlineItalic.svg#Lato-HairlineItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-Light.eot");
  src: local("Lato-Light"), url("../../fonts/fonts-web/Lato/Lato-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Light.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Light.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Light.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Light.svg#Lato-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-BoldItalic.eot");
  src: local("Lato Bold Italic"), local("Lato-BoldItalic"), url("../../fonts/fonts-web/Lato/Lato-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-BoldItalic.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-BoldItalic.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-BoldItalic.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-BoldItalic.svg#Lato-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-Regular.eot");
  src: local("Lato Regular"), local("Lato-Regular"), url("../../fonts/fonts-web/Lato/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Regular.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Regular.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Regular.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../../fonts/fonts-web/Lato/Lato-Italic.eot");
  src: local("Lato Italic"), local("Lato-Italic"), url("../../fonts/fonts-web/Lato/Lato-Italic.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-web/Lato/Lato-Italic.woff2") format("woff2"), url("../../fonts/fonts-web/Lato/Lato-Italic.woff") format("woff"), url("../../fonts/fonts-web/Lato/Lato-Italic.ttf") format("truetype"), url("../../fonts/fonts-web/Lato/Lato-Italic.svg#Lato-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "feeling-blessed";
  src: url("../../fonts/fonts-icon/fb/feeling-blessed.eot");
  src: url("../../fonts/fonts-icon/fb/feeling-blessed.eot?#iefix") format("embedded-opentype"), url("../../fonts/fonts-icon/fb/feeling-blessed.woff") format("woff"), url("../../fonts/fonts-icon/fb/feeling-blessed.ttf") format("truetype"), url("../../fonts/fonts-icon/fb/feeling-blessed.svg#feeling-blessed") format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "feeling-blessed" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="fb-icon-"]:before,
[class*=" fb-icon-"]:before {
  font-family: "feeling-blessed" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fb-icon-menu-icon:before {
  content: "a";
}

.fb-icon-about:before {
  content: "b";
}

.fb-icon-browser:before {
  content: "c";
}

.fb-icon-contact-us:before {
  content: "d";
}

.fb-icon-invite:before {
  content: "e";
}

.fb-icon-logout:before {
  content: "f";
}

.fb-icon-memoriam:before {
  content: "g";
}

.fb-icon-my-donations:before {
  content: "h";
}

.fb-icon-my-registries:before {
  content: "i";
}

.fb-icon-payment:before {
  content: "j";
}

.fb-icon-recurring:before {
  content: "k";
}

.fb-icon-settings:before {
  content: "l";
}

.fb-icon-google:before {
  content: "n";
}

.fb-icon-facebook-shape:before {
  content: "m";
}

.fb-icon-whatsapp-shape:before {
  content: "o";
}

.fb-icon-facebook:before {
  content: "p";
}

.fb-icon-instagram-shape:before {
  content: "q";
}

.fb-icon-twitter-shape:before {
  content: "r";
}

.fb-icon-password:before {
  content: "s";
}

.fb-icon-profile:before {
  content: "t";
}

.fb-icon-name:before {
  content: "v";
}

.fb-icon-gift:before {
  content: "u";
}

.fb-icon-google-play:before {
  content: "w";
}

.fb-icon-apple-store:before {
  content: "x";
}

.fb-icon-calendar:before {
  content: "y";
}

.fb-icon-map:before {
  content: "z";
}

.fb-icon-list:before {
  content: "\E800";
}

.fb-icon-email-address:before {
  content: "B";
}

.fb-icon-avatar-user:before {
  content: "D";
}

.fb-icon-down-arrow-two:before {
  content: "E";
}

.fb-icon-sort:before {
  content: "F";
}

.fb-icon-search-icon:before {
  content: "G";
}

.fb-icon-whatsapp:before {
  content: "I";
}

.fb-icon-instagram:before {
  content: "J";
}

.fb-icon-bank:before {
  content: "K";
}

.fb-icon-card:before {
  content: "L";
}

.fb-icon-visa-card:before {
  content: "P";
}

.fb-icon-visa:before {
  content: "M";
}

.fb-icon-shield:before {
  content: "A";
}

.fb-icon-dollars-money-bag-on-a-hand:before {
  content: "N";
}

.fb-icon-money-bag:before {
  content: "O";
}

.fb-icon-cover-fee:before {
  content: "Q";
}

.fb-icon-memoriam-1:before {
  content: "R";
}

.fb-icon-lock:before {
  content: "S";
}

.fb-icon-check-circle:before {
  content: "T";
}

.fb-icon-circle-add:before {
  content: "U";
}

.fb-icon-plus-round:before {
  content: "V";
}

.fb-icon-minus-round:before {
  content: "W";
}

.fb-icon-info:before {
  content: "Y";
}

.fb-icon-edit-btn:before {
  content: "X";
}

.fb-icon-link:before {
  content: "1";
}

.fb-icon-chevron-left:before {
  content: "2";
}

.fb-icon-arrow-1-right:before {
  content: "3";
}

.fb-icon-chevron-up:before {
  content: "4";
}

.fb-icon-share:before {
  content: "Z";
}

.fb-icon-trash:before {
  content: "0";
}

.fb-icon-x:before {
  content: "5";
}

.fb-icon-address-book:before {
  content: "6";
}

.fb-icon-alert:before {
  content: "7";
}

.fb-icon-arrow-down:before {
  content: "8";
}

.fb-icon-arrow-left:before {
  content: "!";
}

.fb-icon-arrow-right:before {
  content: "\"";
}

.fb-icon-arrow-up:before {
  content: "#";
}

.fb-icon-calendar-one:before {
  content: "$";
}

.fb-icon-check-icon:before {
  content: "%";
}

.fb-icon-copy:before {
  content: "&";
}

.fb-icon-delete:before {
  content: "'";
}

.fb-icon-donations:before {
  content: "(";
}

.fb-icon-donors:before {
  content: ")";
}

.fb-icon-eye:before {
  content: "*";
}

.fb-icon-eye-off:before {
  content: "+";
}

.fb-icon-faqs:before {
  content: ",";
}

.fb-icon-filters-data-up:before {
  content: "-";
}

.fb-icon-filters-data-down:before {
  content: ".";
}

.fb-icon-filters:before {
  content: ":";
}

.fb-icon-notification-bell:before {
  content: "<";
}

.fb-icon-supporters:before {
  content: "C";
}

.fb-icon-tcf-search:before {
  content: "H";
}

.fb-icon-users:before {
  content: "=";
}

.fb-icon-trend-up:before {
  content: ">";
}

.fb-icon-trend-down:before {
  content: "?";
}

.fb-icon-user:before {
  content: "@";
}

.fb-icon-filters-alpha-down:before {
  content: "[";
}

.fb-icon-rotate-ccw:before {
  content: "]";
}

.fb-icon-home:before {
  content: "^";
}

.fb-icon-star:before {
  content: "_";
}

.fb-icon-thumb-up:before {
  content: "`";
}

.fb-icon-notification:before {
  content: "{";
}

.fb-icon-plus-circle:before {
  content: "|";
}

.fb-icon-filters-alpha-up:before {
  content: "/";
}

.fb-icon-error-404:before {
  content: "9";
}

.fb-icon-video:before {
  content: "}";
}

.fb-icon-help:before {
  content: ";";
}

.fb-icon-twitter:before {
  content: "~";
}

.fb-icon-left-indicator-arrow:before {
  content: "\\";
}

.fb-icon-right-indicator-arrow:before {
  content: "\E000";
}

.fb-icon-admin-with-cogwheels:before {
  content: "\E001";
}

.fb-icon-card-sec:before {
  content: "\E003";
}

.fb-icon-tax-report:before {
  content: "\E002";
}

.fb-icon-zakat-calculator:before {
  content: "\E004";
}

.fb-icon-three-user:before {
  content: "\E005";
}

.fb-icon-world-ico:before {
  content: "\E006";
}

body header {
  margin: 0px;
  width: 100%;
  background: #FFFFFF;
  position: relative;
  /*dk changes starts*/
  /*dk changes ends*/
}

body header .header-inner {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body header .menu-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -10.5px;
}

body header .menu-icon a,
body header .menu-icon button {
  padding: 0px;
  display: block;
  text-decoration: none;
}

body header .menu-icon a i,
body header .menu-icon button i {
  color: #08AEEA;
}

body header .menu-icon a:hover, body header .menu-icon a:focus,
body header .menu-icon button:hover,
body header .menu-icon button:focus {
  text-decoration: none;
}

body header .page-name {
  margin: 0px;
  margin-right: auto;
  padding: 0px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  color: #5F5F5F;
}

body header .btn-box {
  margin-right: 10px;
}

body header .btn-box a {
  background: #FF647C;
  border: 1px solid #FF647C;
  padding: 8px 10px !important;
  line-height: initial !important;
  height: auto !important;
  font-size: 15px !important;
}

body header .btn-box a:hover {
  border: 1px solid #FF647C;
  background: #FFFFFF;
  color: #FF647C;
}

body header .btn-box a:active {
  background: #FF647C;
  color: #FFFFFF;
  border: 1px solid #FF647C;
}

body header .dropdown {
  padding: 0px;
}

body header .dropdown button {
  background-color: transparent;
  border-color: transparent;
  padding: 0px;
}

body header .dropdown button:active, body header .dropdown button:focus, body header .dropdown button:hover {
  background-color: transparent !important;
  border-color: transparent !important;
}

body header .dropdown button::after {
  content: "E" !important;
  font-family: "feeling-blessed" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #7E818B;
  font-size: 12px;
  border: none !important;
}

body header .dropdown .user-img {
  background: #EFEFEF;
  border-radius: 50%;
  overflow: hidden;
}

body header .dropdown .user-img img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

body header .dropdown .user-name {
  margin: 0px;
  padding: 0px;
  font-family: 'Lato';
  font-style: normal;
}

body header .dropdown.show button {
  background-color: transparent !important;
  border-color: transparent !important;
}

body header .dropdown .dropdown-menu {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body header .dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  display: inline-block;
  border: 8px solid transparent;
  border-bottom-color: #E0E0E0;
}

body header .dropdown .dropdown-menu:after {
  position: absolute;
  display: inline-block;
  content: "";
  border: 7px solid transparent;
  border-bottom-color: #FFFFFF;
}

body header .dropdown .dropdown-menu ul {
  margin: 0px;
  padding: 10px 0px;
  width: 100%;
  list-style-type: none;
}

body header .dropdown .dropdown-menu ul li {
  margin: 0px 0px 10px;
  width: 100%;
}

body header .dropdown .dropdown-menu ul li:last-child, body header .dropdown .dropdown-menu ul li:only-child {
  margin: 0px;
  margin-bottom: 0px !important;
}

body header .dropdown .dropdown-menu ul li a {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  color: #7E818B;
  text-decoration: none;
}

body header .dropdown .dropdown-menu ul li.RegNoProfit {
  display: none;
}

body header .header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

body .left-navigation-box {
  background-color: #FFF;
  border-top: none;
  border: 1px solid #F6F6F9;
  border-bottom: none;
  box-shadow: 0px 3px 14px rgba(148, 148, 148, 0.2);
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: auto;
}

body .left-navigation-box .left-navigation {
  margin: 0px;
  padding: 30px 0px;
  width: 100%;
  overflow-y: auto;
  padding-right: 0px;
}

body .left-navigation-box .left-navigation ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .left-navigation-box .left-navigation ul li {
  margin: 5px 0px 0px;
  padding: 0px;
  width: 100%;
  height: auto;
  min-height: 48px;
}

body .left-navigation-box .left-navigation ul li a {
  margin: 0px;
  padding: 0px;
  position: relative;
  border-radius: 0px 25px 25px 0px;
}

body .left-navigation-box .left-navigation ul li a::before {
  content: '';
  width: 3px;
  height: 0px;
  background: #08AEEA;
  transition: height 0.3s;
  position: absolute;
  left: 0px;
  top: 0px;
}

body .left-navigation-box .left-navigation ul li a i {
  color: #08AEEA;
}

body .left-navigation-box .left-navigation ul li a::after {
  content: '';
  width: 0px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  transition: width 0.3s;
  border-radius: 0px 25px 25px 0px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
}

body .left-navigation-box .left-navigation ul li a .nes-menu-icon {
  padding-left: 0px;
  font-size: 13px;
  margin-right: 0px;
  transform: rotate(0deg);
  position: absolute;
  right: 20px;
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul li a .link-outer {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 1;
}

body .left-navigation-box .left-navigation ul li a .link-txt {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  color: #08AEEA;
}

body .left-navigation-box .left-navigation ul li a:hover {
  text-decoration: none;
}

body .left-navigation-box .left-navigation ul li a:hover i {
  text-decoration: none;
}

body .left-navigation-box .left-navigation ul li a:hover .link-outer {
  text-decoration: none;
}

body .left-navigation-box .left-navigation ul li a:hover::before {
  height: 100%;
  transition: height 0.3s;
}

body .left-navigation-box .left-navigation ul li a:hover:after {
  width: 100%;
  background: rgba(8, 174, 234, 0.08);
  transition: width 0.3s;
}

body .left-navigation-box .left-navigation ul li a.active::before {
  height: 100%;
  transition: height 0.3s;
}

body .left-navigation-box .left-navigation ul li a.active:after {
  width: 100%;
  background: rgba(8, 174, 234, 0.08);
  transition: width 0.3s;
}

body .left-navigation-box .left-navigation ul li a.active .nes-menu-icon {
  transform: rotate(180deg);
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul li a.dropdown-nav .parent-link::after {
  content: "E";
  font-family: "feeling-blessed" !important;
  font-size: 13px;
  margin-right: 0px;
  transform: rotate(0deg);
  position: absolute;
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul li a.dropdown-nav.active .parent-link::after {
  transform: rotate(180deg);
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link i {
  padding-left: 0px;
}

body .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link::after {
  content: "E";
  font-family: "feeling-blessed" !important;
  margin-right: 0px;
  transform: rotate(0deg);
  position: absolute;
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul li a.dropdown-nav-nes.active .parent-link::after {
  transform: rotate(180deg);
  transition: rotate 0.3s;
}

body .left-navigation-box .left-navigation ul .nav {
  margin: 0px 0px 0px;
  display: none;
}

body .left-navigation-box .left-navigation ul .nav li a .link-txt {
  color: #657176;
}

body .left-navigation-box .left-navigation ul .nav-nes {
  margin: 0px 0px 0px;
  display: none;
}

body .left-navigation-box .left-navigation ul.nav-bottom-border {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

body .left-navigation-box .left-navigation ul.nav-bottom-border::after {
  content: '';
  height: 1px;
  width: calc(100% - 30px);
  background: rgba(8, 174, 234, 0.15);
  position: absolute;
  bottom: 0px;
  left: 15px;
}

body .left-navigation-box.shrinkNav .left-navigation ul.nav li ul.nav li a .link-outer {
  padding-left: 16px;
  padding-right: 0px;
}

body .left-navigation-box.shrinkNav .left-navigation ul.nav li ul.nav li a .link-outer .link-txt {
  display: block;
}

/*
*****    Media Query     *****
*/
@media (max-width: 767.98px) {
  body header {
    padding: 0px 15px;
    height: 40px;
    border: 1px solid #F0F0F1;
    /*dk changes starts*/
    /*dk changes ends*/
  }
  body header .menu-icon a i,
  body header .menu-icon button i {
    color: #08AEEA;
    font-size: 21px;
    line-height: 21px;
  }
  body header .menu-icon a i::before,
  body header .menu-icon button i::before {
    line-height: 21px;
  }
  body header .page-name {
    margin-left: 55px;
    font-size: 18px;
    line-height: 22px;
  }
  body header .btn-box {
    display: none;
  }
  body header .dropdown {
    margin-right: 0px;
  }
  body header .dropdown .user-img {
    width: 26px;
    height: 26px;
  }
  body header .dropdown .user-img i {
    font-size: 13px;
    color: #08AEEA;
  }
  body header .dropdown .user-name {
    display: block !important;
    color: #7E818B;
    margin-right: 4px;
  }
  body header .dropdown .dropdown-menu {
    top: 10px !important;
  }
  body header .dropdown .dropdown-menu::before {
    top: -17px;
    right: 15px;
  }
  body header .dropdown .dropdown-menu::after {
    top: -14px;
    right: calc(15px + 1px);
  }
  body header .dropdown .dropdown-menu ul li {
    padding: 0px 15px;
  }
  body header .dropdown .dropdown-menu ul li a {
    font-size: 14px;
    line-height: 19px;
  }
  body header .dropdown .dropdown-menu ul li.RegNoProfit {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 6px;
  }
  body header .header-logo {
    width: 100%;
    max-width: 159px;
    height: 100%;
    max-height: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body header {
    padding: 0px;
    height: 70px;
    border: 1px solid #F6F6F9;
    box-shadow: 0px 3px 30px rgba(148, 148, 148, 0.15);
  }
  body header .menu-icon a i,
  body header .menu-icon button i {
    color: #08AEEA;
    font-size: 21px;
    line-height: 21px;
  }
  body header .menu-icon a i::before,
  body header .menu-icon button i::before {
    line-height: 21px;
  }
  body header .page-name {
    margin-left: 55px;
    font-size: 18px;
    line-height: 22px;
  }
  body header .dropdown {
    margin-right: 20px;
  }
  body header .dropdown .user-img {
    width: 34px;
    height: 34px;
  }
  body header .dropdown .user-img i {
    font-size: 16px;
    color: #08AEEA;
  }
  body header .dropdown .user-name {
    /* identical to box height */
    display: block !important;
    color: #7E818B;
    margin-right: 4px;
  }
  body header .dropdown .dropdown-menu {
    top: 10px !important;
  }
  body header .dropdown .dropdown-menu::before {
    top: -16px;
    left: 50%;
  }
  body header .dropdown .dropdown-menu::after {
    top: -14px;
    left: calc(50% + 1px);
  }
  body header .dropdown .dropdown-menu ul li {
    padding: 0px 15px;
  }
  body header .dropdown .dropdown-menu ul li a {
    font-size: 12px;
    line-height: 17px;
  }
  body header .header-logo {
    width: 100%;
    max-width: 236px;
    height: 100%;
    max-height: 37px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body header {
    padding: 0px;
    height: 70px;
    border: 1px solid #F6F6F9;
    box-shadow: 0px 3px 30px rgba(148, 148, 148, 0.15);
  }
  body header .menu-icon a i,
  body header .menu-icon button i {
    color: #08AEEA;
    font-size: 21px;
    line-height: 21px;
  }
  body header .menu-icon a i::before,
  body header .menu-icon button i::before {
    line-height: 21px;
  }
  body header .page-name {
    margin-left: 55px;
    font-size: 20px;
    line-height: 24px;
  }
  body header .dropdown {
    margin-right: 20px;
  }
  body header .dropdown .user-img {
    width: 34px;
    height: 34px;
  }
  body header .dropdown .user-img i {
    font-size: 16px;
    color: #08AEEA;
  }
  body header .dropdown .user-name {
    padding-left: 10px;
    padding-right: 7px;
    font-weight: 600;
    font-size: 14px;
    /* identical to box height */
    color: #7E818B;
  }
  body header .dropdown dropdown-menu {
    top: 10px !important;
  }
  body header .dropdown dropdown-menu::before {
    top: -16px;
    left: 50%;
  }
  body header .dropdown dropdown-menu::after {
    top: -14px;
    left: calc(50% + 1px);
  }
  body header .dropdown dropdown-menu ul li {
    padding: 0px 15px;
  }
  body header .dropdown dropdown-menu ul li a {
    font-size: 12px;
    line-height: 17px;
  }
  body header .header-logo {
    width: 100%;
    max-width: 236px;
    height: 100%;
    max-height: 37px;
  }
}

@media (min-width: 1200px) {
  body header {
    padding: 0px;
    height: 70px;
    border: 1px solid #F6F6F9;
    box-shadow: 0px 3px 30px rgba(148, 148, 148, 0.15);
  }
  body header .menu-icon a i,
  body header .menu-icon button i {
    color: #08AEEA;
    font-size: 21px;
    line-height: 21px;
  }
  body header .menu-icon a i::before,
  body header .menu-icon button i::before {
    line-height: 21px;
  }
  body header .page-name {
    margin-left: 55px;
    font-size: 20px;
    line-height: 24px;
  }
  body header .dropdown {
    margin-right: 20px;
  }
  body header .dropdown .user-img {
    width: 34px;
    height: 34px;
  }
  body header .dropdown .user-img i {
    font-size: 16px;
    color: #08AEEA;
  }
  body header .dropdown .user-name {
    padding-left: 10px;
    padding-right: 7px;
    font-weight: 600;
    font-size: 14px;
    /* identical to box height */
    color: #7E818B;
  }
  body header .dropdown .dropdown-menu {
    top: 10px !important;
  }
  body header .dropdown .dropdown-menu::before {
    top: -16px;
    left: 50%;
  }
  body header .dropdown .dropdown-menu::after {
    top: -14px;
    left: calc(50% + 1px);
  }
  body header .dropdown .dropdown-menu ul li {
    padding: 0px 15px;
  }
  body header .dropdown .dropdown-menu ul li a {
    font-size: 14px;
    line-height: 19px;
  }
  body header .header-logo {
    width: 100%;
    max-width: 236px;
    height: 100%;
    max-height: 37px;
  }
}

/*
*****    Media Query End Above     *****
*/
*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0px;
}

/* Chrome safari scrolbar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #07aee9;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #c9f0fd;
}

/* scrollabr */
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #07aee9;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #e6def3;
  background-color: #c9f0fd;
}

.mCSB_inside > .mCSB_container {
  margin-right: 0px;
}

.mCSB_scrollTools {
  width: 3px;
  right: 5px;
}

html {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #FFFFFF;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  direction: ltr;
  /* Icon 1 */
  /* Icon 2 */
  /* Icon 3 */
  /* Icon 4 */
}

body #app,
body .container-fluid,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl,
body main {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: inherit;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
  margin: 0px;
  padding: 0px;
}

body a {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 24px;
  color: #08AEEA;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*
            Link = https://css-tricks.com/almanac/selectors/a/active/
            “LOVE HATE” ,
                L :link
                O
                V :visited
                E

                H :hover
                A :active
                T
                E
        */
}

body a:visited {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: underline;
  transition: color 0.4s;
}

body a:hover, body a:focus {
  color: #08AEEA;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: underline;
  transition: color 0.4s;
}

body a:active {
  outline: none !important;
  box-shadow: none !important;
  text-decoration: underline;
  transition: color 0.4s;
}

body input,
body textarea,
body button,
body img {
  outline: none !important;
  box-shadow: none !important;
}

body input:visited,
body textarea:visited,
body button:visited,
body img:visited {
  outline: none !important;
  box-shadow: none !important;
}

body input:hover, body input:focus,
body textarea:hover,
body textarea:focus,
body button:hover,
body button:focus,
body img:hover,
body img:focus {
  outline: none !important;
  box-shadow: none !important;
}

body input:active,
body textarea:active,
body button:active,
body img:active {
  outline: none !important;
  box-shadow: none !important;
}

body .text-transform-upp {
  text-transform: uppercase;
}

body .text-transform-cap {
  text-transform: capitalize;
}

body .text-align-right {
  text-align: right;
}

body .text-align-left {
  text-align: left;
}

body .text-align-center {
  text-align: center;
}

body .no-padding {
  padding: 0px !important;
}

body .margin-bottom-30 {
  margin-bottom: 30px !important;
}

body .no-top-radius-5px {
  border-radius: 0px 0px 5px 5px !important;
}

body .no-bottom-radius-5px {
  border-radius: 5px 5px 0px 0px !important;
}

body #app {
  margin: 0px;
  padding: 0px;
  width: 100%;
}


body .container-fluid,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body main {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body .wrapper {
  min-height: 100%;
}

body section {
  width: 100%;
}

body .two-column-page {
  width: 100%;
  position: relative;
}

body .two-column-page .left-navigation-box {
  border: 1px solid #F6F6F9;
  box-shadow: 0px 3px 14px rgba(148, 148, 148, 0.2);
  background: #FFF;
}

body .two-column-page .left-navigation-box .left-nav-logo {
  border-bottom: 1px solid #F6F6F9;
}

body .two-column-page .left-navigation-box .left-navigation ul li a i {
  position: absolute;
  left: 0px;
  padding-left: 31px;
  font-size: 19px;
  margin-right: 17px;
}

body .two-column-page .left-navigation-box .left-navigation ul li a .link-outer {
  padding-left: 68px;
}

body .two-column-page .page-outer-box {
  width: 100%;
  position: relative;
}

body header + .alert-box-outer {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body header + .alert-box-outer .alert {
  margin: 30px 0px 0px;
}

body header + .alert-box-outer ul {
  margin: 0px;
}

body header + .alert-box-outer ul li {
  list-style-position: outside;
}

body .single-btn-box {
  margin: 0px;
  padding: 0px 0px 47px;
  width: 100%;
}

body .btn {
  text-decoration: none;
  transition: all 0.4s ease !important;
  outline: none;
  display: inline-block;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}

body .btn.full-width {
  box-shadow: none;
}

body .btn.large-btn {
  box-shadow: none;
}

body .btn.medium-btn {
  margin: 0px;
  padding: 0px 20px;
  font-size: 16px;
  line-height: 40px;
  height: 40px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #08AEEA;
  box-shadow: none;
}

body .btn.small-btn {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  /* identical to box height */
  text-align: center;
  box-shadow: none;
}

body .btn:focus, body .btn:hover {
  transition: all 0.3s ease;
  outline: none;
  text-decoration: none;
}

body .btn.border-w-icon {
  line-height: inherit !important;
}

body .btn.border-w-icon i {
  margin-right: 15px;
  font-size: 20px;
  color: #08AEEA;
  transition: color 0.3s ease;
}

body .btn.border-w-icon:focus i, body .btn.border-w-icon:hover i {
  transition: color 0.3s ease;
  outline: none;
  color: #FFFFFF;
}

body .btn.icon-right i {
  margin-right: 0px;
  margin-left: 15px;
  font-size: 16px;
}

body .btn-default {
  background: #08AEEA;
  border-color: #08AEEA;
}

body .btn-primary {
  background: #08AEEA;
  background-color: #08AEEA;
  border-color: #08AEEA;
  color: #FFFFFF;
}

body .btn-primary.large-btn {
  color: #FFFFFF;
}

body .btn-primary.medium-btn {
  color: #FFFFFF;
}

body .btn-primary.small-btn {
  color: #FFFFFF;
}

body .btn-primary:focus, body .btn-primary:hover {
  background: transparent;
  background-color: transparent;
  border-color: #08AEEA;
  color: #08AEEA;
}

body .btn-primary:focus i, body .btn-primary:hover i {
  color: #08AEEA !important;
}

body .btn-primary:active {
  background: #08AEEA;
  background-color: #08AEEA;
  border-color: #08AEEA;
  color: #FFFFFF;
}

body .btn-primary:not(:disabled):not(.disabled):active, body .btn-primary:not(:disabled):not(.disabled).active {
  background: #08AEEA;
  background-color: #08AEEA;
  border-color: #08AEEA;
  color: #FFFFFF;
}

body .btn-danger {
  background: #F55F44;
  border-color: #F55F44;
  color: #FFFFFF;
}

body .btn-danger:not(:disabled):not(.disabled):active, body .btn-danger:not(:disabled):not(.disabled).active {
  background: #F55F44;
  border-color: #F55F44;
  color: #FFFFFF;
}

body .btn-danger:focus, body .btn-danger:hover {
  background: transparent;
  border-color: #F55F44;
  color: #F55F44;
}

body .btn-danger:active {
  background: #F55F44;
  border-color: #F55F44;
  color: #FFFFFF;
}

body .show > .btn-primary.dropdown-toggle {
  background: #08AEEA;
  background-color: #08AEEA;
  border-color: #08AEEA;
  color: #FFFFFF;
}

body .show > .btn-danger.dropdown-toggle {
  background: #F55F44;
  border-color: #F55F44;
  color: #FFFFFF;
}

body .border-btn {
  background: transparent;
  border: 1px solid #08AEEA;
  color: #08AEEA;
}

body .border-btn.medium-btn {
  margin: 0px;
  padding: 0px 20px;
  height: 45px;
  line-height: 45px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #08AEEA;
}

body .border-btn:focus, body .border-btn:hover {
  background: #08AEEA;
  border-color: #08AEEA;
  color: #FFFFFF;
}

body .border-btn.grey-border-btn {
  color: #75787E;
  border-color: #75787E;
}

body .border-btn.grey-border-btn:focus, body .border-btn.grey-border-btn:hover {
  background: #75787E;
  border-color: #75787E;
  color: #FFFFFF;
}

body .border-btn.btn-danger {
  background: transparent;
  border-color: #F55F44;
  color: #F55F44;
}

body .action-button-box a,
body .action-button-box button {
  margin-left: 25px;
  margin-right: 25px;
}

body .btn-group.btn-group-toggle > .btn {
  flex: unset;
}

body .btn-group.btn-group-toggle > .btn:not(:first-child) {
  border-radius: 5px;
  margin-right: 0px;
}

body .btn-group.btn-group-toggle > .btn:not(:last-child):not(.dropdown-toggle) {
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}

body .btn-group > .btn-group:not(:first-child) > .btn {
  border-radius: 5px;
  margin-right: 0px;
}

body .btn-group > .btn-group:not(:last-child) > .btn {
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
}

body .nav-tabs {
  border: none;
}

body .nav-tabs .nav-link {
  border: none;
  transition: all 0.3s ease;
  color: #75787E;
  position: relative;
}

body .nav-tabs .nav-link::after {
  content: '';
  height: 3px;
  width: 100%;
  border-radius: 5px;
  background: transparent;
  position: absolute;
  bottom: 0px;
  left: 0px;
  transition: all 0.3s ease;
}

body .nav-tabs .nav-link:hover {
  color: #08AEEA;
  transition: all 0.3s ease;
}

body .nav-tabs .nav-link:hover::after {
  content: '';
  height: 3px;
  width: 100%;
  border-radius: 5px;
  background: #08AEEA;
  transition: all 0.3s ease;
}

body .nav-tabs .nav-link.active {
  color: #08AEEA;
  transition: all 0.3s ease;
}

body .nav-tabs .nav-link.active::after {
  content: '';
  height: 3px;
  width: 100%;
  border-radius: 5px;
  background: #08AEEA;
}

body .nav-tabs.tab-full-width-nav .nav-link {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  max-height: 31px;
  text-align: center;
  letter-spacing: 0.02em;
}

body .nav-tabs.tab-inline-nav .nav-link {
  margin: 0px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  background: transparent;
}

body .nav-tabs.icon-w-txt .nav-link {
  margin: 0px;
  padding: 0px !important;
  margin-right: 15px;
  width: 157px;
  height: 75px;
  max-height: 75px;
  background: #FFFFFF;
  border: 0.5px solid #1A576D;
  border-radius: 5px;
  text-align: left;
}

body .nav-tabs.icon-w-txt .nav-link.dcc-card {
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #455A64;
}

body .nav-tabs.icon-w-txt .nav-link.dcc-card i {
  margin-right: 20px;
  font-size: 29px;
  color: #455A64;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account {
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #455A64;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account i {
  background: linear-gradient(180deg, #08AEEA 0%, #1FD4B9 100%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-right: 21.75px;
  font-size: 29px;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account .icon {
  margin-right: 20px;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account:hover .icon svg {
  display: none;
  visibility: hidden;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account:hover .icon::before {
  content: "K";
  font-family: "feeling-blessed" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none;
  font-size: 29px;
  color: #FFFFFF;
}

body .nav-tabs.icon-w-txt .nav-link.bank-account:hover i {
  background: transparent;
  -webkit-text-fill-color: #FFF;
  color: #FFF;
}

body .nav-tabs.icon-w-txt .nav-link.apple-pay {
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  font-size: 34px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #000000;
}

body .nav-tabs.icon-w-txt .nav-link.apple-pay i {
  margin-right: 5px;
  font-size: 29px;
  color: #000000;
}

body .nav-tabs.icon-w-txt .nav-link.apple-pay:hover i {
  color: #FFF;
}

body .nav-tabs.icon-w-txt .nav-link.google-pay {
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  font-size: 34px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #5F6368;
}

body .nav-tabs.icon-w-txt .nav-link.google-pay i {
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
  font-size: 29px;
}

body .nav-tabs.icon-w-txt .nav-link.google-pay:hover i {
  background: transparent;
  -webkit-text-fill-color: #FFF;
  color: #FFF;
}

body .nav-tabs.icon-w-txt .nav-link i:focus {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link:hover {
  background: rgba(8, 174, 234, 0.76);
  border: 0.5px solid rgba(8, 174, 234, 0.81);
  color: #FFFFFF;
}

body .nav-tabs.icon-w-txt .nav-link:hover i {
  color: #FFFFFF;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

body .nav-tabs.icon-w-txt .nav-link:focus i {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link:focus i:focus {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link.active {
  background: rgba(8, 174, 234, 0.76);
  border: 0.5px solid rgba(8, 174, 234, 0.81);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

body .nav-tabs.icon-w-txt .nav-link.active i {
  color: #FFFFFF;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

body .nav-tabs.icon-w-txt .nav-link.active:hover i {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link.active:hover i:focus {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link.active:focus i {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link.active:focus i:focus {
  border: none;
  outline: none;
}

body .nav-tabs.icon-w-txt .nav-link:last-child {
  margin-right: 0px;
}

body .nav-tabs.no-border-bottom .nav-link::after {
  display: none;
  visibility: hidden;
}

body .nav-tabs.vertical-nav {
  width: 100%;
  max-width: 235px;
}

body .nav-tabs.vertical-nav .nav-item {
  width: 100%;
}

body .nav-tabs.vertical-nav .nav-link {
  margin: 0px 0px 15px;
  padding: 0px 45px !important;
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: left;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #272931;
}

body .nav-tabs.vertical-nav .nav-link::after {
  display: none;
  visibility: hidden;
}

body .nav-tabs.vertical-nav .nav-link:hover {
  background: rgba(8, 174, 234, 0.1);
  border-radius: 15px;
}

body .nav-tabs.vertical-nav .nav-link.active {
  background: rgba(8, 174, 234, 0.1);
  border-radius: 15px;
}

body .nav-tabs.horizontal-nav-cover {
  flex: 1 1 auto;
}

body .tab-content {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

body .tab-content.tab-content-small-space {
  padding-top: 30px !important;
}

body .tab-content.tab-content-medium-space {
  padding-top: 37px !important;
}

body .tab-content.tab-content-large-space {
  padding-top: 60px !important;
}

body .tab-content .tab-pane-inner {
  padding: 0px;
}

body form .form-group,
body .form .form-group {
  margin-bottom: 23px;
}

body form label,
body .form label {
  margin-bottom: 10px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #272931;
  position: relative;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

body form label.grey-color,
body .form label.grey-color {
  color: #666666;
}

body form .require-icon,
body .form .require-icon {
  padding: 0px 5px;
  position: absolute;
  color: #F84424;
  font-size: 15px;
}

body form .form-control,
body .form .form-control {
  padding: 0px 17px;
  border: 1px solid #505153;
  border-radius: 10px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #A0A0A0;
}

body form .form-control::-webkit-input-placeholder,
body .form .form-control::-webkit-input-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #A0A0A0;
}

body form .form-control:-moz-placeholder,
body .form .form-control:-moz-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #A0A0A0;
}

body form .form-control::-moz-placeholder,
body .form .form-control::-moz-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #A0A0A0;
}

body form .form-control:-ms-input-placeholder,
body .form .form-control:-ms-input-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #A0A0A0;
}

body form .form-control.no-radius,
body .form .form-control.no-radius {
  border-radius: 0px !important;
}

body form .form-control.grey-border,
body .form .form-control.grey-border {
  border: 1px solid #D8D8D8 !important;
  border-radius: 5px !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #4F4F4F;
}

body form .form-control.grey-border::-webkit-input-placeholder,
body .form .form-control.grey-border::-webkit-input-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #747474;
}

body form .form-control.grey-border:-moz-placeholder,
body .form .form-control.grey-border:-moz-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #747474;
}

body form .form-control.grey-border::-moz-placeholder,
body .form .form-control.grey-border::-moz-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #747474;
}

body form .form-control.grey-border:-ms-input-placeholder,
body .form .form-control.grey-border:-ms-input-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #747474;
}

body form .form-control.small-width,
body .form .form-control.small-width {
  width: 50%;
}

body form .form-control.medium-width,
body .form .form-control.medium-width {
  width: 75%;
}

body form .form-control.full-width,
body .form .form-control.full-width {
  width: 100%;
}

body form .form-control.max-width-full,
body .form .form-control.max-width-full {
  max-width: 100% !important;
}

body form .form-control:focus,
body .form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #07AEE9 !important;
}

body form .form-control:disabled, body form .form-control[readonly],
body .form .form-control:disabled,
body .form .form-control[readonly] {
  border: 1px solid #505153;
}

body form select,
body .form select {
  padding: 0px 15px !important;
  font-family: "Lato" !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #333333;
  background: #FFFFFF !important;
  border: 1px solid #D8D8D8;
  border-radius: 5px !important;
  height: 40px !important;
  /* Change Autocomplete styles in Chrome*/
}

body form select:hover, body form select:focus,
body .form select:hover,
body .form select:focus {
  outline: none;
  box-shadow: none;
  border-color: #07AEE9 !important;
  box-shadow: none !important;
}

body form textarea,
body .form textarea {
  padding: 15px 20px !important;
  background: #FFFFFF;
  border: 1px solid #CBCBCB !important;
  width: 100% !important;
  height: 100px !important;
  resize: none !important;
  border-radius: 4px !important;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #A0A0A0;
  /* Change Autocomplete styles in Chrome*/
}

body form textarea::-webkit-input-placeholder,
body .form textarea::-webkit-input-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  letter-spacing: 0.02em !important;
  color: #AFAFAF !important;
}

body form textarea:-moz-placeholder,
body .form textarea:-moz-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  letter-spacing: 0.02em !important;
  color: #AFAFAF !important;
}

body form textarea::-moz-placeholder,
body .form textarea::-moz-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  letter-spacing: 0.02em !important;
  color: #AFAFAF !important;
}

body form textarea:-ms-input-placeholder,
body .form textarea:-ms-input-placeholder {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  letter-spacing: 0.02em !important;
  color: #AFAFAF !important;
}

body form .simple-txt,
body .form .simple-txt {
  margin: 0px;
  padding: 0px 17px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 24px;
  color: #494B4B;
}

body form input,
body .form input {
  /* Change Autocomplete styles in Chrome*/
}

body form input[type="password"]::-webkit-contacts-auto-fill-button,
body .form input[type="password"]::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0px;
  opacity: 0;
}

body form input[type=number]::-webkit-inner-spin-button, body form input[type=number]::-webkit-outer-spin-button,
body .form input[type=number]::-webkit-inner-spin-button,
body .form input[type=number]::-webkit-outer-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0px;
  /* Removes leftover margin */
}

body form .action-btn,
body .form .action-btn {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body form.needs-validation.was-validated .form-group .form-control:invalid,
body .form.needs-validation.was-validated .form-group .form-control:invalid {
  background-color: rgba(255, 100, 124, 0.03);
  border-color: #FF647C;
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control:invalid::-webkit-input-placeholder,
body .form.needs-validation.was-validated .form-group .form-control:invalid::-webkit-input-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control:invalid:-moz-placeholder,
body .form.needs-validation.was-validated .form-group .form-control:invalid:-moz-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control:invalid::-moz-placeholder,
body .form.needs-validation.was-validated .form-group .form-control:invalid::-moz-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control:invalid:-ms-input-placeholder,
body .form.needs-validation.was-validated .form-group .form-control:invalid:-ms-input-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control.is-invalid,
body .form.needs-validation.was-validated .form-group .form-control.is-invalid {
  background-color: rgba(255, 100, 124, 0.03);
  border-color: #FF647C;
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control.is-invalid::-webkit-input-placeholder,
body .form.needs-validation.was-validated .form-group .form-control.is-invalid::-webkit-input-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control.is-invalid:-moz-placeholder,
body .form.needs-validation.was-validated .form-group .form-control.is-invalid:-moz-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control.is-invalid::-moz-placeholder,
body .form.needs-validation.was-validated .form-group .form-control.is-invalid::-moz-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control.is-invalid:-ms-input-placeholder,
body .form.needs-validation.was-validated .form-group .form-control.is-invalid:-ms-input-placeholder {
  color: #3D4A4F;
}

body form.needs-validation.was-validated .form-group .form-control:valid, body form.needs-validation.was-validated .form-group .form-control.is-valid,
body .form.needs-validation.was-validated .form-group .form-control:valid,
body .form.needs-validation.was-validated .form-group .form-control.is-valid {
  background-image: none;
}

body form.needs-validation.was-validated .form-group .valid-feedback,
body form.needs-validation.was-validated .form-group .invalid-feedback,
body form.needs-validation.was-validated .form-group .invalid-password,
body .form.needs-validation.was-validated .form-group .valid-feedback,
body .form.needs-validation.was-validated .form-group .invalid-feedback,
body .form.needs-validation.was-validated .form-group .invalid-password {
  margin: 10px 0px 0px;
  padding: 0px 17px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #FF647C;
}

body form.needs-validation .invalid-password,
body .form.needs-validation .invalid-password {
  color: #FF647C;
  margin: 10px 0px 0px;
  padding: 0px 17px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
}

body form .custom-control.custom-checkbox .custom-control-label,
body .form .custom-control.custom-checkbox .custom-control-label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 500;
  color: #777777;
  cursor: pointer;
  box-shadow: none;
  margin-bottom: 0px;
  text-transform: inherit !important;
}

body form .custom-control.custom-checkbox .custom-control-label::before,
body .form .custom-control.custom-checkbox .custom-control-label::before {
  top: 0px;
  background: #FFFFFF;
  border: 0.5px solid #0AB3E6;
  border-radius: 2px;
  box-shadow: 0px 7px 64px rgba(0, 0, 0, 0.07);
}

body form .custom-control.custom-checkbox .custom-control-label::after,
body .form .custom-control.custom-checkbox .custom-control-label::after {
  top: 1px;
}

body form .custom-control.custom-checkbox .custom-control-label:focus,
body .form .custom-control.custom-checkbox .custom-control-label:focus {
  outline: none;
}

body form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label,
body .form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  color: #08AEEA;
}

body form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
body .form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: #08AEEA;
  border: 0.5px solid #0AB3E6;
  box-shadow: 0px 7px 64px rgba(0, 0, 0, 0.07);
  border-radius: 2px;
}

body form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  right: auto;
  border: solid #e0f4e7;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

body form .custom-control.custom-checkbox .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
body .form .custom-control.custom-checkbox .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #0AB3E6;
}

body form .custom-control.custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
body .form .custom-control.custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #FFFFFF;
  border-color: #0AB3E6;
}

body form .custom-control.custom-checkbox.small-chk-box,
body .form .custom-control.custom-checkbox.small-chk-box {
  line-height: 17px;
  min-height: 17px;
  padding-left: 25px;
}

body form .custom-control.custom-checkbox.small-chk-box .custom-control-label,
body .form .custom-control.custom-checkbox.small-chk-box .custom-control-label {
  font-size: 15px;
  line-height: 17px;
}

body form .custom-control.custom-checkbox.small-chk-box .custom-control-label a,
body .form .custom-control.custom-checkbox.small-chk-box .custom-control-label a {
  font-size: 15px;
  line-height: 17px;
}

body form .custom-control.custom-checkbox.small-chk-box .custom-control-label::before,
body .form .custom-control.custom-checkbox.small-chk-box .custom-control-label::before {
  width: 17px;
  height: 17px;
  left: -25px;
}

body form .custom-control.custom-checkbox.small-chk-box .custom-control-input,
body .form .custom-control.custom-checkbox.small-chk-box .custom-control-input {
  width: 17px;
  height: 17px;
}

body form .custom-control.custom-checkbox.small-chk-box .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-checkbox.small-chk-box .custom-control-input:checked ~ .custom-control-label::after {
  top: 2px;
  left: -20px !important;
  width: 6px !important;
  height: 11px !important;
}

body form .custom-control.custom-checkbox.large-chk-box,
body .form .custom-control.custom-checkbox.large-chk-box {
  line-height: 21px;
  min-height: 21px;
  padding-left: 40px;
}

body form .custom-control.custom-checkbox.large-chk-box .custom-control-label,
body .form .custom-control.custom-checkbox.large-chk-box .custom-control-label {
  font-size: 15px;
  line-height: 21px;
}

body form .custom-control.custom-checkbox.large-chk-box .custom-control-label a,
body .form .custom-control.custom-checkbox.large-chk-box .custom-control-label a {
  font-size: 15px;
  line-height: 21px;
}

body form .custom-control.custom-checkbox.large-chk-box .custom-control-label::before,
body .form .custom-control.custom-checkbox.large-chk-box .custom-control-label::before {
  width: 21px;
  height: 21px;
  left: -40px;
}

body form .custom-control.custom-checkbox.large-chk-box .custom-control-input,
body .form .custom-control.custom-checkbox.large-chk-box .custom-control-input {
  width: 21px;
  height: 21px;
}

body form .custom-control.custom-checkbox.large-chk-box .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-checkbox.large-chk-box .custom-control-input:checked ~ .custom-control-label::after {
  top: 2px;
  left: -33px !important;
  width: 7px !important;
  height: 13px !important;
}

body form .custom-control.custom-radio .custom-control-label,
body .form .custom-control.custom-radio .custom-control-label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 500;
  color: #777777;
  cursor: pointer;
  box-shadow: none;
  margin-bottom: 0px;
  text-transform: inherit !important;
}

body form .custom-control.custom-radio .custom-control-label::before,
body .form .custom-control.custom-radio .custom-control-label::before {
  top: 0px;
  background: #FFFFFF;
  border: 1.2px solid #E2EAEC;
  border-radius: 10px;
  box-shadow: none;
  width: 17px;
  height: 17px;
}

body form .custom-control.custom-radio .custom-control-label::after,
body .form .custom-control.custom-radio .custom-control-label::after {
  top: 1px;
  width: 9px;
  height: 9px;
  background: transparent;
  border-radius: 10px;
}

body form .custom-control.custom-radio .custom-control-label:focus,
body .form .custom-control.custom-radio .custom-control-label:focus {
  outline: none;
}

body form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label,
body .form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label {
  color: #08AEEA;
}

body form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
body .form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background: transparent;
  border: 1.2px solid #0AB3E6;
  box-shadow: none;
  border-radius: 10px;
}

body form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background: #0AB3E6;
}

body form .custom-control.custom-radio .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
body .form .custom-control.custom-radio .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #0AB3E6;
}

body form .custom-control.custom-radio .custom-control-input:not(:disabled):active ~ .custom-control-label::before,
body .form .custom-control.custom-radio .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: transparent;
  border-color: #0AB3E6;
}

body form .custom-control.custom-radio.small-chk-box,
body .form .custom-control.custom-radio.small-chk-box {
  line-height: 17px;
  min-height: 17px;
  padding-left: 25px;
}

body form .custom-control.custom-radio.small-chk-box .custom-control-label,
body .form .custom-control.custom-radio.small-chk-box .custom-control-label {
  font-size: 15px;
  line-height: 17px;
}

body form .custom-control.custom-radio.small-chk-box .custom-control-label::before,
body .form .custom-control.custom-radio.small-chk-box .custom-control-label::before {
  width: 17px;
  height: 17px;
  left: -25px;
}

body form .custom-control.custom-radio.small-chk-box .custom-control-input,
body .form .custom-control.custom-radio.small-chk-box .custom-control-input {
  width: 17px;
  height: 17px;
}

body form .custom-control.custom-radio.small-chk-box .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-radio.small-chk-box .custom-control-input:checked ~ .custom-control-label::after {
  top: 4px;
  left: -21px !important;
  width: 9px !important;
  height: 9px !important;
}

body form .custom-control.custom-radio.large-chk-box,
body .form .custom-control.custom-radio.large-chk-box {
  line-height: 17px;
  min-height: 17px;
  padding-left: 25px;
  width: 100%;
  max-width: 435px;
}

body form .custom-control.custom-radio.large-chk-box .custom-control-label,
body .form .custom-control.custom-radio.large-chk-box .custom-control-label {
  font-size: 15px;
  line-height: 17px;
  width: 100%;
}

body form .custom-control.custom-radio.large-chk-box .custom-control-label::before,
body .form .custom-control.custom-radio.large-chk-box .custom-control-label::before {
  width: 17px;
  height: 17px;
  left: -25px;
  top: calc(50% - 8.5px);
}

body form .custom-control.custom-radio.large-chk-box .custom-control-input,
body .form .custom-control.custom-radio.large-chk-box .custom-control-input {
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 8.5px);
}

body form .custom-control.custom-radio.large-chk-box .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-radio.large-chk-box .custom-control-input:checked ~ .custom-control-label::after {
  top: calc(50% - 4.5px);
  left: -21px !important;
  width: 9px !important;
  height: 9px !important;
}

body form .custom-control.custom-switch .custom-control-label,
body .form .custom-control.custom-switch .custom-control-label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  cursor: pointer;
  color: #777777;
}

body form .custom-control.custom-switch .custom-control-label::before,
body .form .custom-control.custom-switch .custom-control-label::before {
  width: 37px !important;
  height: 15px !important;
  top: 2.5px;
  background: #DEDEDE !important;
  border: none !important;
  outline: none;
  box-shadow: none;
  border-radius: 7px !important;
}

body form .custom-control.custom-switch .custom-control-label::after,
body .form .custom-control.custom-switch .custom-control-label::after {
  width: 20px !important;
  height: 20px !important;
  border-radius: 100%;
  background: #FFFFFF !important;
  border: none;
  background-color: #FFFFFF !important;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.13) !important;
  outline: none;
  box-shadow: none;
}

body form .custom-control.custom-switch .custom-control-input:checked,
body .form .custom-control.custom-switch .custom-control-input:checked {
  outline: none;
  box-shadow: none;
}

body form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label,
body .form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label {
  color: #40424C;
  outline: none;
  box-shadow: none;
}

body form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before,
body .form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #6EDC5F !important;
  background-color: #6EDC5F !important;
  outline: none;
  box-shadow: none;
  right: -37px;
  top: 2.5px;
}

body form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::after,
body .form .custom-control.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  outline: none;
  box-shadow: none;
  right: -27px;
  top: 0px;
}

body form .custom-control.custom-switch .custom-control-input:not(:checked),
body .form .custom-control.custom-switch .custom-control-input:not(:checked) {
  color: #777777;
}

body form .custom-control.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::before,
body .form .custom-control.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::before {
  outline: none;
  box-shadow: none;
  right: -37px;
  top: 2.5px;
}

body form .custom-control.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::after,
body .form .custom-control.custom-switch .custom-control-input:not(:checked) ~ .custom-control-label::after {
  outline: none;
  box-shadow: none;
  right: -18px;
  top: 0px;
}

body form .custom-control.custom-switch.switch-right,
body .form .custom-control.custom-switch.switch-right {
  padding-left: 0px;
  padding-right: 37px;
}

body form .custom-control.custom-switch.switch-right .custom-control-label::before,
body .form .custom-control.custom-switch.switch-right .custom-control-label::before {
  left: auto;
  right: -2.25rem;
}

body form .custom-control.custom-switch.switch-right .custom-control-label::after,
body .form .custom-control.custom-switch.switch-right .custom-control-label::after {
  left: auto;
  right: calc(-2.25rem + 2px);
}

body form .input-group,
body .form .input-group {
  height: 40px;
  width: 100%;
  background: #FFFFFF;
}

body form .input-group:focus,
body .form .input-group:focus {
  outline: none;
  box-shadow: none;
  border-color: #07AEE9;
}

body form .input-group:focus .input-group-prepend .input-group-text,
body .form .input-group:focus .input-group-prepend .input-group-text {
  border-color: #07AEE9;
}

body form .input-group .input-group-prepend,
body .form .input-group .input-group-prepend {
  height: 100%;
}

body form .input-group .input-group-prepend .input-group-text,
body .form .input-group .input-group-prepend .input-group-text {
  background: #08AEEA !important;
  border: 1px solid #08AEEA !important;
  border-radius: 5px 0px 0px 5px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  color: #FFFFFF;
  padding: 0px 10px;
  height: 100%;
}

body form .input-group input,
body .form .input-group input {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  color: #272931;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #08AEEA !important;
  border-radius: 0px 5px 5px 0px !important;
}

body form .input-group input::-webkit-input-placeholder,
body .form .input-group input::-webkit-input-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  color: #272931;
}

body form .input-group input:-moz-placeholder,
body .form .input-group input:-moz-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  color: #272931;
}

body form .input-group input::-moz-placeholder,
body .form .input-group input::-moz-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  color: #272931;
}

body form .input-group input:-ms-input-placeholder,
body .form .input-group input:-ms-input-placeholder {
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 40px;
  color: #272931;
}

body form .input-group input:focus,
body .form .input-group input:focus {
  outline: none;
  box-shadow: none;
  border-color: #07AEE9;
}

body form .select2,
body .form .select2 {
  width: 100% !important;
  height: 40px;
}

body form .select2.select2-container--default .selection,
body .form .select2.select2-container--default .selection {
  width: 100%;
  height: 100%;
}

body form .select2.select2-container--default .select2-selection--multiple,
body .form .select2.select2-container--default .select2-selection--multiple {
  border: 1px solid #D8D8D8;
  border-radius: 5px !important;
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #4F4F4F;
  width: 100%;
  height: 100%;
  outline: none;
}

body form .select2.select2-container--default .select2-selection[aria-owns="select2-categories-results"],
body .form .select2.select2-container--default .select2-selection[aria-owns="select2-categories-results"] {
  outline: none;
  box-shadow: none;
  border-color: #07AEE9;
}

body form .select2.select2-container--default .select2-selection__rendered,
body .form .select2.select2-container--default .select2-selection__rendered {
  padding: 5px 15px;
  height: 100%;
  display: flex;
}

body form .select2.select2-container--default .select2-selection__rendered .select2-selection__choice,
body .form .select2.select2-container--default .select2-selection__rendered .select2-selection__choice {
  margin-top: 0px;
  padding: 0px;
  padding-right: 15px;
  padding-left: 5px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #08AEEA;
  border-color: rgba(8, 174, 234, 0.7);
  background: rgba(8, 174, 234, 0.1);
  border-radius: 5px;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

body form .select2.select2-container--default .select2-selection__rendered .select2-selection__choice__remove,
body .form .select2.select2-container--default .select2-selection__rendered .select2-selection__choice__remove {
  color: #08AEEA;
  margin-left: 2px;
  margin-right: unset;
  position: absolute;
  right: 3px;
}

body form button,
body .form button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .form-control:focus, body .form-control:hover {
  outline: none !important;
  box-shadow: none !important;
}

body .icon-field {
  position: relative;
}

body .icon-field .icon-box {
  width: 44px;
  height: 100%;
  max-height: 40px;
  position: absolute;
  top: 0px;
  left: 0px;
}

body .icon-field .icon-box i {
  font-size: 17px;
  color: #505153;
}

body .icon-field .form-control {
  padding-left: 44px;
}

body .icon-field-right {
  position: relative;
}

body .icon-field-right .icon-box {
  width: 44px;
  height: 100%;
  max-height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
}

body .icon-field-right .icon-box i {
  font-size: 17px;
  color: #505153;
}

body .icon-field-right .form-control {
  padding-right: 44px;
}

body .progress {
  height: 8px;
  background: #DEF6FF;
  border-radius: 10px;
}

body .progress .progress-bar {
  height: 100%;
  border-radius: 10px;
}

body .progress .progress-bar.bg-info {
  background: #08AEEA !important;
}

body .small-heading {
  margin: 0px;
  padding: 0px;
  width: 100%;
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #272931;
}

body .xsmall-heading {
  margin: 0px;
  padding: 0px;
  width: 100%;
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #272931;
}

body .page-heading h1 {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #494B4B;
}

body .page-nested-heading {
  text-align: center;
}

body .page-nested-heading h2 {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #494B4B;
}

body .more-opt-txt {
  margin: 15px 0px;
  width: 100%;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #494B4B;
}

body .select-option {
  margin: 25px 0px 0px;
  padding: 0px;
  width: 100%;
}

body .select-option .btn-secondary {
  padding: 0px;
  background: #FFFFFF;
  border: 1px solid #08AEEA !important;
  border-radius: 5px;
  font-family: 'Lato';
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #08AEEA;
  height: 42px;
  line-height: 40px;
  box-shadow: none;
  min-width: 86px;
  cursor: pointer;
}

body .select-option .btn-secondary:hover {
  color: #FFFFFF !important;
  background: #08AEEA !important;
  border-color: #08AEEA !important;
}

body .select-option .btn-secondary.active {
  color: #FFFFFF !important;
  background: #08AEEA !important;
  border-color: #08AEEA !important;
}

body .select-option ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .cerulean-box {
  background: rgba(8, 174, 234, 0.1);
  border-radius: 5px;
}

body .white-box {
  background: #FFFFFF;
  border-radius: 5px;
}

body .white-box-w-shadow {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(234, 236, 240, 0.25);
  border-radius: 5px;
}

body .white-box-w-d-shadow {
  background: #FFFFFF;
  box-shadow: -8px 0px 15px rgba(8, 72, 95, 0.2);
  border-radius: 5px;
}

body .cerulean-box-w-shadow {
  background: rgba(8, 174, 234, 0.1);
  box-shadow: 0px 2px 4px rgba(234, 236, 240, 0.25);
  border-radius: 5px;
}

body .grey-toggle-box {
  background: rgba(242, 245, 248, 0.7);
  border-radius: 5px;
}

body .grey-toggle-box ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .grey-toggle-box ul li {
  margin: 0px 0px 15px;
  padding: 0px;
  width: 100%;
  min-height: 20px;
}

body .grey-toggle-box ul li:last-child, body .grey-toggle-box ul li:only-child {
  margin-bottom: 0px;
}

body .grey-border-box {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #E7EAEF;
  border-radius: 4px;
  background: #FFF;
}

body .grey-border-box .box-header {
  padding: 10px 0px 0px;
  background: #F5F7F9;
  border-radius: 4px 4px 0px 0px;
  height: 40px;
}

body .grey-border-box .nav-tabs {
  width: 100%;
}

body .grey-border-box .nav-tabs.tab-inline-nav .nav-link {
  margin: 0px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.02em;
  color: #75787E;
  max-height: 40px;
  width: unset;
  flex: unset;
}

body .grey-border-box.no-box-shadow {
  box-shadow: none;
}

body .grey-border-box.cerulean-border {
  border: 1px solid #08AEEA;
  border-radius: 5px;
}

body .grey-no-border-box {
  padding: 10px 10px;
  background: #F6F8FA;
  border: none;
  border-radius: 4px;
}

body .no-item-found {
  margin: 0px;
  width: 100%;
}

body .no-item-found .center-image {
  margin: 0px;
  width: 100%;
}

body .no-item-found .center-image i.item-not-found {
  background: url("../../images/web/not-found.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

body .no-item-found .center-image i.do-not-have-registry {
  background: url("../../images/web/do-not-have-registry.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

body .no-item-found .center-image i.no-data-found {
  background: url("../../images/web/no-data-found.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

body .no-item-found .no-item-txt {
  padding: 0px;
  width: 100%;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #75787E;
}

body .no-item-found .no-item-txt-top {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #08AFE8;
}

body .social-media-box {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body .social-media-box a,
body .social-media-box button {
  margin: 0px 0px;
  width: 100%;
  height: 100%;
  padding: 0px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  background: transparent;
}

body .social-media-box .icon-box i {
  color: #FFF;
}

body .social-media-box .text-box {
  height: 100%;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #FFFFFF;
  text-transform: capitalize;
}

body .social-media-box .large-btn {
  min-width: 235px;
  max-width: 235px;
  height: 48px;
  margin: 15px;
}

body .social-media-box .large-btn .icon-box {
  width: 48px;
  height: 100%;
}

body .social-media-box .large-btn .icon-box i {
  font-size: 21px;
}

body .social-media-box .large-btn .text-box {
  width: calc(100% - 48px);
  padding: 0px 10px;
  font-size: 15px;
}

body .social-media-box .medium-btn {
  min-width: 160px;
  max-width: 160px;
  height: 45px;
  margin: 15px;
}

body .social-media-box .medium-btn i {
  font-size: 18px;
  color: #FFFFFF;
}

body .social-media-box .medium-btn span {
  margin-left: 10px;
  font-size: 18px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
}

body .social-media-box .medium-btn .icon-box {
  width: 28px;
  height: 100%;
}

body .social-media-box .medium-btn .icon-box i {
  font-size: 16px;
}

body .social-media-box .medium-btn .text-box {
  width: calc(100% - 28px);
  padding: 0px 10px;
  font-size: 12px;
}

body .social-media-box .small-btn {
  min-width: 160px;
  max-width: 160px;
  height: 25px;
  margin: 15px;
}

body .social-media-box .small-btn .icon-box {
  width: 28px;
  height: 100%;
}

body .social-media-box .small-btn .icon-box i {
  font-size: 16px;
}

body .social-media-box .small-btn .text-box {
  width: calc(100% - 28px);
  padding: 0px 10px;
  font-size: 12px;
}

body .social-media-box .google-button-box {
  width: 100%;
}

body .social-media-box .google-button-box .icon-box {
  background: #C03D31;
  border-radius: 10px 0px 0px 10px;
}

body .social-media-box .google-button-box .text-box {
  background: #DA4B3E;
  border-radius: 0px 10px 10px 0px;
}

body .social-media-box .facebook-button-box {
  width: 100%;
}

body .social-media-box .facebook-button-box .icon-box {
  background: #2C529E;
  border-radius: 10px 0px 0px 10px;
}

body .social-media-box .facebook-button-box .text-box {
  background: #4468B0;
  border-radius: 0px 10px 10px 0px;
}

body .social-media-box .facebook-button-box.medium-btn {
  background: #3B5998;
  border-radius: 23px;
  margin: 15px 5px;
}

body .social-media-box .email-button-box {
  width: 100%;
}

body .social-media-box .email-button-box .icon-box {
  background: #C03D31;
  border-radius: 10px 0px 0px 10px;
}

body .social-media-box .email-button-box .text-box {
  background: #DA4B3E;
  border-radius: 0px 10px 10px 0px;
}

body .social-media-box .email-button-box.medium-btn {
  background: #D44638;
  border-radius: 23px;
  margin: 15px 5px;
}

body .social-media-share-box {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body .social-media-share-box .smedia-btn {
  width: 100%;
  height: 100%;
}

body .social-media-share-box p {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #494B4B;
}

body .social-media-share-box ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .social-media-share-box ul li {
  border-radius: 5px;
}

body .social-media-share-box ul li i {
  color: #FFF;
}

body .social-media-share-box ul li button {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
}

body .social-media-share-box ul li a {
  text-decoration: none;
}

body .social-media-share-box ul li a:hover {
  text-decoration: none;
}

body .social-media-share-box ul li.facebook-square {
  background: #3878E3;
}

body .social-media-share-box ul li.facebook-square i {
  color: #FFFFFF;
}

body .social-media-share-box ul li.whatsapp-square {
  background: #4BCA5A;
}

body .social-media-share-box ul li.whatsapp-square i {
  color: #FFFFFF;
}

body .social-media-share-box ul li.twitter-square {
  background: #55ACEE;
}

body .social-media-share-box ul li.twitter-square i {
  color: #FFFFFF;
}

body .social-media-share-box ul li.instagram-square {
  background: linear-gradient(224.61deg, #CB39A6 2.78%, #FF553F 48.36%, #FFD855 95.89%);
}

body .social-media-share-box ul li.instagram-square i {
  color: #FFFFFF;
}

body .social-media-share-box ul li.copy-square {
  background: #ffc107;
}

body .social-media-share-box ul li.copy-square i {
  color: #FFFFFF;
}

body .social-media-share-box ul li:last-child, body .social-media-share-box ul li:only-child {
  margin-right: 0px;
}

body .social-media-share-box.large-icon ul li:only-child, body .social-media-share-box.large-icon ul li:last-child {
  margin-right: 0px !important;
}

body .social-media-share-box.small-icon ul i {
  font-size: 34.2px;
}

body .social-media-share-box.small-icon ul li {
  width: 25px;
  height: 25px;
  margin-left: 7.5px !important;
  margin-right: 7.5px !important;
}

body .social-media-share-box.small-icon ul li:last-child {
  margin-right: 0px !important;
}

body .social-media-share-box.small-icon ul li.facebook-square i {
  font-size: 19px;
}

body .social-media-share-box.small-icon ul li.whatsapp-square i {
  font-size: 15px;
}

body .social-media-share-box.small-icon ul li.twitter-square i {
  font-size: 15px;
}

body .social-media-share-box.small-icon ul li.instagram-square i {
  font-size: 15px;
}

body .social-media-share-box.small-icon ul li.copy-square i {
  font-size: 15px;
}

body .donation-disclaimer-message {
  margin: 30px 0px 0px;
  padding: 0px 15px;
}

body .donation-disclaimer-message .disclaimer-top-text {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #494B4B;
  text-align: center;
}

body .donation-disclaimer-message .disclaimer-top-text a {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #08AEEA;
}

body .donation-disclaimer-message .disclaimer-bottom-text {
  background: #F6F8FA;
  border-radius: 5px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #494B4B;
}

body .app-download-btn {
  width: 100%;
}

body .app-download-btn p {
  margin: 0px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #494B4B;
  text-align: center;
}

body .app-download-btn .app-download-btn-box {
  padding: 0px;
  width: 100%;
}

body .apple-app-button {
  background: linear-gradient(90deg, #7C95FC 23.64%, #08AEEA 114.55%);
  border-radius: 5px;
  cursor: pointer;
}

body .apple-app-button .app-icon i {
  color: #FFF;
}

body .apple-app-button .app-btn-txt {
  margin-left: 11px;
}

body .apple-app-button .app-btn-txt .btn-top-txt {
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

body .apple-app-button .app-btn-txt .btn-bottom-txt {
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}

body .google-app-button {
  margin: 0px 25px;
  padding: 10px 23px;
  min-width: 165px;
  background: linear-gradient(90deg, #08AEEA -9.7%, #2AF598 107.88%);
  border-radius: 5px;
  cursor: pointer;
}

body .google-app-button .app-icon i {
  color: #FFF;
}

body .google-app-button .app-btn-txt {
  margin-left: 11px;
}

body .google-app-button .app-btn-txt .btn-top-txt {
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

body .google-app-button .app-btn-txt .btn-bottom-txt {
  font-family: 'Lato';
  font-style: normal;
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  color: #FFFFFF;
}

body .content-area {
  margin: 0px;
  width: 100%;
  height: 100%;
}

body .content-holder {
  margin: 0px;
  padding: 0px 80px;
  width: 100%;
  height: 100%;
}

body .show-more-listing {
  margin: 25px 0px 0px;
  padding: 0px;
  float: left;
  width: 100%;
  text-align: center;
}

body .accordion .card {
  background: #FFFFFF;
  border: 0.5px solid #07AEE9;
  border-bottom: 0.5px solid #07AEE9 !important;
}

body .accordion .card.no-border {
  border: none;
  border-bottom: none !important;
}

body .accordion .card-header {
  padding: 10px;
  background: rgba(220, 244, 252, 0.1);
  border-bottom: none;
  min-height: 56px;
}

body .accordion .card-header h5 {
  width: 100%;
}

body .accordion .card-header button {
  padding: 0px;
  width: 100%;
  text-decoration: none;
  text-align: unset;
}

body .accordion .card-header button:hover {
  text-decoration: none;
}

body .accordion .card-header .card-type {
  color: #000;
  font-size: 30px;
  margin-right: 12.41px;
}

body .accordion .card-header .card-end {
  margin-left: 15px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #3D4A4F;
}

body .accordion .card-header .card-expires {
  margin-left: auto;
  margin-right: 19px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #3D4A4F;
}

body .accordion .card-header .arrow {
  color: #3D4A4F;
  font-size: 12px;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}

body .accordion .card-header.active-acc {
  border-bottom: 0.5px solid #07AEE9;
  border-radius: 5px;
}

body .accordion .card-header.active-acc .arrow {
  transform: rotate(-180deg);
  transition: all 0.3s ease-in-out;
}

body .accordion .card-body {
  padding: 15px;
}

body .accordion .card-body .card-detail {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

body .accordion .card-body .card-detail ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .accordion .card-body .card-detail ul li {
  width: 33.33%;
}

body .accordion .card-body .card-detail ul .card-detail-label {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #3D4A4F;
}

body .accordion .card-body .card-detail ul .card-info {
  margin-top: 10px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #3D4A4F;
}

body .accordion .card-body .card-detail ul .card-info.verified-record i {
  font-size: 19px;
  color: #47E6B1;
}

body .accordion .card-body .card-action-btn {
  margin: 25px 0px 0px;
  padding: 0px;
  width: 100%;
}

body .accordion .card-body .card-action-btn ul {
  margin: 0px;
  padding: 0px;
  width: 100%;
  list-style-type: none;
}

body .accordion .card-body .card-action-btn ul li {
  margin-right: 10px;
}

body .accordion .card-body .card-action-btn ul li a {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #07AEE9;
}

body .accordion .card-body .card-action-btn ul li .border-btn {
  padding: 0px 10px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 26px;
  text-align: center;
  width: 75px;
  height: 28px;
  color: #07AEE9;
  background: #FFFFFF;
  border: 0.5px solid #07AEE9;
  border-radius: 6px;
  text-decoration: none;
  display: block;
}

body .accordion .card-body .card-action-btn ul li .border-btn:hover {
  border: 0.5px solid #07AEE9;
  background: #07AEE9;
  color: #FFFFFF;
}

body .accordion .card-body .card-action-btn ul li button {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 26px;
  text-align: center;
  width: 75px;
  height: 28px;
  color: #07AEE9;
  background: #FFFFFF;
  border: 0.5px solid #07AEE9;
  border-radius: 6px;
}

body .accordion .card-body .card-action-btn ul li button:hover {
  border: 0.5px solid #07AEE9;
  background: #07AEE9;
  color: #FFFFFF;
}

body .accordion .card-body .card-action-btn ul li .no-border-btn {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #07AEE9;
  border: none;
  border-radius: 0px;
  width: auto;
}

body .accordion .card-body .card-action-btn ul li:last-child {
  margin-right: 0px;
}

body .accordion .media {
  width: 100%;
}

body .modal-backdrop {
  background: rgba(5, 30, 38, 0);
}

body .modal-backdrop.show {
  background: rgba(5, 30, 38, 0.55);
}

body .modal .modal-dialog {
  max-width: 600px;
}

body .modal .modal-content {
  background: #FFFFFF;
  border: 2px solid #08AEEA;
  border-radius: 15px;
}

body .modal .modal-header {
  padding: 13px;
  border: none;
}

body .modal .modal-header .modal-title {
  margin: 15px 0px 0px;
  padding: 10px 15px;
  width: 100%;
  background: #F5F7F9;
  border-radius: 10px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #272931;
}

body .modal .modal-header .close {
  margin: 0px;
  padding: 0px;
  width: 33px;
  height: 33px;
  border: 1px solid #08AEEA;
  border-radius: 6px;
  text-align: center;
}

body .modal .modal-header .close span {
  color: #08AEEA;
  font-size: 22px;
  width: 100%;
  height: 100%;
}

body .modal .modal-body {
  padding: 32px 15px 0px;
}

body .modal .modal-body .form-inner {
  margin: 0px;
  padding: 0px 30px;
  width: 100%;
}

body .modal .modal-footer {
  padding: 0px 15px 32px;
  border: none;
}

body .modal.new-honoree .modal-body {
  padding: 32px 15px 22px;
}

body .modal.new-honoree .modal-body .form-inner {
  padding: 0px 69px;
}

body .modal.change-card .modal-body {
  padding: 32px 15px 45px;
}

body .modal.change-card .modal-body .form-inner {
  padding: 0px 40px;
}

body .modal.add-honoree .modal-body {
  padding: 32px 15px 22px;
}

body .modal.add-honoree .modal-body .form-inner {
  padding: 0px 40px;
}

body .modal.chart-box-modal .modal-body {
  padding: 32px 15px 22px;
}

body .modal.chart-box-modal .modal-body .left-box {
  padding: 0px;
}

body .modal.chart-box-modal .modal-body .left-box ul {
  margin: 0px;
  padding: 0px;
}

body .modal.chart-box-modal .modal-body .left-box ul li {
  margin: 0px 12.5px;
  padding: 0px;
}

body .modal.chart-box-modal .modal-body .left-box ul li:first-child {
  margin-left: 0px;
}

body .modal.chart-box-modal .modal-body .left-box ul li:last-child {
  margin-right: 0px;
}

body .modal.chart-box-modal .modal-body .left-box ul .label {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 31px;
  /* identical to box height */
  color: #7E818B;
}

body .modal.chart-box-modal .modal-body .left-box ul .amount {
  margin-left: 10px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  /* identical to box height */
  color: #000000;
}

body .modal.chart-box-modal .modal-body .right-box {
  padding: 0px;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box {
  padding: 0px;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box .nav.nav-tabs {
  width: 100%;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box .nav-item {
  flex: auto;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box .nav-item.nav-link {
  margin-right: 0px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  /* identical to box height */
  color: #08AEEA;
  line-height: 32px;
  padding: 0px 10px !important;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box .nav-item.nav-link::after {
  display: none;
  visibility: hidden;
}

body .modal.chart-box-modal .modal-body .parent-tab-btn-box .nav-item.active {
  background: #08AEEA;
  color: #FFFFFF;
  border-radius: 5px;
}

body .modal.chart-box-modal .modal-body .amount-type ul li {
  margin: 0px 0px 20px;
  font-family: Lato;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height, or 122% */
}

body .modal.chart-box-modal .modal-body .amount-type ul li:last-child {
  margin: 0px;
}

body .modal.chart-box-modal .modal-body .amount-type ul li label {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height, or 122% */
  cursor: pointer;
}

body .modal.chart-box-modal .modal-body .amount-type ul li.froly-color label {
  color: #ED6A89;
}

body .modal.chart-box-modal .modal-body .amount-type ul li.atlantis-color label {
  color: #9CD23C;
}

body .modal.chart-box-modal .modal-body .amount-type ul li.link-water label {
  color: #08AEEA;
}

body .modal.action-modal .modal-body .action-message {
  padding: 20px 20px 50px;
}

body .modal.action-modal .modal-body .action-message p {
  margin: 0px;
  padding: 0px;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}

body .modal.action-modal .modal-footer button {
  margin: 0px 15px;
}

body .modal.action-modal .modal-footer button:only-child {
  margin: 0px;
}

body .modal.offline-donation .modal-body .form-inner p {
  margin-bottom: 45px;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #666666;
  text-align: center;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box input {
  width: calc(100% - 95px);
  border-radius: 5px 0px 0px 5px !important;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn {
  width: 95px;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border {
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 0px 5px 5px 0px !important;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border::before {
  content: '';
  background: rgba(8, 174, 234, 0.96) !important;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border option {
  background: transparent !important;
  color: #3D4A4F !important;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border > span {
  line-height: 38px;
  border: none;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border .cs-options {
  border: 1px solid #07AEE9;
  border-radius: 0px 0px 5px 5px;
}

body .modal.offline-donation .modal-body .form-inner .input-filter-box .filter-btn .cs-skin-border .cs-options ul span {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #3D4A4F;
}

body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li {
  margin-bottom: 10px;
  padding: 0px 0px 10px;
  border-bottom: none;
}

body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:last-child:after, body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:only-child:after {
  display: none;
  visibility: hidden;
  height: 0px;
}

body .modal.readmore-modal .modal-header {
  padding: 15px;
  padding-bottom: 0px;
}

body .modal.readmore-modal .modal-body {
  padding: 0px 30px;
}

body .modal.readmore-modal .modal-body .user-info {
  position: relative;
  margin-top: 0px;
  padding-top: 0px;
}

body .modal.readmore-modal .modal-footer {
  padding: 15px;
}

body .modal.media-gallery .modal-header {
  padding: 15px;
  padding-bottom: 0px;
}

body .modal.media-gallery .modal-body {
  padding: 30px;
}

body .modal.testimonials-gallery .modal-header {
  padding: 15px;
  padding-bottom: 0px;
}

body .modal.testimonials-gallery .modal-body {
  padding: 30px;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .img-box {
  margin: 0px;
  padding: 0px;
  border-radius: 100%;
  overflow: hidden;
  background: #A6E2F7;
  width: 50px;
  height: 50px;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .img-box i {
  font-size: 23px;
  color: #FFF;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .text-box .blockquote {
  margin: 0px;
  padding: 0px;
  font-style: italic;
  font-weight: normal;
  font-size: 15px;
  line-height: 19px;
  color: #494B4B;
  position: relative;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .text-box .blockquote p {
  position: relative;
  margin: 2px 0px 0px;
  padding: 15px 10px;
  font-style: italic;
  font-weight: normal;
  font-size: 11px;
  line-height: 13px;
  display: flex;
  align-items: center;
  color: #494B4B;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .text-box .blockquote p::before {
  content: open-quote;
  position: absolute;
  top: 0px;
  left: 0px;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #657176;
}

body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box .text-box .blockquote p::after {
  content: close-quote;
  position: absolute;
  bottom: 0px;
  right: 3px;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #657176;
}

body .modal.share-modal .modal-dialog {
  max-width: 565px;
}

body .modal.share-modal .modal-header {
  padding: 15px;
  padding-bottom: 0px;
}

body .modal.share-modal .modal-header .heading-text .heading {
  margin: 0px;
  padding: 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  align-items: center;
  text-align: center;
  color: #333333;
}

body .modal.share-modal .modal-header .heading-text p {
  margin: 0px;
  padding: 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  text-align: center;
  color: #7E818B;
}

body .modal.share-modal .modal-body {
  padding: 15px;
}

body .modal.share-modal .modal-body .data-box .link-field-box .input-group {
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 5px;
}

body .modal.share-modal .modal-body .data-box .link-field-box input {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  display: flex;
  align-items: center;
  height: 25px;
  color: #666666;
  border: none;
  border-radius: 0px;
  background: transparent;
}

body .modal.share-modal .modal-body .data-box .link-field-box .input-group-append .input-group-text {
  border: none;
  border-radius: 0px;
  background-color: transparent;
}

body .modal.share-modal .modal-body .data-box .link-field-box .input-group-append a {
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 13px;
  align-items: center;
  color: #08AEEA;
}

body .modal.share-modal .modal-body .data-box .social-media-share-box {
  margin: 15px 0px 0px;
}

body .icon-visa-card {
  background: url("../../images/web/visa-card.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

body .icon-visa-card.small-icon {
  width: 40px;
  height: 12.52px;
}

body .icon-visa-card.medium-icon {
  width: 41.59px;
  height: 13.61px;
}

body .icon-master-card {
  background: url("../../images/web/master-card.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

body .icon-master-card.small-icon {
  width: 40px;
  height: 32.93px;
}

body .loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #FFF;
  background-color: rgba(229, 229, 229, 0.9);
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
  pointer-events: none;
}

body .loader .loader-logo {
  -webkit-animation: loadinganimation 1.2s linear infinite;
          animation: loadinganimation 1.2s linear infinite;
}

body .loader > div {
  align-self: center;
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

body .loader-animation {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

body .loader-animation div {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: loadinganimation 1.2s linear infinite;
          animation: loadinganimation 1.2s linear infinite;
}

body .loader-animation div:nth-child(1) {
  top: 6px;
  left: 6px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

body .loader-animation div:nth-child(2) {
  top: 6px;
  left: 26px;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

body .loader-animation div:nth-child(3) {
  top: 6px;
  left: 45px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

body .loader-animation div:nth-child(4) {
  top: 26px;
  left: 6px;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

body .loader-animation div:nth-child(5) {
  top: 26px;
  left: 26px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

body .loader-animation div:nth-child(6) {
  top: 26px;
  left: 45px;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}

body .loader-animation div:nth-child(7) {
  top: 45px;
  left: 6px;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

body .loader-animation div:nth-child(8) {
  top: 45px;
  left: 26px;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}

body .loader-animation div:nth-child(9) {
  top: 45px;
  left: 45px;
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
}

body .carousel .carousel-indicators-outer {
  margin: 30px 0px 0px;
  padding: 0px;
  height: 25px;
  position: relative;
}

body .carousel .carousel-indicators-outer .carousel-indicators {
  bottom: unset;
  top: 0px;
  position: inherit !important;
}

body .carousel .carousel-indicators-outer ul {
  margin: 0px !important;
  padding: 7.5px 10px !important;
  list-style-type: none !important;
  height: 25px !important;
  background: #08AEEA !important;
  border-radius: 10px;
  width: auto !important;
}

body .carousel .carousel-indicators-outer ul li {
  margin: 0px !important;
  margin-right: 15px !important;
  padding: 0px !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body .carousel .carousel-indicators-outer ul li:after {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(244, 255, 254, 0.49) !important;
  display: block;
  border-radius: 10px !important;
}

body .carousel .carousel-indicators-outer ul li.active:after {
  width: 10px;
  height: 10px;
  background: #F4FFFE !important;
  transition: all 0.3s ease;
}

body .carousel .carousel-indicators-outer ul li:only-child, body .carousel .carousel-indicators-outer ul li:last-child {
  margin-right: 0px !important;
}

body .carousel .carousel-inner {
  height: 180px;
}

body .nav-icon-one {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
}

body .nav-icon-two {
  /*
        width: 60px;
        height: 45px;
        margin: 50px auto;
        */
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
}

body .nav-icon-three {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
}

body .nav-icon-four {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
}

body .nav-icon-one,
body .nav-icon-two,
body .nav-icon-three,
body .nav-icon-four {
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

body .nav-icon-one span,
body .nav-icon-three span,
body .nav-icon-four span {
  display: block;
  position: absolute;
  height: 3px;
  background: #08AEEA;
  border-radius: 9px;
  opacity: 1;
  left: 0px;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

body .nav-icon-one span:nth-child(1) {
  top: 0px;
  width: 100%;
}

body .nav-icon-one span:nth-child(2) {
  top: 11px;
  width: 80%;
}

body .nav-icon-one span:nth-child(3) {
  top: 22px;
  width: 60%;
}

body .nav-icon-one.open span:nth-child(1) {
  top: 10px;
  left: -4px;
  width: 31px;
  transform: rotate(135deg);
}

body .nav-icon-one.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

body .nav-icon-one.open span:nth-child(3) {
  top: 10px;
  left: -4px;
  width: 31px;
  transform: rotate(-135deg);
}

body .nav-icon-two span {
  display: block;
  position: absolute;
  height: 3px;
  background: #08AEEA;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

body .nav-icon-two span:nth-child(even) {
  left: 50%;
  border-radius: 0px 9px 9px 0px;
}

body .nav-icon-two span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

body .nav-icon-two span:nth-child(1), body .nav-icon-two span:nth-child(2) {
  top: 0px;
  width: 50%;
}

body .nav-icon-two span:nth-child(3), body .nav-icon-two span:nth-child(4) {
  top: 11px;
  width: 40%;
}

body .nav-icon-two span:nth-child(3) {
  left: 0%;
}

body .nav-icon-two span:nth-child(4) {
  left: 40%;
}

body .nav-icon-two span:nth-child(5), body .nav-icon-two span:nth-child(6) {
  top: 22px;
  width: 30%;
}

body .nav-icon-two span:nth-child(5) {
  left: 0%;
}

body .nav-icon-two span:nth-child(6) {
  left: 30%;
}

body .nav-icon-two.open span:nth-child(1), body .nav-icon-two.open span:nth-child(6) {
  transform: rotate(45deg);
}

body .nav-icon-two.open span:nth-child(2), body .nav-icon-two.open span:nth-child(5) {
  transform: rotate(-45deg);
}

body .nav-icon-two.open span:nth-child(1) {
  left: -2px;
  top: 4px;
  width: 15.5px;
}

body .nav-icon-two.open span:nth-child(2) {
  left: calc(50% - 2.5px);
  top: 4px;
  width: 15.5px;
}

body .nav-icon-two.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

body .nav-icon-two.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

body .nav-icon-two.open span:nth-child(5) {
  left: -2.5px;
  top: 14.5px;
  width: 15.5px;
}

body .nav-icon-two.open span:nth-child(6) {
  left: calc(50% - 2.5px);
  top: 14.5px;
  width: 15.5px;
}

body .nav-icon-three span:nth-child(1) {
  /*
                top: 4px;
                width: 100%;
                */
}

body .nav-icon-three span:nth-child(2), body .nav-icon-three span:nth-child(3) {
  /*
                top: 11px;
                width: 80%;
                */
}

body .nav-icon-three span:nth-child(4) {
  /*
                top: 18px;
                width: 60%;
                */
}

body .nav-icon-three.open span:nth-child(1) {
  /*
                    top: 10px;
                    width: 0%;
                    left: 50%;
                    */
}

body .nav-icon-three.open span:nth-child(2) {
  /*
                    -webkit-transform: rotate(45deg);
                    -moz-transform: rotate(45deg);
                    -o-transform: rotate(45deg);
                    transform: rotate(45deg);
                    */
}

body .nav-icon-three.open span:nth-child(3) {
  /*
                    -webkit-transform: rotate(-45deg);
                    -moz-transform: rotate(-45deg);
                    -o-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                    */
}

body .nav-icon-three.open span:nth-child(4) {
  /*
                    top: 18px;
                    width: 0%;
                    left: 50%;
                    */
}

body .nav-icon-three.open span:nth-child(2), body .nav-icon-three.open span:nth-child(3) {
  /*
                    top: 10px;
                    width: 31px;
                    left: -4px;
                    */
}

body .nav-icon-four span:nth-child(1) {
  width: 100%;
  top: 0px;
  transform-origin: left center;
}

body .nav-icon-four span:nth-child(2) {
  width: 80%;
  top: 11px;
  transform-origin: left center;
}

body .nav-icon-four span:nth-child(3) {
  width: 60%;
  top: 22px;
  transform-origin: left center;
}

body .nav-icon-four.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 0px;
  width: 31px;
}

body .nav-icon-four.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

body .nav-icon-four.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
  left: 1px;
  width: 31px;
}

@media (max-width: 767.98px) {
  body {
    /* Icon 3 */
    /**/
  }
  body .two-column-page {
    height: 100%;
  }
  body .two-column-page .left-navigation-box {
    /**/
    /**/
  }
  body .two-column-page .left-navigation-box .left-nav-logo {
    padding: 0px 10px;
    height: 69px;
  }
  body .two-column-page .left-navigation-box .ln-header-logo {
    width: 100%;
    max-width: 225px;
    height: 100%;
    max-height: 35px;
  }
  body .two-column-page .left-navigation-box .left-nav-logo-lg {
    opacity: 1;
    display: block;
  }
  body .two-column-page .left-navigation-box .left-nav-logo-sm {
    opacity: 0;
    display: none;
  }
  body .two-column-page .left-navigation-box .mb-menu-btn {
    margin-left: 5px !important;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(1) {
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(2), body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(3) {
    top: 11px;
    width: 80%;
    transform: rotate(0deg);
    left: 0px;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 60%;
    left: 0px;
  }
  body .two-column-page .left-navigation-box .left-navigation {
    height: calc(100% - 40px);
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a {
    width: 85%;
    height: 48px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a i {
    font-size: 19px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav .parent-link::after {
    right: 10px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link::after {
    font-size: 13px;
    right: 10px;
  }
  body .two-column-page .page-outer-box {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  body .nav-icon-three.open span:nth-child(1) {
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .nav-icon-three.open span:nth-child(2), body .nav-icon-three.open span:nth-child(3) {
    top: 11px;
    width: 80%;
    transform: rotate(0deg);
    left: 0px;
  }
  body .nav-icon-three.open span:nth-child(4) {
    top: 18px;
    width: 60%;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(1) {
    /* Cross icon css when open */
    /*
                    top: 10px;
                    width: 0%;
                    left: 50%;
                    */
    /* above Cross icon css when open */
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(2) {
    /* Cross icon css when open */
    /*
                    -webkit-transform: rotate(45deg);
                    -moz-transform: rotate(45deg);
                    -o-transform: rotate(45deg);
                    transform: rotate(45deg);
                    */
    /* above Cross icon css when open */
  }
  body .nav-icon-three span:nth-child(3) {
    /* Cross icon css when open */
    /*
                    -webkit-transform: rotate(-45deg);
                    -moz-transform: rotate(-45deg);
                    -o-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                    */
    /* above Cross icon css when open */
  }
  body .nav-icon-three span:nth-child(4) {
    /* Cross icon css when open */
    /*
                    top: 18px;
                    width: 0%;
                    left: 50%;
                    */
    /* above Cross icon css when open */
    top: 18px;
    width: 60%;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(2), body .nav-icon-three span:nth-child(3) {
    /* Cross icon css when open */
    /*
                    top: 10px;
                    width: 31px;
                    // left: -4px;
                    */
    /* above Cross icon css when open */
    top: 11px;
    width: 80%;
    left: 0px;
  }
  body header {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 1020;
  }
  body .nav-tabs.tab-inline-nav .nav-link {
    font-size: 16px;
    line-height: 45px;
    max-height: 45px;
    margin-right: 15px;
    padding: 0px 10px 0px !important;
  }
  body .nav-tabs.tab-inline-nav .nav-link:last-child {
    margin-right: 0px;
  }
  body .btn {
    border-radius: 6px !important;
  }
  body .btn.full-width {
    box-shadow: none;
  }
  body .btn.full-width-w-shadow {
    padding: 0px 15px;
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  }
  body .btn.large-btn {
    padding: 0px 47px;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
  }
  body form .form-control,
  body .form .form-control {
    width: 100%;
    height: 40px;
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-webkit-input-placeholder,
  body .form .form-control::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-moz-placeholder,
  body .form .form-control:-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-moz-placeholder,
  body .form .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-ms-input-placeholder,
  body .form .form-control:-ms-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box,
  body .form .custom-control.custom-radio.type-btn.small-chk-box {
    line-height: 30px;
    height: 30px;
    min-height: 30px;
    padding-left: 0px;
    min-width: 50px;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label {
    font-size: 15px;
    line-height: 30px;
    padding: 0px 15px;
    display: block;
    width: 100%;
    text-align: center;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::before,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::before {
    width: 0px;
    height: 0px;
    left: 0px;
    display: none;
    visibility: hidden;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::after {
    display: none;
    visibility: hidden;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input {
    width: 100%;
    height: 100%;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label {
    background: rgba(8, 174, 234, 0.5);
    border-radius: 5px;
    color: #FFFFFF;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label::after {
    top: 0px;
    left: 0px !important;
    width: 0px !important;
    height: 0px !important;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box,
  body .form .custom-control.custom-radio.type-btn.large-chk-box {
    line-height: 17px;
    min-height: 17px;
    padding-left: 25px;
    width: 100%;
    max-width: 435px;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label {
    font-size: 15px;
    line-height: 17px;
    width: 100%;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label::before,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label::before {
    width: 17px;
    height: 17px;
    left: -25px;
    top: calc(50% - 8.5px);
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input {
    width: 21px;
    height: 21px;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input:checked ~ .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input:checked ~ .custom-control-label::after {
    top: calc(50% - 4.5px);
    left: -21px !important;
    width: 9px !important;
    height: 9px !important;
  }
  body .page-heading h1 {
    font-size: 22px;
    line-height: 26px;
  }
  body .page-nested-heading h2 {
    font-size: 22px;
    line-height: 26px;
  }
  body .more-opt-txt {
    font-size: 22px;
    line-height: 26px;
  }
  body .no-item-found {
    padding: 0px;
  }
  body .no-item-found .center-image {
    padding: 10px 0px;
  }
  body .no-item-found .center-image i.item-not-found {
    width: 210px;
    height: 155px;
  }
  body .no-item-found .center-image i.item-not-found.large-img {
    width: 100%;
    max-width: 510px;
    height: 375px;
  }
  body .no-item-found .center-image i.do-not-have-registry {
    width: 100%;
    max-width: 385px;
    height: 301px;
  }
  body .no-item-found .center-image i.no-data-found {
    width: 100%;
    max-width: 385px;
    height: 301px;
  }
  body .no-item-found .no-item-txt {
    margin: 30px 0px 0px;
    font-size: 18px;
    line-height: 21px;
  }
  body .no-item-found .no-item-txt-top {
    margin: 45px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .social-media-box {
    margin: 0px;
    padding: 0px;
    width: 100%;
  }
  body .social-media-box .text-box {
    display: none !important;
    visibility: hidden;
  }
  body .social-media-box .small-btn {
    margin: 0px 15px;
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    height: 35px;
  }
  body .social-media-box .small-btn .icon-box {
    width: 100%;
    height: 100%;
    border-radius: 6px;
  }
  body .social-media-box .small-btn .icon-box i {
    font-size: 18px;
  }
  body .social-media-share-box p {
    margin: 25px 0px;
    font-size: 15px;
    line-height: 24px;
  }
  body .social-media-share-box.large-icon ul i {
    font-size: 30.2px;
  }
  body .social-media-share-box.large-icon ul li {
    width: 30px;
    height: 30px;
    margin-right: 25px !important;
  }
  body .social-media-share-box.large-icon ul li:last-child, body .social-media-share-box.large-icon ul li:only-child {
    margin-right: 0px !important;
  }
  body .social-media-share-box.large-icon ul li.facebook-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.whatsapp-square i {
    font-size: 18px;
  }
  body .social-media-share-box.large-icon ul li.twitter-square i {
    font-size: 18px;
  }
  body .social-media-share-box.large-icon ul li.instagram-square i {
    font-size: 18px;
  }
  body .social-media-share-box.large-icon ul li.copy-square i {
    font-size: 18px;
  }
  body .donation-disclaimer-message .disclaimer-top-text {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-top-text a {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-bottom-text {
    margin: 30px 0px 0px;
    padding: 5px 15px 2px;
    font-size: 14px;
    line-height: 19px;
  }
  body .app-download-btn {
    padding: 0px 15px;
  }
  body .app-download-btn p {
    font-size: 16px;
    line-height: 24px;
  }
  body .app-download-btn .app-download-btn-box {
    margin: 15px 0px 0px;
  }
  body .app-download-btn.large-space-both-side {
    margin: 25px 0px;
  }
  body .app-download-btn.small-space-both-side {
    margin: 30px 0px;
  }
  body .apple-app-button {
    margin: 15px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .apple-app-button .app-icon i {
    font-size: 26px;
  }
  body .apple-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .google-app-button {
    margin: 15px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .google-app-button .app-icon i {
    font-size: 26px;
  }
  body .google-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .google-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .google-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .accordion .card {
    margin-bottom: 15px;
    border-radius: 5px !important;
    min-height: 56px;
  }
  body .accordion .card:last-child {
    margin-bottom: 0px;
  }
  body .modal.offline-donation .modal-body {
    padding: 12px 15px 22px;
  }
  body .modal.offline-donation .modal-body .form-inner {
    padding: 0px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:after {
    content: '';
    background: #DAF3FC;
    height: 0.5px;
    width: calc(100% - 14px);
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 1px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options {
    margin-top: 15px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options .form-group {
    margin: 0px;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    /* Icon 3 */
    /**/
  }
  body .two-column-page {
    height: 100%;
  }
  body .two-column-page .left-navigation-box {
    /**/
    /**/
  }
  body .two-column-page .left-navigation-box .left-nav-logo {
    padding: 0px 10px;
    height: 69px;
  }
  body .two-column-page .left-navigation-box .ln-header-logo {
    width: 100%;
    max-width: 225px;
    height: 100%;
    max-height: 35px;
  }
  body .two-column-page .left-navigation-box .left-nav-logo-lg {
    opacity: 1;
    display: block;
  }
  body .two-column-page .left-navigation-box .left-nav-logo-sm {
    opacity: 0;
    display: none;
  }
  body .two-column-page .left-navigation-box .mb-menu-btn {
    margin-left: 10px;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(1) {
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(2), body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(3) {
    top: 11px;
    width: 80%;
    transform: rotate(0deg);
    left: 0px;
  }
  body .two-column-page .left-navigation-box.cbp-spmenu.cbp-spmenu-open .mb-menu-btn .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 60%;
    left: 0px;
  }
  body .two-column-page .left-navigation-box .left-navigation {
    height: calc(100% - 70px);
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a {
    width: 260px;
    height: 48px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a i {
    font-size: 19px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav .parent-link::after {
    right: 10px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link::after {
    font-size: 13px;
    right: 10px;
  }
  body .two-column-page .page-outer-box {
    padding-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
  body .nav-icon-three.open span:nth-child(1) {
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .nav-icon-three.open span:nth-child(2), body .nav-icon-three.open span:nth-child(3) {
    top: 11px;
    width: 80%;
    transform: rotate(0deg);
    left: 0px;
  }
  body .nav-icon-three.open span:nth-child(4) {
    top: 18px;
    width: 60%;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(1) {
    /* Cross icon css when open */
    /*
                    top: 10px;
                    width: 0%;
                    left: 50%;
                    */
    /* above Cross icon css when open */
    top: 4px;
    width: 100%;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(2) {
    /* Cross icon css when open */
    /*
                    -webkit-transform: rotate(45deg);
                    -moz-transform: rotate(45deg);
                    -o-transform: rotate(45deg);
                    transform: rotate(45deg);
                    */
    /* above Cross icon css when open */
  }
  body .nav-icon-three span:nth-child(3) {
    /* Cross icon css when open */
    /*
                    -webkit-transform: rotate(-45deg);
                    -moz-transform: rotate(-45deg);
                    -o-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                    */
    /* above Cross icon css when open */
    top: 10px;
    width: 31px;
    left: 0px;
  }
  body .nav-icon-three span:nth-child(4) {
    /* Cross icon css when open */
    /*
                    top: 18px;
                    width: 0%;
                    left: 50%;
                    */
    /* above Cross icon css when open */
    top: 18px;
    width: 60%;
  }
  body .nav-icon-three span:nth-child(2), body .nav-icon-three span:nth-child(3) {
    /* Cross icon css when open */
    /*
                    top: 10px;
                    width: 31px;
                    left: -4px;
                    */
    /* above Cross icon css when open */
    top: 11px;
    width: 80%;
    left: 0px;
  }
  body .nav-tabs.tab-inline-nav .nav-link {
    font-size: 18px;
    line-height: 62px;
    max-height: 62px;
    padding: 0px 10px 0px !important;
  }
  body .btn {
    border-radius: 6px !important;
  }
  body .btn.full-width {
    box-shadow: none;
  }
  body .btn.full-width-w-shadow {
    padding: 0px 15px;
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  }
  body .btn.large-btn {
    padding: 0px 47px;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
  }
  body form .form-control,
  body .form .form-control {
    width: 100%;
    height: 40px;
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-webkit-input-placeholder,
  body .form .form-control::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-moz-placeholder,
  body .form .form-control:-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-moz-placeholder,
  body .form .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-ms-input-placeholder,
  body .form .form-control:-ms-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box,
  body .form .custom-control.custom-radio.type-btn.small-chk-box {
    line-height: 30px;
    height: 30px;
    min-height: 30px;
    padding-left: 0px;
    min-width: 50px;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label {
    font-size: 15px;
    line-height: 30px;
    padding: 0px 5px;
    display: block;
    width: 100%;
    text-align: center;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::before,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::before {
    width: 0px;
    height: 0px;
    left: 0px;
    display: none;
    visibility: hidden;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-label::after {
    display: none;
    visibility: hidden;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input {
    width: 100%;
    height: 100%;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label {
    background: rgba(8, 174, 234, 0.5);
    border-radius: 5px;
    color: #FFFFFF;
  }
  body form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.small-chk-box .custom-control-input:checked ~ .custom-control-label::after {
    top: 0px;
    left: 0px !important;
    width: 0px !important;
    height: 0px !important;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box,
  body .form .custom-control.custom-radio.type-btn.large-chk-box {
    line-height: 17px;
    min-height: 17px;
    padding-left: 25px;
    width: 100%;
    max-width: 435px;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label {
    font-size: 15px;
    line-height: 17px;
    width: 100%;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label::before,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-label::before {
    width: 17px;
    height: 17px;
    left: -25px;
    top: calc(50% - 8.5px);
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input {
    width: 21px;
    height: 21px;
  }
  body form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input:checked ~ .custom-control-label::after,
  body .form .custom-control.custom-radio.type-btn.large-chk-box .custom-control-input:checked ~ .custom-control-label::after {
    top: calc(50% - 4.5px);
    left: -21px !important;
    width: 9px !important;
    height: 9px !important;
  }
  body .page-heading h1 {
    font-size: 28px;
    line-height: 33px;
  }
  body .page-nested-heading h2 {
    font-size: 22px;
    line-height: 26px;
  }
  body .more-opt-txt {
    font-size: 22px;
    line-height: 26px;
  }
  body .no-item-found {
    padding: 0px;
  }
  body .no-item-found .center-image {
    padding: 10px 0px;
  }
  body .no-item-found .center-image i.item-not-found {
    width: 210px;
    height: 155px;
  }
  body .no-item-found .center-image i.item-not-found.large-img {
    width: 100%;
    max-width: 510px;
    height: 375px;
  }
  body .no-item-found .center-image i.do-not-have-registry {
    width: 100%;
    max-width: 385px;
    height: 301px;
  }
  body .no-item-found .center-image i.no-data-found {
    width: 100%;
    max-width: 524px;
    height: 275px;
  }
  body .no-item-found .no-item-txt {
    margin: 30px 0px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .no-item-found .no-item-txt-top {
    margin: 45px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .social-media-box {
    margin: 0px;
    padding: 0px;
    width: 100%;
  }
  body .social-media-box a,
  body .social-media-box button {
    margin: 0px 15px 15px;
  }
  body .social-media-share-box p {
    margin: 25px 0px;
    font-size: 15px;
    line-height: 24px;
  }
  body .social-media-share-box.large-icon ul i {
    font-size: 34.2px;
  }
  body .social-media-share-box.large-icon ul li {
    width: 35px;
    height: 35px;
    margin-right: 25px !important;
  }
  body .social-media-share-box.large-icon ul li:last-child, body .social-media-share-box.large-icon ul li:only-child {
    margin-right: 0px !important;
  }
  body .social-media-share-box.large-icon ul li.facebook-square i {
    font-size: 28px;
  }
  body .social-media-share-box.large-icon ul li.whatsapp-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.twitter-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.instagram-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.copy-square i {
    font-size: 23px;
  }
  body .donation-disclaimer-message {
    padding: 0px 40px;
  }
  body .donation-disclaimer-message .disclaimer-top-text {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-top-text a {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-bottom-text {
    margin: 30px 0px 0px;
    padding: 5px 15px 2px;
    font-size: 14px;
    line-height: 24px;
  }
  body .app-download-btn {
    padding: 0px 15px;
  }
  body .app-download-btn p {
    font-size: 16px;
    line-height: 24px;
  }
  body .app-download-btn .app-download-btn-box {
    margin: 30px 0px 0px;
  }
  body .app-download-btn.large-space-both-side {
    margin: 25px 0px;
  }
  body .app-download-btn.small-space-both-side {
    margin: 30px 0px;
  }
  body .apple-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .apple-app-button .app-icon i {
    font-size: 26px;
  }
  body .apple-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .google-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .google-app-button .app-icon i {
    font-size: 26px;
  }
  body .google-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .google-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .google-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .accordion .card {
    margin-bottom: 15px;
    border-radius: 5px !important;
    min-height: 56px;
  }
  body .accordion .card:last-child {
    margin-bottom: 0px;
  }
  body .modal.offline-donation .modal-body {
    padding: 12px 15px 22px;
  }
  body .modal.offline-donation .modal-body .form-inner {
    padding: 0px 45px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:after {
    content: '';
    background: #DAF3FC;
    height: 0.5px;
    width: calc(100% - 14px);
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 1px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options {
    margin-top: 25px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options .form-group {
    margin: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  body {
    /* Icon 3 */
    /**/
  }
  body .two-column-page {
    height: 100%;
  }
  body .two-column-page .left-navigation-box {
    z-index: 1021;
  }
  body .two-column-page .left-navigation-box .left-nav-logo {
    padding: 0px 10px;
    height: 69px;
  }
  body .two-column-page .left-navigation-box .ln-header-logo {
    width: 100%;
    max-width: 225px;
    height: 100%;
    max-height: 35px;
  }
  body .two-column-page .left-navigation-box .left-navigation {
    height: calc(100% - 73px);
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a {
    height: 48px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a i {
    font-size: 19px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav .parent-link::after {
    right: 10px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link::after {
    font-size: 13px;
    right: 10px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul .nav-nes li a .link-outer {
    padding-left: 100px;
    padding-right: 25px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul .nav-nes li a .link-outer i {
    padding-left: 0px;
  }
  body .two-column-page .page-outer-box {
    padding-top: 15px;
    width: 100%;
  }
  body.menu-close .two-column-page .left-navigation-box .left-navigation ul li a .link-txt {
    display: none;
  }
  body .nav-icon-three span:nth-child(1) {
    top: 4px;
    width: 100%;
  }
  body .nav-icon-three span:nth-child(2), body .nav-icon-three span:nth-child(3) {
    top: 11px;
    width: 80%;
  }
  body .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 60%;
  }
  body .nav-icon-three.open span:nth-child(1) {
    /* Cross icon css when open */
    /*
                        top: 10px;
                        width: 0%;
                        left: 50%;
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(2) {
    /* Cross icon css when open */
    /*
                        -webkit-transform: rotate(45deg);
                        -moz-transform: rotate(45deg);
                        -o-transform: rotate(45deg);
                        transform: rotate(45deg);
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(3) {
    /* Cross icon css when open */
    /*
                        -webkit-transform: rotate(-45deg);
                        -moz-transform: rotate(-45deg);
                        -o-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(4) {
    /* Cross icon css when open */
    /*
                        top: 18px;
                        width: 0%;
                        left: 50%;
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(2), body .nav-icon-three.open span:nth-child(3) {
    /* Cross icon css when open */
    /*
                        top: 10px;
                        width: 31px;
                        left: -4px;
                        */
    /* above Cross icon css when open */
  }
  body .nav-tabs.tab-inline-nav .nav-link {
    font-size: 18px;
    line-height: 62px;
    max-height: 62px;
    padding: 0px 25px 0px !important;
  }
  body .btn {
    border-radius: 6px !important;
  }
  body .btn.full-width {
    box-shadow: none;
  }
  body .btn.full-width-w-shadow {
    padding: 0px 15px;
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  }
  body .btn.large-btn {
    padding: 0px 47px;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
  }
  body form .form-control,
  body .form .form-control {
    width: 100%;
    height: 40px;
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-webkit-input-placeholder,
  body .form .form-control::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-moz-placeholder,
  body .form .form-control:-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-moz-placeholder,
  body .form .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-ms-input-placeholder,
  body .form .form-control:-ms-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body .page-heading h1 {
    font-size: 28px;
    line-height: 33px;
  }
  body .page-nested-heading h2 {
    font-size: 28px;
    line-height: 33px;
  }
  body .more-opt-txt {
    font-size: 28px;
    line-height: 33px;
  }
  body .no-item-found {
    padding: 0px;
  }
  body .no-item-found .center-image {
    padding: 10px 0px;
  }
  body .no-item-found .center-image i.item-not-found {
    width: 210px;
    height: 155px;
  }
  body .no-item-found .center-image i.item-not-found.large-img {
    width: 510px;
    height: 375px;
  }
  body .no-item-found .center-image i.do-not-have-registry {
    width: 385px;
    height: 301px;
  }
  body .no-item-found .center-image i.no-data-found {
    width: 524px;
    height: 275px;
  }
  body .no-item-found .no-item-txt {
    margin: 30px 0px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .no-item-found .no-item-txt-top {
    margin: 45px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .social-media-share-box p {
    margin: 25px 0px;
    font-size: 15px;
    line-height: 24px;
  }
  body .social-media-share-box.large-icon ul i {
    font-size: 34.2px;
  }
  body .social-media-share-box.large-icon ul li {
    width: 35px;
    height: 35px;
    margin-right: 15px !important;
  }
  body .social-media-share-box.large-icon ul li:only-child, body .social-media-share-box.large-icon ul li:last-child {
    margin-right: 0px !important;
  }
  body .social-media-share-box.large-icon ul li.facebook-square i {
    font-size: 28px;
  }
  body .social-media-share-box.large-icon ul li.whatsapp-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.twitter-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.instagram-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.copy-square i {
    font-size: 23px;
  }
  body .donation-disclaimer-message {
    padding: 0px 30px;
  }
  body .donation-disclaimer-message .disclaimer-top-text {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-top-text a {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-bottom-text {
    margin: 23px 0px 0px;
    padding: 3px 15px 2px;
    font-size: 14px;
    line-height: 24px;
  }
  body .app-download-btn {
    padding: 0px 15px;
  }
  body .app-download-btn p {
    font-size: 15px;
    line-height: 18px;
  }
  body .app-download-btn .app-download-btn-box {
    margin: 30px 0px 0px;
  }
  body .app-download-btn.large-space-both-side {
    margin: 51px 0px;
  }
  body .app-download-btn.small-space-both-side {
    margin: 30px 0px;
  }
  body .apple-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .apple-app-button .app-icon i {
    font-size: 26px;
  }
  body .apple-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .google-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .google-app-button .app-icon i {
    font-size: 26px;
  }
  body .google-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .google-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .google-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .accordion .card {
    margin-bottom: 15px;
    border-radius: 5px !important;
    min-height: 56px;
  }
  body .accordion .card:last-child {
    margin-bottom: 0px;
  }
  body .modal.offline-donation .modal-body {
    padding: 12px 15px 22px;
  }
  body .modal.offline-donation .modal-body .form-inner {
    padding: 0px 45px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:after {
    content: '';
    background: #DAF3FC;
    height: 0.5px;
    width: calc(100% - 14px);
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 1px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options {
    margin-top: 25px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options .form-group {
    margin: 0px;
  }
}

@media (min-width: 1200px) {
  body {
    /* Icon 3 */
    /**/
  }
  body .two-column-page {
    height: 100%;
  }
  body .two-column-page .left-navigation-box {
    width: 295px;
    min-width: 295px;
    z-index: 1021;
  }
  body .two-column-page .left-navigation-box .left-nav-logo {
    padding: 0px 15px;
    height: 70px;
  }
  body .two-column-page .left-navigation-box .ln-header-logo {
    width: 100%;
    max-width: 236px;
  }
  body .two-column-page .left-navigation-box .left-navigation {
    height: calc(100% - 70px);
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a {
    height: 48px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a i {
    font-size: 19px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav .parent-link::after {
    right: 15px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul li a.dropdown-nav-nes .parent-link::after {
    font-size: 13px;
    right: 15px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul .nav li a .link-outer {
    padding-left: 67px;
    padding-right: 25px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul .nav-nes li a .link-outer {
    padding-left: 100px;
    padding-right: 25px;
  }
  body .two-column-page .left-navigation-box .left-navigation ul .nav-nes li a .link-outer i {
    padding-left: 0px;
  }
  body .two-column-page .page-outer-box {
    padding-top: 15px;
    width: 100%;
  }
  body.menu-close .two-column-page .left-navigation-box {
    width: 100px;
    min-width: 100px;
  }
  body.menu-close .two-column-page .left-navigation-box .left-navigation ul li a {
    width: 90px;
  }
  body.menu-close .two-column-page .left-navigation-box .left-navigation ul li a .link-txt {
    display: none;
  }
  body .nav-icon-three span:nth-child(1) {
    top: 4px;
    width: 100%;
  }
  body .nav-icon-three span:nth-child(2), body .nav-icon-three span:nth-child(3) {
    top: 11px;
    width: 80%;
  }
  body .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 60%;
  }
  body .nav-icon-three.open span:nth-child(1) {
    /* Cross icon css when open */
    /*
                        top: 10px;
                        width: 0%;
                        left: 50%;
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(2) {
    /* Cross icon css when open */
    /*
                        -webkit-transform: rotate(45deg);
                        -moz-transform: rotate(45deg);
                        -o-transform: rotate(45deg);
                        transform: rotate(45deg);
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(3) {
    /* Cross icon css when open */
    /*
                        -webkit-transform: rotate(-45deg);
                        -moz-transform: rotate(-45deg);
                        -o-transform: rotate(-45deg);
                        transform: rotate(-45deg);
                        */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(4) {
    /* Cross icon css when open */
    /* above Cross icon css when open */
  }
  body .nav-icon-three.open span:nth-child(2), body .nav-icon-three.open span:nth-child(3) {
    /* Cross icon css when open */
    /* above Cross icon css when open */
  }
  body .nav-tabs.tab-inline-nav .nav-link {
    font-size: 18px;
    line-height: 62px;
    max-height: 62px;
    padding: 0px !important;
    margin-right: 25px;
  }
  body .nav-tabs.tab-inline-nav .nav-link:last-child, body .nav-tabs.tab-inline-nav .nav-link:only-child {
    margin-right: 0px;
  }
  body .btn {
    border-radius: 6px !important;
  }
  body .btn.full-width {
    box-shadow: none;
  }
  body .btn.full-width-w-shadow {
    padding: 0px 15px;
    width: 100%;
    line-height: 40px;
    height: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  }
  body .btn.large-btn {
    padding: 0px 47px;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
  }
  body form .form-control,
  body .form .form-control {
    width: 100%;
    height: 40px;
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-webkit-input-placeholder,
  body .form .form-control::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-moz-placeholder,
  body .form .form-control:-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control::-moz-placeholder,
  body .form .form-control::-moz-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body form .form-control:-ms-input-placeholder,
  body .form .form-control:-ms-input-placeholder {
    font-size: 12px;
    line-height: 38px;
  }
  body .page-heading h1 {
    font-size: 28px;
    line-height: 33px;
  }
  body .page-nested-heading h2 {
    font-size: 28px;
    line-height: 33px;
  }
  body .more-opt-txt {
    font-size: 28px;
    line-height: 33px;
  }
  body .no-item-found {
    padding: 0px;
  }
  body .no-item-found .center-image {
    padding: 10px 0px;
  }
  body .no-item-found .center-image i.item-not-found {
    width: 210px;
    height: 155px;
  }
  body .no-item-found .center-image i.item-not-found.large-img {
    width: 510px;
    height: 375px;
  }
  body .no-item-found .center-image i.do-not-have-registry {
    width: 385px;
    height: 301px;
  }
  body .no-item-found .center-image i.no-data-found {
    width: 524px;
    height: 275px;
  }
  body .no-item-found .no-item-txt {
    margin: 30px 0px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .no-item-found .no-item-txt-top {
    margin: 45px 0px;
    font-size: 22px;
    line-height: 26px;
  }
  body .social-media-share-box p {
    margin: 25px 0px;
    font-size: 15px;
    line-height: 24px;
  }
  body .social-media-share-box.large-icon ul i {
    font-size: 34.2px;
  }
  body .social-media-share-box.large-icon ul li {
    width: 35px;
    height: 35px;
    margin-right: 15px !important;
  }
  body .social-media-share-box.large-icon ul li:only-child, body .social-media-share-box.large-icon ul li:last-child {
    margin-right: 0px !important;
  }
  body .social-media-share-box.large-icon ul li.facebook-square i {
    font-size: 28px;
  }
  body .social-media-share-box.large-icon ul li.whatsapp-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.twitter-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.instagram-square i {
    font-size: 23px;
  }
  body .social-media-share-box.large-icon ul li.copy-square i {
    font-size: 23px;
  }
  body .donation-disclaimer-message .disclaimer-top-text {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-top-text a {
    font-size: 14px;
    line-height: 24px;
  }
  body .donation-disclaimer-message .disclaimer-bottom-text {
    margin: 23px 0px 0px;
    padding: 3px 15px 2px;
    font-size: 14px;
    line-height: 24px;
  }
  body .app-download-btn {
    padding: 0px 15px;
  }
  body .app-download-btn p {
    font-size: 15px;
    line-height: 18px;
  }
  body .app-download-btn .app-download-btn-box {
    margin: 30px 0px 0px;
  }
  body .app-download-btn.large-space-both-side {
    margin: 51px 0px;
  }
  body .app-download-btn.small-space-both-side {
    margin: 30px 0px;
  }
  body .apple-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .apple-app-button .app-icon i {
    font-size: 26px;
  }
  body .apple-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .apple-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .google-app-button {
    margin: 0px 25px;
    padding: 10px 23px;
    min-width: 165px;
  }
  body .google-app-button .app-icon i {
    font-size: 26px;
  }
  body .google-app-button .app-btn-txt {
    margin-left: 11px;
  }
  body .google-app-button .app-btn-txt .btn-top-txt {
    font-size: 9px;
    line-height: 11px;
  }
  body .google-app-button .app-btn-txt .btn-bottom-txt {
    margin: 0px 0px 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 19px;
  }
  body .accordion .card {
    margin-bottom: 15px;
    border-radius: 5px !important;
    min-height: 56px;
  }
  body .accordion .card:last-child {
    margin-bottom: 0px;
  }
  body .modal .modal-content {
    height: 100%;
  }
  body .modal.offline-donation .modal-body {
    padding: 12px 15px 22px;
  }
  body .modal.offline-donation .modal-body .form-inner {
    padding: 0px 45px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li:after {
    content: '';
    background: #DAF3FC;
    height: 0.5px;
    width: calc(100% - 14px);
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 1px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options {
    margin-top: 25px;
  }
  body .modal.offline-donation .modal-body .form-inner .list-group.list-group-flush li .nested-options .form-group {
    margin: 0px;
  }
  body .modal.media-gallery .modal-content {
    height: 450px;
    max-height: 450px;
  }
  body .modal.media-gallery .modal-body {
    height: calc(100% - 48px);
  }
  body .modal.media-gallery .modal-body .carousel {
    height: 100%;
  }
  body .modal.media-gallery .modal-body .carousel .carousel-inner {
    height: 100%;
  }
  body .modal.media-gallery .modal-body .carousel .carousel-item {
    height: 100%;
  }
  body .modal.testimonials-gallery .modal-content {
    height: auto;
    max-height: 450px;
  }
  body .modal.testimonials-gallery .modal-body {
    height: calc(100% - 48px);
  }
  body .modal.testimonials-gallery .modal-body .carousel {
    height: 100%;
  }
  body .modal.testimonials-gallery .modal-body .carousel .carousel-inner {
    height: 100%;
  }
  body .modal.testimonials-gallery .modal-body .carousel .carousel-item {
    height: 100%;
  }
  body .modal.testimonials-gallery .modal-body .carousel .testimonials-data-box {
    height: 100%;
  }
  body .modal.share-modal .modal-content {
    height: 100%;
    max-height: 180px;
  }
  body .modal.share-modal .modal-body {
    height: calc(100% - 56px);
  }
}

@media (max-width: 1600px) {
  .container-fluid .container, .container-sm .container, .container-md .container, .container-lg .container, .container-xl .container {
    max-width: 100%;
    padding: 0px;
  }
}

/* General styles for all menus */
/* Orientation-dependent styles for the content of the menu */
/* Vertical menu that slides from the left or right */
/* Horizontal menu that slides from the top or bottom */
/* Push classes applied to the body */
.cbp-spmenu-push {
  overflow-x: hidden;
  position: relative;
}

/* Transitions */
.cbp-spmenu,
.cbp-spmenu-push {
  transition: all 0.3s ease;
}

/* Example media queries */
/*
*****    Media Query     *****
*/
@media (max-width: 767.98px) {
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left {
    width: 80%;
    max-width: 295px;
    z-index: 1021;
    left: 0px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open {
    left: -295px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(2) {
    transform: rotate(45deg);
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(2), .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(3) {
    top: 10px;
    width: 31px;
    left: -4px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(1) {
    top: 0px;
    width: 100%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(2), .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(3) {
    top: 11px;
    width: 80%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(4) {
    top: 22px;
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left {
    width: 80%;
    max-width: 295px;
    z-index: 1021;
    left: 0px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open {
    left: -295px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(2) {
    transform: rotate(45deg);
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(2), .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three span:nth-child(3) {
    top: 10px;
    width: 31px;
    left: -4px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(1) {
    top: 0px;
    width: 100%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(2), .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(3) {
    top: 11px;
    width: 80%;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-open .nav-icon-three.open span:nth-child(4) {
    top: 22px;
    width: 60%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left {
    width: 100px;
    min-width: 100px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left .left-nav-logo-lg {
    opacity: 0;
    display: none;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left .left-nav-logo-sm {
    opacity: 1;
    display: block;
  }
  .cbp-spmenu-push .cbp-spmenu .left-navigation ul li a {
    width: 90px;
  }
  .cbp-spmenu-push .cbp-spmenu .left-navigation ul li a .link-txt {
    display: none;
  }
  .cbp-spmenu-push .page-outer-box {
    padding-left: calc(100px + 30px);
    padding-right: 15px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left {
    width: 295px;
    min-width: 295px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left .left-nav-logo-lg {
    opacity: 1;
    display: block;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left .left-nav-logo-sm {
    opacity: 0;
    display: none;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-open .left-navigation ul li a {
    width: 260px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-open .left-navigation ul li a .link-txt {
    display: block;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .page-outer-box {
    padding-left: calc(295px + 30px);
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left {
    width: 100px;
    min-width: 100px;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left .left-nav-logo-lg {
    opacity: 0;
    display: none;
  }
  .cbp-spmenu-push .cbp-spmenu.cbp-spmenu-left .left-nav-logo-sm {
    opacity: 1;
    display: block;
  }
  .cbp-spmenu-push .cbp-spmenu .left-navigation ul li a {
    width: 90px;
  }
  .cbp-spmenu-push .cbp-spmenu .left-navigation ul li a .link-txt {
    display: none;
  }
  .cbp-spmenu-push .page-outer-box {
    padding-left: calc(100px + 30px);
    padding-right: 15px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left {
    width: 295px;
    min-width: 295px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left .left-nav-logo-lg {
    opacity: 1;
    display: block;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-left .left-nav-logo-sm {
    opacity: 0;
    display: none;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-open .left-navigation ul li a {
    width: 260px;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .cbp-spmenu.cbp-spmenu-open .left-navigation ul li a .link-txt {
    display: block;
  }
  .cbp-spmenu-push.cbp-spmenu-push-toright .page-outer-box {
    padding-left: calc(295px + 30px);
    padding-right: 15px;
  }
}

/*
*****    Media Query End Above     *****
*/
.tooltip {
  display: inline;
  position: relative;
  z-index: 999;
  opacity: 1;
  background: transparent;
  margin-left: 20px;
  /* Trigger text */
  /* Tooltip */
}

.tooltip .tooltip-item {
  background: rgba(0, 0, 0, 0.3);
  background: transparent;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  padding: 0 0px;
  /* Gap filler */
}

.tooltip .tooltip-item::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}

.tooltip:hover .tooltip-item::after {
  pointer-events: auto;
}

.tooltip .tooltip-content {
  position: absolute;
  z-index: 9999;
  width: 210px;
  left: 50%;
  margin: 0 0 25px -105px;
  bottom: 100%;
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
  background: #FFF;
  border-radius: 10px;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #494B4B;
  /* Arrow */
  /* Tooltip content*/
}

.tooltip .tooltip-content::after {
  content: '';
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #FFFFFF;
  border-width: 15px;
  margin-left: -15px;
}

.tooltip .tooltip-content img {
  position: relative;
  height: 170px;
  display: block;
  float: left;
  margin-right: 1em;
}

.tooltip .tooltip-effect-1 .tooltip-content {
  transform: translate3d(0, -10px, 0);
  transition: opacity 0.3s, transform 0.3s;
}

.tooltip .tooltip-effect-2 .tooltip-content {
  transform-origin: 50% calc(100% + 10px);
  transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
  transition: opacity 0.2s, transform 0.2s;
}

.tooltip .tooltip-effect-3 .tooltip-content {
  transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
  transition: opacity 0.3s, transform 0.3s;
}

.tooltip .tooltip-effect-4 .tooltip-content {
  transform-origin: 50% 100%;
  transform: scale3d(0.7, 0.3, 1);
  transition: opacity 0.2s, transform 0.2s;
}

.tooltip .tooltip-effect-5 .tooltip-content {
  width: 180px;
  margin-left: -90px;
  transform-origin: 50% calc(100% + 6em);
  transform: rotate3d(0, 0, 1, 15deg);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
}

.tooltip:hover .tooltip-content {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

.tooltip.tooltip-effect-2:hover .tooltip-content {
  transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
}

.tooltip .tooltip-text {
  font-family: 'SF UI Display';
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #494B4B;
  padding: 15px 10px;
  display: block;
}

.tooltip .tooltip-text span {
  color: #08AEEA;
}

/* Gap filler */
/* Tooltip */
/* Tooltip content*/
.tooltip-effect-5 .tooltip-text {
  padding: 1.4em;
}

.tooltip-text a {
  font-weight: bold;
}

body #app,
body .container-fluid,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl,
body .container-sm,
body .container-md,
body .container-lg,
body .container-xl,
body main {
  position: relative;
}

.dollar-a-day-page {
  background: #F2F5F8;
}

.dollar-a-day-page h2 {
  font-family: "SF UI Display", Helvetica, sans-serif;
}

.dollar-a-day-page label {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: #3D4A4F;
}

.dollar-a-day-page label#daily-amount-error {
  display: none !important;
}

.dollar-a-day-page label#family-member-error {
  display: none !important;
}

.dollar-a-day-page label#datepicker2-error {
  display: none !important;
}

.dollar-a-day-page label#first-name-error {
  display: none !important;
}

.dollar-a-day-page label#last-name-error {
  display: none !important;
}

.dollar-a-day-page label#email-field-error {
  display: none !important;
}

.dollar-a-day-page label#recurring_purpose-error {
  display: none !important;
}

.dollar-a-day-page .skyblue-border {
  border: 1px solid #08AEEA;
  border-radius: 5px;
}

.dollar-a-day-page .skyblue-border.form-control {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #3D4A4F;
}

.dollar-a-day-page .skyblue-border.form-control::PlaceHolder {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #ACB7BC;
}

.dollar-a-day-page .error {
  border: 1px solid #FF647C !important;
  color: #FF647C !important;
  background: #FFFAFB;
}

.dollar-a-day-page .error::-moz-placeholder {
  color: #FF647C !important;
}

.dollar-a-day-page .error:-ms-input-placeholder {
  color: #FF647C !important;
}

.dollar-a-day-page .error::placeholder {
  color: #FF647C !important;
}

.dollar-a-day-page .error-message {
  color: #FF647C;
  margin-bottom: 10px !important;
  display: none;
}

.dollar-a-day-page .error-message.add-error {
  display: block !important;
}

.dollar-a-day-page .page-outer-box {
  padding: 15px !important;
}

.dollar-a-day-page .page-outer-box .top-heading {
  background: #FFFFFF;
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  margin-bottom: 18px;
  box-shadow: 0px 3px 30px rgba(148, 148, 148, 0.15);
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #08AEEA;
  position: relative;
  border-radius: 14px;
}

.dollar-a-day-page .page-outer-box .top-heading .logo-box {
  position: absolute;
  left: 20px;
  top: 44%;
  transform: translateY(-50%);
}

.dollar-a-day-page .page-outer-box .top-heading .logo-box img {
  max-width: 52%;
}

.dollar-a-day-page .page-outer-box .top-heading .mobile-logo {
  display: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row {
  background: #effbfb;
  margin-right: 70px;
  margin-left: 70px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens {
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 14px 14px 30px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  border-radius: 12px;
  border: 1px solid #08AEEA;
  max-width: 700px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .image {
  max-width: 300px;
  margin-bottom: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .logoBlessed {
  height: 45px;
  margin-bottom: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .logoBlessed img {
  height: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .textIntro {
  font-family: SF UI Display, Helvetica, sans-serif;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 120% */
  max-width: 85%;
  letter-spacing: 0.2px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .textIntro p {
  margin-bottom: 15px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .textIntro.leftText {
  text-align: left;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .textIntro .smallText {
  font-size: 14px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .textIntro ul {
  list-style-type: decimal;
  list-style-position: inside;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .endQoute {
  color: #000;
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 138.462% */
  max-width: 85%;
  letter-spacing: 0.2px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .introHead {
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .introHead span {
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .reminderHead {
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .reminderHead span {
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .actionsBtn {
  display: flex;
  margin-top: 25px;
  margin-bottom: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .introScreens .actionsBtn button {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-transform: capitalize;
  margin: 10px;
  border-radius: 15px !important;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen {
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 14px 14px 30px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  border-radius: 12px;
  border: 1px solid #08AEEA;
  max-width: 700px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .image {
  max-width: 300px;
  margin-bottom: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .logoBlessed {
  height: 45px;
  margin-bottom: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .logoBlessed img {
  height: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro {
  font-family: SF UI Display, Helvetica, sans-serif;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 120% */
  max-width: 85%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro p {
  margin-bottom: 15px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro.leftText {
  text-align: left;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro .smallText {
  font-size: 12px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro ul {
  list-style-type: decimal;
  list-style-position: inside;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro.salamsText {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 25px;
  padding: 25px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro.salamsText h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .textIntro.salamsText p {
  margin-bottom: 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode {
  width: 85%;
  padding: 0 35px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField input {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 11px 12px 11px;
  display: block;
  width: calc(100% - 24px);
  border: none;
  border-radius: 3px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField input:focus {
  outline: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField input:focus ~ label,
.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField input:valid ~ label {
  top: -7px;
  font-size: 12px;
  color: #9CA3AF;
  background: #fff;
  padding: 0px 5px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField input:focus ~ .border {
  border: 2px solid #9CA3AF;
  border-radius: 3px;
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 0px;
  pointer-events: none;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField label {
  color: #9CA3AF;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 12px;
  top: 12px;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField .border {
  border: 1px solid #cecece;
  border-radius: 3px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  pointer-events: none;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField .btnsShare {
  position: absolute;
  right: 5px;
  top: 10px;
  opacity: 1;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField .btnsShare button {
  border: none;
  background: none;
  font-size: 17px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .refField .btnsShare button i::before {
  color: #000;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .copy-text button:before {
  content: "Copied";
  position: absolute;
  top: -45px;
  right: -19px;
  background: #0086C5;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 15px;
  display: none;
  color: #fff;
  font-family: "SF UI Display", Helvetica, sans-serif;
  z-index: 99;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .copy-text button:after {
  content: "";
  position: absolute;
  top: -20px;
  right: 7px;
  width: 10px;
  height: 10px;
  background: #0086C5;
  transform: rotate(45deg);
  display: none;
  z-index: 99;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .copy-text.active button:before,
.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .refCode .copy-text.active button:after {
  display: block;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .shareMedia {
  margin: 0 0 20px 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .shareMedia .media-icons {
  display: flex;
  align-items: flex-start;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .shareMedia .media-icons a {
  text-decoration: none;
  font-size: 28px;
  margin: 0 3px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .shareMedia .media-icons a img {
  height: 28px;
  width: auto;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .quranQoute {
  max-width: 50%;
  margin: auto;
  margin-bottom: 25px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .quranQoute h3 {
  font-family: Hahmlet;
  font-size: 18px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .quranQoute h3:last-child {
  letter-spacing: 0em;
  text-align: center;
  margin-top: 20px;
  color: #17181A59;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .endQoute {
  color: #000;
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 138.462% */
  max-width: 85%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .introHead {
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .introHead span {
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .introHead.bigger {
  font-size: 27px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .reminderHead {
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .reminderHead span {
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .actionsBtn {
  display: flex;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .actionsBtn button {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-transform: capitalize;
  margin: 10px;
  border-radius: 15px !important;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox {
  width: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox .top {
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid #08AEEA;
  background: #EDF7FB;
  display: flex;
  justify-content: center;
  padding: 10px 50px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox .top .back-btn {
  width: 33.941px;
  height: 33.941px;
  position: absolute;
  left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  background: white;
  font-size: 12px;
  color: #000;
  border-radius: 100% !important;
  opacity: 1;
  text-decoration: none;
  transform-origin: center;
  transform: rotate(180deg);
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox .top .input {
  max-width: 125px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox .top .input input {
  border: none;
  background: none;
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  max-width: 145px;
  caret-color: #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .priceInfoBox .top .coin {
  width: 40px;
  height: 40px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredFriends {
  background: white;
  width: 100%;
  padding: 15px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredFriends span {
  font-family: Hahmlet;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  background: #EDF7FB;
  border: 2px solid #0086C5;
  color: #0086C5;
  display: block;
  width: 100%;
  border-radius: 15px;
  padding: 6px;
  box-shadow: 0px 5px 15px 0px #0000001A;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo {
  width: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper {
  margin-top: 0;
  background: none;
  overflow-y: auto;
  height: calc(100vh - 340px);
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info {
  border-top: solid 1px #EBEFF4 !important;
  align-items: flex-start;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info:not(:first-child) {
  border-top-style: solid;
  border-color: #EBEFF4;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .ammStatus {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #8C9299;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .ammStatus.highlight {
  color: #0187C6;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status {
  display: flex;
  align-items: center;
  margin: 3px 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status .icon {
  margin-right: 7px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status .icon img {
  width: 20px;
  height: 20px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status p {
  margin-bottom: 0;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 14px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status .earned {
  color: #0086C5;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status .redeemed {
  color: #228C22;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__left .status .pending {
  color: #8C9299;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__right .bigSmiley img {
  width: 48px;
  height: 48px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__right .body-normal-semibold {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  background: #F3F4F6;
  padding: 2px 5px 2px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .refferelsScreen .referredInfo .detail-info-wrapper .detail-info .detail-info__right .body-normal-semibold.complete {
  background: #F0FDFA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box {
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 14px 14px 30px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 80px;
  padding-left: 0px;
  border-radius: 12px;
  border: 1px solid #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box.round-white-box-charity {
  padding-bottom: 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info {
  border-bottom: 1px solid #08AEEA;
  padding: 20px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .img-box {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  box-shadow: 2px 0px 20px #eaecf0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .main-heading {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: #3D4A4F;
  line-height: 28px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .bigHeadingNew {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 600;
  font-style: normal;
  color: #657176;
  line-height: 28px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .bigHeadingNew sup {
  font-size: 14px !important;
  color: #ACB7BC;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .charityInfo {
  width: 100%;
  margin-top: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .charityInfo .left.main-heading {
  color: #08AEEA;
  font-weight: 400;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .top-info .charityInfo .main-heading {
  color: #27353A;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper {
  width: 200%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper {
  margin-top: 40px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page {
  width: 50%;
  transition: margin-left 0.3s ease-in-out;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields {
  width: 100%;
  max-width: 396px;
  margin: auto;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group {
  width: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group .input-group {
  height: 45px !important;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group .input-group .input-group-prepend .input-group-text {
  font-family: "SF UI Display", Helvetica, sans-serif;
  color: #FFFFFF;
  background: #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.daily-amount {
  max-width: 150px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.daily-amount .input-group .input-group-prepend .input-group-text {
  border: 1px solid #08AEEA !important;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members {
  max-width: 290px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group {
  overflow: hidden;
  height: 80px !important;
  border: 1px solid #08AEEA;
  border-radius: 10px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group .input-group-prepend .input-group-text {
  width: 40px;
  height: 100%;
  border: none !important;
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group .input-group-prepend .input-group-text.plus {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group .currency-sign {
  position: absolute;
  top: 12px;
  left: 70px;
  z-index: 99;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group .form-control {
  text-align: center;
  position: relative;
  height: 50px;
  border: none !important;
  border-left: 1px solid #08AEEA !important;
  font-size: 32px;
  font-weight: bold;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group.family-members .input-group .days {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation {
  text-align: center;
  margin-top: 40px;
  width: 42%;
  margin: auto;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation h1 {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: #3D4A4F;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation .total-donation {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation .total-donation .total-dollar {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  color: #08AEEA;
  margin-top: 8px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation span {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-style: normal;
  color: #657176;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation .custom-control label {
  color: #3D4A4F;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation .purpose-dropdown-wrapper {
  margin: 20px auto 0px auto;
  width: 100%;
  max-width: 250px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box {
  margin-bottom: 40px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field {
  width: 100%;
  max-width: 180px;
  margin-top: 60px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field label span {
  font-weight: 600 !important;
  display: inline-block;
  margin-right: 6px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field .field {
  border: 1px solid #08AEEA;
  height: 45px;
  border-radius: 6px !important;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #3D4A4F;
  text-align: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field .custom-checkbox.small-chk-box {
  padding-left: 14px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field .custom-checkbox .custom-control-label {
  font-size: 12px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .form-group.date-field.end-date {
  margin-left: 64px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .para-text {
  width: 60%;
  margin: 46px auto 34px auto;
  text-align: center;
  line-height: 25px;
  font-family: "SF UI Display", Helvetica, sans-serif;
  color: #3D4A4F;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .btn {
  width: 200px;
  height: 45px;
  font-size: 16px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 {
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 h2 {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields {
  width: 100%;
  max-width: 420px;
  margin: auto;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .email-field {
  width: 100%;
  margin-bottom: 30px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .card-element-wrapper.hide {
  display: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields #card-errors {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #FF647C;
  margin-top: 4px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .error-message {
  margin-top: 40px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .label-heading {
  display: block;
  text-align: right;
  text-decoration: none;
  font-size: 14px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .label-heading1.hide {
  display: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .label-heading2 {
  margin-bottom: 20px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .label-heading2.hide {
  display: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header {
  border-radius: 15px;
  background: #FBFEFF;
  display: flex;
  justify-content: space-between;
  padding: 14px 10px;
  border: 1px solid #08AEEA;
  margin-bottom: 30px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__left {
  display: flex;
  align-items: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__left .text-box {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__left .text-box .name {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: #3D4A4F;
  line-height: 20.8px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__left .text-box .ending {
  margin-top: 8px;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: #3D4A4F;
  line-height: 20.8px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .link {
  position: absolute;
  top: -8px;
  right: 0px;
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  color: #3D4A4F;
  line-height: 13px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .expiry-and-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .expiry-and-icon .date-expiry {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  color: #3D4A4F;
  line-height: 20.8px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .expiry-and-icon .date-expiry .date {
  margin-left: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header.hide {
  display: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .btn-and-text-group .para-desc {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .btn-and-text-group .para-desc a {
  font-size: 14px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity {
  width: 100%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper {
  margin-top: 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper {
  margin-top: 0;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info {
  align-items: flex-start;
}

@media (max-width: 767.98px) {
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .org-logo-and-text {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .org-logo-and-text .heading-6-semibold {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .org-logo-and-text .logo-box {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side .date {
    order: 1;
    margin-bottom: 0;
  }
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side .bank-detail {
    margin-right: 10px;
  }
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .body-normal-semibold {
  font-size: 14px !important;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .bank-detail .number {
  margin-left: 0px;
  font-size: 14px;
  background: #f0f0f0;
  padding: 1px 5px;
  line-height: 22px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .bank-detail .number.complete {
  background: #cfebf5;
}

@media (max-width: 767.98px) {
  .dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right {
    margin-left: auto;
    margin-right: auto;
  }
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .input-group.d-flex.justify-content-between.checkedCharity {
  justify-content: flex-end !important;
  display: flex;
  flex-direction: column;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .input-group.d-flex.justify-content-between.checkedCharity .family-members {
  opacity: 0.7;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members {
  max-width: 220px;
  display: flex;
  align-items: center;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .input-group-prepend .input-group-text {
  border-radius: 20.25rem;
  height: 40px;
  margin: 3px;
  background-color: #fff;
  border: 1px solid #08AEEA;
  color: #08AEEA;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .inputField {
  display: flex;
  align-items: center;
  background: #08AEEA;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin: 0 4px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .inputField .currency-sign {
  width: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .form-control.skyblue-border {
  border-radius: 50px;
  height: 40px;
  margin: 4px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members {
  max-width: 290px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group {
  overflow: hidden;
  height: 80px !important;
  border: 1px solid #08AEEA;
  border-radius: 10px;
  position: relative;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group .input-group-prepend .input-group-text {
  width: 40px;
  height: 100%;
  border: none !important;
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group .input-group-prepend .input-group-text.plus {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group .currency-sign {
  position: absolute;
  top: 12px;
  left: 70px;
  z-index: 99;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group .form-control {
  text-align: center;
  position: relative;
  height: 50px;
  border: none !important;
  border-left: 1px solid #08AEEA !important;
  font-size: 32px;
  font-weight: bold;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper.outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .family-members .input-group .days {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side {
  padding-top: 42px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side p {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #27353A;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation {
  width: 100%;
  max-width: 448px;
  margin: auto;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation .quote {
  padding-right: 20px;
  font-family: "SF Compact Text";
  font-size: 20px;
  font-style: italic;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation .author {
  font-size: 20px;
  color: #3D4A4F;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side img {
  max-width: 70%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .bottom-text {
  margin-top: 20px;
  font-size: 20px;
  color: #3D4A4F;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .powered-by {
  width: 100%;
  max-width: 270px;
  margin: auto;
  border-bottom: 2px solid #08AEEA;
  padding-bottom: 5px;
  font-family: SF UI Display, Helvetica, sans-serif;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .powered-by img {
  width: 14%;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .powered-by span {
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: #3D4A4F;
  margin-left: 10px;
}

.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .powered-by span a {
  font-size: 14px;
  font-weight: 600;
}

.dollar-a-day-page .blessedUiBasicBox {
  max-width: 500px;
  width: 100%;
  margin: auto;
  padding-top: 51px;
}

.dollar-a-day-page .blessedUiBasicBox .loading {
  display: flex;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 30px);
  right: 0;
  bottom: 0;
  margin: 0 15px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
}

.dollar-a-day-page .blessedUiBasicBox .loading .spinner-border {
  border: 0.25em solid #08AEEA;
  border-right-color: transparent;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .amount-control-inner {
  margin-top: 24px;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group {
  height: auto !important;
  width: 130px;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-prepend {
  height: auto !important;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-prepend .input-group-text {
  border-radius: 15px 0px 0px 15px;
  border: none !important;
  background: #fff !important;
  padding-top: 0px;
  padding-right: 4px;
  border-width: 1px 0px 1px 1px !important;
  border-style: solid !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control {
  border: none !important;
  border-width: 1px 0px 1px 0px !important;
  border-style: solid !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  border-radius: 0px !important;
}

.dollar-a-day-page .blessedUiBasicBox.GuestBlessedBox .continuePayment .amount-control .form-fields #card-errors {
  font-family: "SF UI Display", Helvetica, sans-serif !important;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.dollar-a-day-page .blessedUiBasicBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group.wideField {
  width: 180px;
}

.dollar-a-day-page .blessedUiBasicBox .continuePayment .amount-control .amount-control-inner .amount-field .input-group.wideField .form-control {
  padding-right: 0;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs {
  margin-top: 20px;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar {
  flex-wrap: wrap;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar > div {
  width: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 5px;
  margin-bottom: 15px;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav .nav-item {
  width: 49.5%;
  text-align: center;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav .nav-item .nav-link {
  color: #0086C5;
  background: none;
  border: 1.5px solid transparent;
  width: 100%;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 13px;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav .nav-item .nav-link.active {
  background: rgba(0, 134, 197, 0.07);
  border: 1.5px solid #0086C5;
  border-radius: 13px;
  color: #0086C5;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav .nav-item .nav-link span {
  margin-top: 4px;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav .nav-item .nav-link {
  color: #8C9299;
  padding: 8px 3px;
  color: #8C9299;
  padding: 8px 3px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav.fullWidth .nav-item {
  width: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .navbar-nav.fullWidth .nav-item .nav-link.active {
  background: inherit;
  border: inherit;
  color: inherit;
}

.dollar-a-day-page .blessedUiBasicBox .blessedTabs .navbar .tab-content {
  flex-wrap: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo {
  padding: 8px;
  background: rgba(235, 239, 244, 0.5);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo .inner {
  background: var(--White, #FFF);
  border-radius: 25px;
  text-align: center;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo .inner .toAmount span {
  text-align: center;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo .inner .toAmount .amm {
  color: var(--Brand-Blue, #0086C5);
  font-size: 26px;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo .inner .toAmount .d-block span {
  color: var(--Brand-Blue, #0086C5);
  font-size: 26px;
}

.dollar-a-day-page .blessedUiBasicBox .showAmountInfo .inner span {
  color: #000;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dollar-a-day-page .blessedUiBasicBox .main-back-btn {
  width: 33.941px;
  height: 33.941px;
  position: absolute;
  left: 80px;
  top: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  background: #E5E5E5;
  font-size: 12px;
  color: #000;
  border-radius: 100% !important;
  opacity: 1;
  text-decoration: none;
  transform-origin: center;
  transform: rotate(180deg);
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox {
  margin-bottom: 15px;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top {
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid #08AEEA;
  background: #EDF7FB;
  display: flex;
  justify-content: center;
  padding: 10px 50px;
  position: relative;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .back-btn {
  width: 33.941px;
  height: 33.941px;
  position: absolute;
  left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  background: white;
  font-size: 12px;
  color: #000;
  border-radius: 100% !important;
  opacity: 1;
  text-decoration: none;
  transform-origin: center;
  transform: rotate(180deg);
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input {
  position: relative;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input input {
  border: none;
  background: none;
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  width: 85px;
  caret-color: #08AEEA;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input span {
  position: absolute;
  left: -13px;
  top: 6px;
  color: var(--Light, #AEAEAF);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input input::-webkit-outer-spin-button,
.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .input input[type=number] {
  -moz-appearance: textfield;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .close {
  width: 33.941px;
  height: 33.941px;
  position: absolute;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  background: white;
  font-size: 12px;
  color: #000;
  border-radius: 50%;
  opacity: 1;
  text-decoration: none;
}

.dollar-a-day-page .blessedUiBasicBox .priceInfoBox .top .close .icon-close::before {
  color: #000;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice {
  display: flex;
  padding: 28px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0px 0px;
  background: rgba(235, 239, 244, 0.5);
  position: relative;
  margin-bottom: 42px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice:after {
  background: url(../../images/web/2023-design/Subtract.png);
  content: "";
  position: absolute;
  bottom: -22px;
  height: 22px;
  width: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .showedContent {
  width: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .expandedContent {
  display: none;
  padding: 15px 0;
  width: 100%;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .expand-icon {
  position: absolute;
  bottom: 0px;
  right: 0;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  text-align: center;
  margin: auto;
  left: 0;
  transform: rotate(180deg);
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .expand-icon.changeIcon {
  transform: rotate(0deg);
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo {
  display: flex;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .left {
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .left .date {
  padding: 0;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .left .cardInfo {
  display: flex;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 0;
  margin-left: -1px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .left .cardInfo i {
  margin-right: 7px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .right {
  margin-left: auto;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .right .eachLine {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  margin-bottom: 6px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .right .eachLine span {
  font-size: 13px;
  color: #8C9299;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .right .eachLine span sup {
  font-size: 10px;
  margin: 0 2px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .feeInfo .updateText a {
  font-size: 13px;
  color: #27D3A8;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .reviewInfo {
  border-top: dashed 2px rgba(0, 0, 0, 0.3);
  padding: 17px 0 0;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .reviewInfo .each {
  margin-bottom: 7px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .reviewInfo .each label {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #8C9299;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .reviewInfo .each p {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .date {
  display: flex;
  border-bottom: solid 1px #EBEFF4;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  padding-bottom: 17px;
  margin-bottom: 20px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .date label {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0em;
  text-align: left;
  color: #8C9299;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .date .endDate {
  margin-left: auto;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .notesArea label {
  color: #8C9299;
  margin-bottom: 3px;
}

.dollar-a-day-page .blessedUiBasicBox .reviewInvoice .notesArea .form-control {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  resize: none;
  border: none;
}

.dollar-a-day-page .blessedUiBasicBox .actionsBtn {
  display: flex;
  margin-top: 25px;
  margin-bottom: 10px;
}

.dollar-a-day-page .blessedUiBasicBox .actionsBtn button {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-transform: capitalize;
  margin: 10px;
  border-radius: 22px !important;
}

.dollar-a-day-page .currencyTag .btn-box {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
  justify-content: center;
}

.dollar-a-day-page .currencyTag .btn-box .btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 5px 3px;
}

.dollar-a-day-page .currencyTag .btn-box .btn__smallBgLess {
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  background: rgba(69, 73, 77, 0.5);
  color: #45494D;
  padding: 7.5px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1) !important;
  border-radius: 15px !important;
  width: 64px;
  background: #ffffff;
  position: relative;
}

.dollar-a-day-page .currencyTag .btn-box .btn__smallBgLess.active {
  color: #0086C5;
  border-color: #0086C5;
  background: rgba(0, 134, 197, 0.07);
}

.dollar-a-day-page .blankAttachedBox {
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0px 0px;
  background: rgba(235, 239, 244, 0.5);
  position: relative;
  margin-bottom: 42px;
}

.dollar-a-day-page .blankAttachedBox:after {
  background: url(../../images/web/2023-design/Subtract.png);
  content: "";
  position: absolute;
  bottom: -22px;
  height: 22px;
  width: 100%;
}

.dollar-a-day-page .blankAttachedBox .blankWhiteBox {
  width: 338px;
  height: 203px;
  border-radius: 25px;
  background: var(--White, #FFF);
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.1);
}

.dollar-a-day-page .blankAttachedBox .blankWhiteBox img {
  border-radius: 25px;
}

.dollar-a-day-page .blankAttachedBox.noBg {
  margin-bottom: 22px;
  border-radius: 20px;
}

.dollar-a-day-page .blankAttachedBox.noBg:after {
  content: none;
}

.dollar-a-day-page .addCheck {
  border-bottom: solid 1px #EBEFF4;
  padding-bottom: 13px;
}

.dollar-a-day-page .addCheck .form-check {
  padding: 10px 16px;
}

.dollar-a-day-page .addCheck .form-check.rounded-radio-btn .form-check-label {
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 8px;
}

.dollar-a-day-page .addCheck .form-check.rounded-radio-btn .form-check-label span {
  color: var(--Labels, #8C9299);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 6px;
}

.dollar-a-day-page .addCheck .labelAddLine {
  color: var(--Label, rgba(23, 24, 26, 0.35));
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-top: -8px;
  display: block;
}

.dollar-a-day-page .addCheck.addCheckGuest .form-check {
  padding: 10px 0px;
}

.dollar-a-day-page .addCheck.addCheckGuest .form-check.rounded-radio-btn .form-check-label {
  margin-left: 22px;
}

.dollar-a-day-page .addCheck.addCheckGuest .form-check.rounded-radio-btn .form-check-label:before {
  left: -22px;
}

.dollar-a-day-page .addCheck.addCheckGuest .form-check.rounded-radio-btn .form-check-label:after {
  left: -18px;
}

.dollar-a-day-page .continuePayment {
  margin-left: -6px;
  margin-right: -6px;
}

.dollar-a-day-page .continuePayment .amount-control {
  margin-top: 48px;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn.right .text {
  margin-left: 10px;
  margin-right: 0;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn:focus {
  outline: none !important;
  box-shadow: none;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn:active {
  outline: none !important;
  box-shadow: none;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn .text {
  margin-top: 4px;
  margin-right: 10px;
  color: #000;
  font-size: 12px;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .btn i {
  font-size: 26px;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group {
  width: 150px;
  filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.1));
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control {
  border: none;
  color: var(--Primary-Dark, #45494D);
  background: var(--White, #FFF);
  padding-left: 0px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  height: 33.2px;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control:focus {
  outline: none !important;
  box-shadow: none;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control:active {
  outline: none !important;
  box-shadow: none;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-prepend .input-group-text {
  border-radius: 15px 0px 0px 15px;
  border: none;
  background: #fff;
  padding-top: 7px;
  padding-right: 4px;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-append .input-group-text {
  border: none;
  border-radius: 0px 15px 15px 0px;
  background: rgba(0, 134, 197, 0.5);
  color: var(--White, #FFF);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group input::-webkit-outer-spin-button,
.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dollar-a-day-page .continuePayment .amount-control .amount-control-inner .amount-field .input-group input[type=number] {
  -moz-appearance: textfield;
}

.dollar-a-day-page .continuePayment .amount-control .show-error {
  margin-top: 14px;
  text-align: center;
}

.dollar-a-day-page .continuePayment .amount-control .show-error .error {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #FF647C;
}

.dollar-a-day-page .continuePayment .submit-btn {
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 15px !important;
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 15px !important;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.dollar-a-day-page .creditForm .form-group .text-field label {
  color: var(--Labels, #8C9299);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.dollar-a-day-page .creditForm .form-group .text-field .form-control__custom {
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #F5F5F5;
  padding: 13px 15px 12px 15px;
  height: 44px;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .icon {
  height: 31px;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control {
  background: none;
  color: #45494D;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  max-width: 154px;
  padding: 0;
  margin-left: 5px;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control::-moz-placeholder {
  color: #C4C7CC;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control:-ms-input-placeholder {
  color: #C4C7CC;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control::placeholder {
  color: #C4C7CC;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control:-moz-placeholder {
  color: #C4C7CC;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .form-control:-webkit-placeholder {
  color: #C4C7CC;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .autoLink {
  margin-left: auto;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .autoLink a {
  display: flex;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .rightInput {
  margin-left: auto;
  display: flex;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .rightInput .form-control {
  max-width: 50px;
}

.dollar-a-day-page .creditForm .form-group .creditCardFields .eachField .rightInput .form-control:last-child {
  max-width: 30px;
}

.dollar-a-day-page .confirmInfo {
  margin-bottom: 28px;
}

.dollar-a-day-page .confirmInfo h1 {
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 37px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.dollar-a-day-page .confirmInfo p {
  color: var(--Labels, #8C9299);
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  /* 143.75% */
  margin-bottom: 20px;
}

.dollar-a-day-page .blessedCopyRight {
  color: var(--Labels, #8C9299);
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: -10px;
  margin-bottom: 30px;
}

.dollar-a-day-page .blessedCopyRight a {
  color: #0086C5;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.webNewRightText {
  display: flex;
  width: 345px;
  height: 375px;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  margin-bottom: 170px;
}

.webNewRightText h5 {
  color: #3D4A4F;
  text-align: center;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 19.063px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  /* 157.377% */
  margin-bottom: 20px;
}

.webNewRightText p {
  color: #3D4A4F;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

.webNewRightText a {
  color: #3D4A4F;
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-decoration-line: underline;
}

.newUIBox .inner-row {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: rgba(8, 174, 234, 0.1) !important;
}

.confirmUIBox .blessedUiBasicBox {
  padding-top: 100px;
  padding-bottom: 40px;
}

.confirmUIBox .webNewRightText {
  display: flex;
  width: 345px;
  height: auto;
  margin-bottom: 20px;
}

.confirmUIBox .webNewRightText img {
  max-width: 100% !important;
}

.webNewScreenUI {
  max-width: 500px;
  margin: auto;
}

.webNewScreenUI .round-white-box.round-white-box-charity {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info {
  padding: 0 !important;
  border-bottom: none !important;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info .topDetail {
  border-radius: 8px 8px 0px 0px;
  background: #EDF7FB;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info .topDetail .bigHeadingNew {
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info .topDetail .bigHeadingNew sup {
  vertical-align: unset;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info .bottomDetail {
  border-radius: 0px 0px 8px 8px;
  background: var(--White, #FFF);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 11px 6px 14px;
  height: 40px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .top-info .bottomDetail .main-heading {
  font-family: SF UI Display, Helvetica, sans-serif;
  color: var(--Brand-Blue, #0086C5) !important;
  text-align: center;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal !important;
}

.webNewScreenUI .round-white-box.round-white-box-charity .UIDivider {
  height: 1px;
  width: calc(100% - 32px);
  background: #EBEFF4;
  display: block;
  margin: 5px 16px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper {
  overflow-x: auto;
  max-height: calc(100vh - 280px);
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper {
  background: #fff;
  margin-bottom: 15px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info {
  background: #fff;
  margin: 0;
  padding: 16px 15px 12px;
  margin-bottom: 5px;
  position: relative;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info:before {
  height: 2px;
  width: calc(100% - 12px);
  background: #F0F0F0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  margin-left: 6px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info.highlight:before {
  background: var(--Brand-Gradient, linear-gradient(291deg, #27D3A8 0%, #0086C5 72.48%));
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info:not(:first-child) {
  border: none !important;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left {
  flex: 1;
  margin-right: 10px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .org-logo-and-text {
  text-align: left;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .org-logo-and-text .text {
  margin-left: 0px;
  color: var(--Primary-Dark, #45494D);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data {
  margin-top: 0;
  display: flex;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side .body-normal-semibold {
  margin-bottom: 0;
  color: var(--secondary-secondary-700, #374151);
  text-align: center;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side .bank-detail {
  display: flex;
  align-items: center;
  margin-right: 3px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__left .selected-data .selected-data-left.data-side .bank-detail .complete {
  background: #f6ffff !important;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members {
  margin-bottom: -10px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .inputField {
  border-radius: 16px !important;
  padding-left: 8px;
  width: 41px;
  height: 24px;
  background: #fff !important;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .inputField .currency-sign {
  width: auto !important;
  color: var(--Primary-Dark, #45494D) !important;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: normal;
  text-transform: capitalize;
  background: #fff;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .inputField .form-control.skyblue-border {
  border-radius: 50px !important;
  height: 25px !important;
  margin: 0 !important;
  border: none;
  padding: 0;
  color: var(--Primary-Dark, #45494D);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members .input-group-prepend .input-group-text {
  height: 25.6px !important;
  margin: 4px !important;
  width: 24px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members.addition .inputField {
  padding-right: 8px;
  width: auto;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members.addition .currency-sign {
  margin-right: 2px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .family-members.addition .form-control.skyblue-border {
  line-height: 27px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .logo-box {
  margin-left: 12px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .detail-info__right .logo-box img {
  max-width: 48px;
  border-radius: 15px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .continuePayment {
  margin-left: 20px;
  margin-right: 20px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .continuePayment.AddPaymentShowBox {
  display: none;
  overflow: hidden;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .continuePayment.AddPaymentShowBox .amount-field .input-group {
  width: auto;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .continuePayment.AddPaymentShowBox .amount-field .input-group .form-control {
  line-height: 22px;
}

.webNewScreenUI .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .continuePayment .closeBox {
  cursor: pointer;
  color: #333;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  margin-top: -10px;
}

.webNewScreenUI.webNewScreenUISecond {
  margin-top: 20px;
  max-width: 100%;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info {
  flex-wrap: wrap;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info.highlight:before {
  height: 5px;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment {
  margin-left: -6px;
  margin-right: -6px;
  flex: 100%;
  max-width: 400px;
  margin: auto;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control {
  margin-top: 18px;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn.right .text {
  margin-left: 10px;
  margin-right: 0;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn:focus {
  outline: none !important;
  box-shadow: none;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn:active {
  outline: none !important;
  box-shadow: none;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn .text {
  margin-top: 4px;
  margin-right: 10px;
  color: #000;
  font-size: 12px;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .btn i {
  font-size: 26px;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group {
  width: 150px;
  filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.1));
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control {
  border: none;
  color: var(--Primary-Dark, #45494D);
  background: var(--White, #FFF);
  padding-left: 0px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  height: 33.2px;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control:focus {
  outline: none !important;
  box-shadow: none;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group .form-control:active {
  outline: none !important;
  box-shadow: none;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-prepend .input-group-text {
  border-radius: 15px 0px 0px 15px;
  border: none;
  background: #fff;
  padding-top: 7px;
  padding-right: 4px;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--Primary-Dark, #45494D);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group .input-group-append .input-group-text {
  border: none;
  border-radius: 0px 15px 15px 0px;
  background: rgba(0, 134, 197, 0.5);
  color: var(--White, #FFF);
  font-family: SF UI Display, Helvetica, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group input::-webkit-outer-spin-button,
.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .amount-control-inner .amount-field .input-group input[type=number] {
  -moz-appearance: textfield;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .show-error {
  margin-top: 14px;
  text-align: center;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .amount-control .show-error .error {
  font-family: "SF UI Display", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #FF647C;
}

.webNewScreenUI.webNewScreenUISecond .round-white-box.round-white-box-charity .outer-form-wrapper-charity .inner-form-wrapper .detail-info-wrapper .detail-info .continuePayment .submit-btn {
  border-radius: 15px !important;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 15px !important;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  padding: 7px;
}

/*
*****    Media Query     *****
*/
@media (max-width: 575.98px) {
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .logo-box {
    display: none;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .mobile-logo {
    display: block;
    position: absolute;
    left: 20px;
    top: 44%;
    transform: translateY(-50%);
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .mobile-logo img {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box {
    padding-bottom: 12px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper {
    margin-top: 16px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    margin-top: 30px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields {
    flex-direction: column !important;
    align-items: center;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation .purpose-dropdown-wrapper {
    max-width: 95%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .para-text {
    width: 98%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box {
    flex-direction: column !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .date-field {
    max-width: 100% !important;
    margin-top: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-fields-box .date-field.end-date {
    margin-top: 0px !important;
    margin-left: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .user-name-fields {
    flex-direction: column;
    margin-top: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .user-name-fields .form-group {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .btn {
    width: 160px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .btn#back-btn {
    width: 100px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .expiry-and-icon {
    display: none;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .btn {
    margin-top: 5px;
  }
}

.updateModal.modal .modal-content {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.updateModal.modal .modal-content .modal-header {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
  align-items: center;
  justify-content: flex-end;
}

.updateModal.modal .modal-content .modal-header .modal-title {
  padding-left: 0;
  margin: 0;
  background: none;
  font-size: 16px;
  font-family: "SF UI Display", Helvetica, sans-serif;
}

.updateModal.modal .modal-content .modal-header .close {
  border: none;
}

.updateModal.modal .modal-content .modal-header .close span {
  font-size: 34px;
  color: #000;
}

.updateModal.modal .modal-content .modal-body {
  padding: 2rem;
  font-family: "SF UI Display", Helvetica, sans-serif;
}

.updateModal.modal .modal-content .modal-footer {
  padding: 0.75rem;
}

.updateModal.modal .modal-content .modal-footer .btn {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading {
    font-size: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .logo-box {
    display: none;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .mobile-logo {
    display: block;
    position: absolute;
    left: 20px;
    top: 44%;
    transform: translateY(-50%);
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .mobile-logo img {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box {
    padding-bottom: 30px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper {
    margin-top: 16px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .number-fields .form-group .input-group {
    height: 80px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation {
    width: 95%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .para-text {
    width: 98%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-field {
    max-width: 100%;
    margin-top: 30px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .btn {
    margin-top: 10px;
    height: auto;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page1 {
    margin-top: 0px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .card-wrapper .card-header__right .expiry-and-icon {
    display: none;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side {
    padding: 20px 18px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation {
    margin-top: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation p {
    padding-right: 0px;
    text-align: center !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side img {
    display: none;
  }
  .wrapper.dollar-a-day-page .continuePayment {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .wrapper.dollar-a-day-page .addCheck {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading {
    font-size: 25px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .logo-box {
    display: none;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .mobile-logo {
    display: block;
    position: absolute;
    left: 20px;
    top: 44%;
    transform: translateY(-50%);
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading .mobile-logo img {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box {
    padding-bottom: 36px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper {
    margin-top: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields {
    padding: 0px 26px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation {
    width: 70%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .para-text {
    width: 90%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-field {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .btn {
    width: 160px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 .form-fields .btn#back-btn {
    margin-right: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .btn {
    margin-top: 16px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side {
    padding: 20px 18px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation {
    margin-top: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation p {
    padding-right: 0px;
    text-align: center !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side img {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .webNewRightText {
    width: 255px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .top-heading {
    font-size: 30px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .total-daily-donation {
    width: 50%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .para-text {
    width: 70%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page .form-fields .date-field {
    max-width: 100%;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .round-white-box .outer-form-wrapper .inner-form-wrapper .form-page.page2 {
    padding-top: 0px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side {
    padding: 20px 18px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation {
    margin-top: 20px;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side .quotation p {
    padding-right: 0px;
    text-align: center !important;
  }
  .wrapper.dollar-a-day-page .page-outer-box .page-content-box .inner-row .left-side img {
    max-width: 90%;
  }
}

.alertModal .modal-header .close {
  margin-left: auto;
}

.alertModal .modal-content {
  min-height: 160px;
}

.alertModal .modal-body {
  text-align: center;
  font-family: "SF UI Display", Helvetica, sans-serif;
}

.popop__trigger {
  margin: 10rem auto;
  width: 200px;
  display: block;
  text-align: center;
}

.popup__container {
  margin: auto;
  padding: 1rem;
  width: 300px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #08AEEA;
  padding: 10px;
}

.popup__message {
  padding: 1rem;
  line-height: 1.4;
}

/*
|----------------------------------------
| Popup alert component styles
|----------------------------------------
*/
.popup {
  background: rgba(34, 34, 34, 0.45);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
}

.popup--is-visible {
  visibility: visible;
  opacity: 1;
}

.popup__container {
  background: #fff;
  position: relative;
  transform: translate(0, -2.5rem);
  /* transform: translate3d(0, -2.5rem, 0);		/* Use this declaration if you want to force hardware acceleration */
  /* backface-visibility: hidden;  			      /* Use this declaration if you want to force hardware acceleration */
  transition: transform 0.4s;
}

.popup__container-is-lower {
  transform: translate(0, 0);
  /* transform: translate3d(0, 0, 0);					/* Use this declaration if you want to force hardware acceleration */
  /* backface-visibility: hidden;  			  		/* Use this declaration if you want to force hardware acceleration */
}

/*
|----------------------------------------
| Styles from a separate, independent component (CSS close button) https://codepen.io/diptajbasu/pen/YyeRdr
| are mixed into this component
|----------------------------------------
*/
.popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.875rem;
  height: 1.875rem;
}

.popup__close::before,
.popup__close::after {
  background: #222;
  content: '';
  position: absolute;
  top: 0.875rem;
  width: 1.625rem;
  height: 0.1875rem;
  /* Thickness of lines. 3px / 16 = 0.1875rem */
}

.popup__close::before {
  transform: rotate(45deg);
  left: 0.125rem;
}

.popup__close::after {
  transform: rotate(-45deg);
  right: 0.125rem;
}

/* Make text invisible but allow screen readers to know it exists */
.invisible-text {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}
