:root {
    --primary-color: #ff3ea5;
    --primary-rgb-color: rgb(255, 62, 165);
    --primary-hover-color: #921557;
    --secondary-color: #282828;
    --secondary-rgb-color: rgb(40, 40, 40);
    --secondary-transparent-color: rgba(40, 40, 40, 0.7);
    --light-color: #ffffff;
    --gray-color: #c2c2c2;
    --light-gray-color: #f0f0f0;
    --disabled-color: #727272;

    --font-awesome: "Font Awesome 6 Pro";

    --font-size-xxl: 2.75rem;
    --font-size-xl: 1.75rem;
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.75rem;
    /*--font-size-h2: 1.5rem;*/
    --font-size-h3: 1.25rem;
    --font-size-h4: 1rem;
    --font-size-h5: .938rem;
    --font-size-normal: .875rem;
    --font-size-xxs: .813rem;
    --font-size-xs: .75rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --font-size-xxl: 4.5rem;
    --font-size-xl: 3rem;
    --font-size-h1: 2.25rem;
    --font-size-h2: 2.25rem;
    /*--font-size-h2: 1.75rem;*/
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1rem;
    --font-size-normal: 1rem;
    --font-size-xxs: .875rem;
    --font-size-xs: .813rem;
  }
}

html,
body{
    min-height: calc(100vh - 50px);
    height: 100%;
}

body{
    position: relative;
    font-size: var(--font-size-normal);
    padding-top: 78px;
}
body * {
    font-family: 'Poppins', serif;
}

label{
    color: var(--secondary-color);
    font-weight: bold;
    display: block;
}

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

ul{
    padding-left: 0;
    margin: 0;
}

video{
    max-width: 100%;
}

iframe{
    border: none;
}

.noScroll{
    overflow: hidden;
}
.overFlowY{
    overflow-y: auto;
}
.pointer{
    cursor: pointer;
}
.disabled{
    cursor: auto;
}
.boldText{
    font-weight: bold;
}
.bsAspectRatioContainer {
    position: relative;
    width: 100%;
}
.bsAspectRatioContainer::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.bsAspectRatioContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
*   Font Sizes
 */
h1 {
    font-size: var(--font-size-h1);
}
h2 {
    font-size: var(--font-size-h2);
}
h3 {
    font-size: var(--font-size-h3);
}
h4 {
    font-size: var(--font-size-h4);
}
h5 {
    font-size: var(--font-size-h5);
}
.bsFontsizeXXL {
    font-size: var(--font-size-xxl);
}
.bsFontsizeXL {
    font-size: var(--font-size-xl);
}
.bsFontsizeH1 {
    font-size: var(--font-size-h1);
}
.bsFontsizeH2 {
    font-size: var(--font-size-h2);
}
.bsFontsizeH3 {
    font-size: var(--font-size-h3);
}
.bsFontsizeH4 {
    font-size: var(--font-size-h4);
}
.bsFontsizeH5 {
    font-size: var(--font-size-h5);
}
.bsFontsizeNormal {
    font-size: var(--font-size-normal);
}
.bsFontsizeXXS {
    font-size: var(--font-size-xxs);
}
.bsFontsizeXS {
    font-size: var(--font-size-xs);
}

/*
*   Colors
 */
.bsPrimaryText{
    color: var(--primary-color) !important;
}
.bsPrimaryBg{
    background: var(--primary-color) !important;
}
.bsSecondaryText{
    color: var(--secondary-color) !important;
}
.bsSecondaryBg{
    background: var(--secondary-color) !important;
}
.bsLiteText {
    color: var(--light-color) !important;
}
.bsLiteBg{
    background: var(--light-color) !important;
}
.bsGrayBg{
    background: var(--gray-color) !important;
}
.bsLightGrayBg{
    background: var(--light-gray-color) !important;
}

/*
*   Container
*/
.bsContainer{
    max-width: 1200px;
    margin: 20px auto;
    width: auto !important;
    position: relative;
}
.bsMinHeightContainer{
    min-height: calc(100% - 71px);
}
.bsSmallContainer{
    max-width: 600px;
    margin: 0 auto;
    width: auto !important;
}
.bsMediumContainer{
    max-width: 1024px;
    margin: 0 auto;
    width: auto !important;
}

/*
*   Tooltip
 */
.tooltip{
    z-index: 4002;
}
.tooltip-inner {
    font-size: 12px;
    background: var(--secondary-color);
}
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
    content: "";
    border-width: 5px 5px 0;
    border-top-color: var(--secondary-color);
}
.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
    content: "";
    border-width: 5px 5px 5px 0;
    border-right-color: var(--secondary-color);
}
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
    content: "";
    border-width: 0 5px 5px;
    border-bottom-color: var(--secondary-color);
}
.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
    right: 0;
    content: "";
    border-width: 5px 0 5px 5px;
    border-left-color: var(--secondary-color);
}

 /*
*   Spaces
 */
.noMargin{
    margin: 0 !important;
}

.noPadding{
    padding: 0 !important;
}

/*
*   Buttons
 */
a {
    display: inline-block;
    color: var(--light-color);
}
a:hover{
    color: var(--secondary-color);
    text-decoration: none;
}
.bsLink{
    display: block;
}

.bsSolidBtn{
    background: var(--light-color) !important;
    border-color: var(--light-color) !important;
    color: var(--primary-color);
}
.bsIconBtn{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding: 0 !important;
    border: 0 !important;
    background: var(--light-color);
    border-color: var(--light-color);
    color: var(--secondary-color);
}
.bsIconBtn:hover{
    color: var(--primary-color) !important;
}
.btn-info.disabled {
    background: var(--disabled-color);
    border-color: var(--disabled-color);
}
.btn-link {
    text-decoration: none;
    color: var(--primary-color);
}
.btn-link:hover {
    text-decoration: none;
    color: var(--primary-hover-color);
}
.btn-primary{
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.btn-primary.bigBtn{
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
}
.btn-primary:hover{
    background-color: var(--primary-hover-color) !important;
    border-color: var(--primary-hover-color) !important;
}
.btn-secondary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}
.btn-danger{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--light-color) !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    background-color: var(--primary-hover-color) !important;
    border-color: var(--primary-hover-color) !important;
}
.btn-dark{
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--light-color) !important;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active{
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.bsSectionBtns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.bsSectionBtns .btn {
    border-radius: unset;
    width: 225px;
}

.bsHideInput {
    display: none;
}

.bsInputBtn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.bsSquareMediumBtn{
    width: 68px;
    height: 68px;
}

/*
*   Direction / Position
 */
.bsRelative{
    position: relative;
}
.bsAbsolute{
    position: absolute;
}
.bsPositionStatic{
    position: static !important;
    transform: initial !important;
}
.bsPositionFixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bsPositionFixedCenter{
    position: Fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bsPositionAbsolute{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bsPositionFixedFullPage{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 100%;
    max-width: 100% !important;
    width: 100% !important;
}
.bsPositionCenter{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bsPositionTopCenter{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.bsPositionTopLeft{
    position: absolute;
    top: 0;
    left: 0;
}
.bsPositionTopRight{
    position: absolute;
    top: 0;
    right: 0;
}
.bsPositionBottomCenter{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.floatLeft{
    float: left;
}
.floatRight{
    float: right;
}

/*
*   Display
 */
.hide{
    display: none !important;
}
.desktopHide{
    display: none;
}
.block{
    display: block;
}
.inlineBlock{
    display: inline-block;
}
.bsContentMinHeight {
    min-height: calc(100% - 79px);
}
.bsRowMinHeight {
    flex-grow: 1;
}
.opacityNone{
    opacity: 0;
}

/*
*   Sizes
 */
.bsInitialWidth{
    width: initial;
}
.fullWidth{
    width: 100% !important;
}
.halfWidth{
    width: 50% !important;
}
.maxWidth{
    max-width: 100% !important;
}
.fullHeight{
    height: 100% !important;
}
.bsThumbnail{
    max-width: 75px;
}
.bsLargeThumbnail{
    max-width: 300px;
}
.bsMediumThumbnail{
    max-width: 200px;
}
.bsSmallThumbnail{
    max-width: 120px;
}

/*
*   Columns
 */
.bsColsWrap{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.bsColsWrap.bsGap5{
    gap: 5rem;
}
.bsColsWrap .bsCol {
    flex: 1;
}
.bsColsWrap .bsCol.centerVertically {
    align-self: center;
}

/*
*   Align
 */
.textCenter{
    text-align: center;
}

/*
*   Section Title
 */
.bsFwSection {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}
.bsSection {
    padding: 1.2rem;
    position: relative;
}
.bsSection .bsSectionHeading {
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.bsSection .bsSectionSubHeading {
    margin-bottom: 1rem;
}
.bsSection .bsSectionText:not(:last-child) {
    margin-bottom: 1rem;
}
.bsSectionInner {
    padding-bottom: 1rem;
}
.bsSectionInner p strong {
    text-decoration: underline;
}
.bsSectionInner p a {
    font-weight: bold;
    text-decoration: underline;
    color: inherit;
}
.bsSectionInner p a:hover {
    color: var(--primary-color);
}
.bsSectionInner ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

/*
 * Animations
*/
.animated  {
  -webkit-animation-duration : 2500ms !important;
  animation-duration : 2500ms !important;
  -webkit-animation-fill-mode : both !important;
  animation-fill-mode : both !important;
}

.fadeOut  {
  -webkit-animation-name : fadeOut;
  animation-name : fadeOut;
  animation-duration: 2500ms;
}
@-webkit-keyframes  fadeOut  {
  0% {
    opacity : 1;
  }
  100% {
    opacity : 0;
  }
}
@keyframes  fadeOut  {
  0% {
    opacity : 1;
  }
  100% {
    opacity : 0;
  }
}

.fadeIn  {
  -webkit-animation-name : fadeIn;
  animation-name : fadeIn;
  animation-duration: 2500ms;
}
@-webkit-keyframes  fadeIn  {
  0% {
    opacity : 0;
  }
  100% {
    opacity : 1;
  }
}
@keyframes  fadeIn  {
  0% {
    opacity : 0;
  }
  100% {
    opacity : 1;
  }
}
.riseUp  {
    -webkit-animation-name : riseUp;
    animation-name : riseUp;
    animation-duration: 500ms;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
@keyframes riseUp {
    0% {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

.bsAnimatePulse {
    animation-name: pulse;
    animation-duration: 0.85s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}
@-webkit-keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.2, 1.2, 1.2);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.2, 1.2, 1.2);
    }
    to {
        transform: scaleX(1);
    }
}

.bsAnimatePulse-2 {
    animation-name: pulse-2;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
}
@-webkit-keyframes pulse-2 {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        transform: scaleX(1);
    }
}
@keyframes pulse-2 {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        transform: scaleX(1);
    }
}

.bsBreadcrumbList {
    list-style: none;
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 0.4rem 1.2rem;
    background-color: var(--light-gray-color);
}
.bsBreadcrumbList li {
    display: flex;
    align-items: center;
}
.bsBreadcrumbList li a {
    color: var(--secondary-color);
}
.bsBreadcrumbList li a img {
    width: 40px;
}
.bsBreadcrumbList li span {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--primary-color);
}
.bsBreadcrumbList li span::before {
    content: '\f105';
    font-family: var(--font-awesome);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--secondary-color);
}

 /*
*   Pagination
 */
.bsCustomPaginationWrp .pagination .page-item .page-link {
    padding: 1rem;
    color: var(--secondary-color);
}
.bsCustomPaginationWrp .pagination .page-item.active .page-link {
    color: var(--light-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.bsCustomPaginationWrp .pagination .page-item:first-child .page-link,
.bsCustomPaginationWrp .pagination .page-item:last-child .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.6rem;
    padding: 0 1rem;
    background: var(--gray-color);
    border-color: var(--gray-color);
    color: var(--light-color);
}

  /*
*   Form
 */

form button{
    border: none !important;
    cursor: pointer;
    outline: none !important;
}
form button:focus{
    outline: none !important;
    box-shadow: none !important;
}
.form-control,
input[type=text],
input[type=email],
input[type=password],
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
select,
select option{
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .2rem rgba(40, 40, 40, .25);
}
textarea{
    width: 100%;
    resize: none;
    height: auto;
    max-height: 150px;
}
.bsAdvanceEditorWrap a{
    color: var(--primary-color);
}

.bsForm a{
    color: var(--light-color);
}
.bsForm a:hover{
    color: var(--light-gray-color);
}
.bsFormColWrp {
    position: relative;
}
.bsFormColWrp::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-45%, -50%);
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    z-index: 1;
}
.bsFormColWrp .bsSiteLogo {
    color: var(--primary-color);
}
.bsFormColWrp .bsSiteLogo img {
    max-width: 100px;
}
.bsFormColWrp .bsSiteLogo .bsSiteName {
    font-weight: 600;
    font-size: var(--font-size-h1);
}
.bsFormColWrp .bsFormText {
    font-size: var(--font-size-xxs);
}
.bsFormColWrp .bsLink {
    display: inline-block;
    font-weight: bold;
    color: var(--primary-color);
}
.bsFormColWrp .bsLink:hover {
    color: var(--secondary-color);
}
.bsFormColWrp .bsFormFieldNote {
    font-size: var(--font-size-xs);
}
.bsFormColWrp .form-row .form-group > div {
    position: relative;
}
.bsFormColWrp .form-row .form-control:not(textarea) {
    height: 40px;
}
.bsFormColWrp .form-row .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.bsFormColWrp .form-row .btn:disabled {
    cursor: not-allowed;
}
.bsFormColWrp .form-row .btn-primary:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}
.bsPasswordToggle{
    position: absolute;
    font-size: 20px;
    top: 85%;
    right: 15px;
    transform: translateY(-85%);
    cursor: pointer;
    color: var(--secondary-color);
}
.bsFormButtonGroupWrp {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bsFormButtonGroupWrp .btn {
    margin-top: 0;
}

/*
*   Checked/Marked
 */
.bsCurrentHover{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}
.bsSelected{
    display: none;
}
.bsSelected:before,
.bsCurrentHover::before,
.bsInnerOverlay:hover::before{
    font-family: var(--font-awesome);
    font-weight: 900;
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 36px;
    height: 36px;
    color: var(--primary-color);
    background: var(--light-color);
    font-size: 1.2rem;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
}
.selected .bsSelected,
.bsCropperSelected .bsSelected{
    display: inline-block !important;
}

.bsCurrentHover{
    display: inline-block;
    background: transparent;
}
.bsCurrentHover:before{
    font-family: var(--font-awesome);
    content:"\f067";
    font-size: 2rem;
    background: transparent;
    color: var(--light-color);
}
.bsUploaded .bsCurrentHover,
.bsPreUploaded .bsCurrentHover{
    display: none;
}
.bsUploaded:hover .bsCurrentHover,
.bsPreUploaded:hover .bsCurrentHover{
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
}
.bsUploaded .bsCurrentHover:before,
.bsPreUploaded .bsCurrentHover:before{
    font-family: var(--font-awesome);
    content: "\f044";
    color: var(--primary-color);
}


/*
*   Accordions
 */
.bsAccordions .card {
    border: unset;
}
.bsAccordions .card .card-header {
    padding: .75rem 0;
    border-radius: 0;
    background-color: transparent;
    border-color: var(--secondary-color);
}
.bsAccordions .card .card-header > button {
    width: 100%;
    text-align: left;
    padding: 0;
    font-weight: bold;
    color: var(--secondary-color);
}
.bsAccordions .card .card-header > button:not(.collapsed) {
    color: var(--primary-color);
}
.bsAccordions .card .card-header > button:before {
    float: left !important;
    font-family: FontAwesome;
    content:"\f068";
    padding-right: 5px;
}
.bsAccordions .card .card-header > button.collapsed:before {
    float: left !important;
    content:"\f067";
}
.bsAccordions .card .card-header > button:hover,
.bsAccordions .card .card-header > button:active,
.bsAccordions .card .card-header > button:focus  {
    text-decoration:none;
    outline: unset;
    box-shadow: unset;
    color: var(--primary-color);
}
.bsAccordions .card .card-body {
    padding: .75rem 0;
}

 /*
*   Tabs
 */
.bsTabs {
    gap: 10px;
    padding-top: 8px;
}
.bsTabs a {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    border: 2px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}
.bsTabs a i {
    margin-right: 5px;
    font-size: 24px;
}
.bsTabs a:hover:not(.active) {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.bsTabs a.active {
    border-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    background: var(--primary-color) !important;
}
 /*
*   Table
 */
.table {
    width: 100%;
    table-layout: fixed;
}
.table th {
    color: var(--secondary-color);
    font-weight: bold;
}
.table td {
    vertical-align: top;
}
.table.normalTable {
    table-layout: initial;
}
.bsTableWrp {
    width: 100%;
}
.bsTableWrp tr th,
.bsTableWrp tr td {
    padding: 0.5rem;
    border: 1px solid #ced4da;
}

/*
*   Alert
 */
.bsAlertWrap{
    position: fixed;
    top: 20px;
}
.alert{
    font-size: 14px;
}
.alert .fusion-alert-content {
    padding-left: 5px;
}
.alert ul{
    margin-bottom: 0;
    padding: 0;
}
.alert ul li{
    list-style: none;
}
.alert-danger{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}
p.bsAlert{
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-weight: bold;
}

.bsNote{
    font-size: 13px;
    color: var(--primary-color);
}

/*
*   Feedback/Alert Message
 */
.bsFeedbackMessageWrap {
    position: fixed;
    bottom: 30px;
    left: 10px;
    width: 300px;
    z-index: 4001;
}
.bsFeedbackMessageWrap .bsFeedbackMessage {
    display: block;
    margin-top: 10px;
    position: relative;
    left: -300px;
    opacity: 0;
    overflow: hidden;
    /*word-break: break-all;*/
    background: #1F1F1F;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 4px;
    color: var(--light-color);
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);

    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackFail {
    background: var(--primary-color);
}

.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackSuccess {
    background: var(--secondary-color);
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackHide {
    -webkit-transform: translate(300px, 0);
    -moz-transform: translate(300px, 0);
    -ms-transform: translate(300px, 0);
    -o-transform: translate(300px, 0);
    transform: translate(300px, 0);
    opacity: 0;
}

.bsFeedbackHide {
    -webkit-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    /* easeInBack */
}
.bsFeedbackMessageWrap .bsFeedbackMessage.bsFeedbackShow {
    left: 0;
    opacity: 1;
}
.bsFeedbackMessageWrap .alert .btn {
    margin-top: 10px;
}

/*
*   Loading Spinner
 */
.bsSpinnerOverlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10022;
}
.bsSpinner {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10023;
}
.bsSpinner img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10023;
    width: 88%;
}
.bsSpinner::after {
    content: " ";
    display: block;
    width: 110px;
    height: 110px;
    margin: 5% auto;
    border-radius: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: var(--light-color) transparent var(--light-color) transparent;
    animation: bsSpinnerFrame 1.2s linear infinite;
}
.bsSpinnerText{
    color: var(--light-color);
    z-index: 99999;
    margin-top: 80px;
}
@-webkit-keyframes bsSpinnerFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bsSpinnerFrame {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*
*   Content Header
 */

.bsContentHeader{
    display: flex;
    width: 100%;
    gap: 0.15rem;
    margin-bottom: 20px;
}

.bsContentHeader a{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 0.8rem 2rem;
    font-size: 18px;
    background: var(--secondary-color);
    color: var(--light-color);
}
.bsContentHeader a:hover,
.bsContentHeader a.active{
    background: var(--primary-color);
}

/*
*   Switch Button
 */
div.bsSwitcher{
    display: inline-block;
}
div.bsSwitcher + div.bsSwitcher {
    margin-top: 10px;
}
div.bsSwitcher label {
    padding: 0;
    margin: 0;
}
div.bsSwitcher label * {
    vertical-align: middle;
}
div.bsSwitcher label input {
    display: none;
}
div.bsSwitcher label input + span {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
div.bsSwitcher label input + span small {
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    left: 0;
}
div.bsSwitcher label input:checked + span {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
div.bsSwitcher label input:checked + span small {
    left: 50%;
}


/*
*   Global Overlay
 */
.platoGalleryGlobalOverlay{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1199;
    background: rgba(0, 0, 0, 0.7);
}
.platoGalleryGlobalOverlay.bsLoadingOverlay{
    z-index: 3;
}


/*
*   Tabs
 */
.bsNavTabs {
    padding: 1rem 1rem 0;
    gap: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}
.bsNavTabs .nav-link {
    font-weight: bold;
    border-radius: 0.8rem 0.8rem 0 0;
    border: none;
    padding: 0.4rem 1.5rem;
    font-size: var(--font-size-xs);
    background-color: var(--secondary-color);
    color: var(--light-color);
}
.bsNavTabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/*
*   Checkbox
 */
.bsCheckBox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    font-weight: normal;
}
.bsCheckBox input {
    visibility: hidden;
    cursor: pointer;
}
.bsCheckBoxMark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--gray-color);
}
.bsCheckBoxMark:after {
    content: "";
    position: absolute;
    display: none;
}
.bsCheckBox .bsCheckBoxMark:after {
    left: 10px;
    top: 4px;
    width: 7px;
    height: 14px;
    border: solid var(--light-color);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.bsCheckBox .bsCheckBoxMark.medium:after{
    left: 15px;
    top: 7px;
    width: 9px;
    height: 20px;
}
.bsCheckBox input:checked ~ .bsCheckBoxMark:after{
    display: block;
}
.bsCheckBox:hover input ~ .bsCheckBoxMark {
    background-color: gray;
}
.bsCheckBox input:checked ~ .bsCheckBoxMark {
    background-color: var(--primary-color) !important;
}

/*
*   RadioBox
 */
.bsRadioBox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    margin-right: 25px;
}
.bsRadioBox:not(:first-of-type) {
    margin-left: 15px;
}
.bsRadioBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.bsRadioBox .bsRadioBoxMark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: var(--gray-color);
}
.bsRadioBox input:checked ~ .bsRadioBoxMark {
  background-color: var(--primary-color);
}
.bsRadioBox .bsRadioBoxMark:after {
  content: "";
  position: absolute;
  display: none;
}
.bsRadioBox input:checked ~ .bsRadioBoxMark:after {
  display: block;
}
.bsRadioBox .bsRadioBoxMark:after {
    top: 8px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-color);
}
.bsRadioBoxWhite .bsRadioBoxMark  {
    background: var(--light-color);
}

/*
*   Video Player
 */
.bsVideoControlWrap{
    top: initial;
    z-index: 3;
}
.bsVideoControlWrap span{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
    padding: 0;
    border: 1px solid transparent; !important;
}
video::-webkit-media-controls-enclosure {
    display:none !important;
}

.swiper-button-next, .swiper-button-prev{
    color: var(--secondary-color);
}


@media only screen and (max-width: 1200px) and (min-width: 769px)  {
    .bsFormColWrp .bsFormLeftCol,
    .bsFormColWrp .bsFormRightCol {
        padding: 30px 20px;
    }
}
@media screen and (max-width: 991px) {
    .desktopHide{
        display: block;
    }
    .tabHide{
        display: none;
    }
    .bsFormColWrp .bsSiteLogo img {
        max-width: 65px;
    }
    .bsFormColWrp .bsFormLeftCol,
    .bsFormColWrp .bsFormRightCol {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mobileHide{
        display: none;
    }
    .bsContentMinHeight {
        min-height: calc(100% - 202px);
    }

    .bsFormColWrp {
        flex-direction: column;
    }
    .bsFormColWrp::after {
        display: none;
    }
    .bsFormColWrp .bsFormLeftCol {
        display: none;
    }
    .bsFormColWrp .bsFormLeftCol,
    .bsFormColWrp .bsFormRightCol {
        width: 100%;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .bsContentMinHeight {
        min-height: auto;
    }
    .table {
        border: none !important;
    }
    .table:not(.tableMobileNoPadding) thead {
        display: none;
    }
    .table:not(.tableMobileNoPadding) tr {
        margin-bottom: 20px;
        display: block;
        /*
        border-bottom: 2px solid #ddd;
        box-shadow: 2px 2px 1px #dadada;
        */
    }
    .table:not(.tableMobileNoPadding) td {
        display: inline-block;
        width: 100%;
        text-align: left;
        position: relative;
        padding-left: 25%;
    }
    .bsTableResponsive td::before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        width: 25%;
        position: absolute;
        left: 10px;
        color: var(--secondary-color);
    }
    .bsTableResponsive td:last-child:before{
        content: none !important;
    }
    .bsTableResponsive td:last-child{
        text-align: center;
    }
    .table.tableMobileNoPadding label {
        margin-bottom: 0;
    }
    .table.tableMobileNoPadding th,
    .table.tableMobileNoPadding td {
        vertical-align: middle;
    }
    .bsContentHeader a{
        display: inline-block;
        width: 100%;
        margin-bottom: 2px;
    }

    .bsFeedbackMessageWrap {
        width: 90%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .bsSection .bsSectionText br {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    .bsSectionBtns {
        flex-direction: column;
    }
}
@media screen and (max-width: 400px) {
    .bsNavTabs {
        padding: 0.5rem 0.3rem 0;
        gap: 0.4rem;
    }
    .table.tableMobileNoPadding th,
    .table.tableMobileNoPadding td {
        padding: 0.75rem 0.25rem;
    }
}
@media screen and (max-width: 320px) {
    .bsNavTabs .nav-link {
        padding: 0.4rem 1rem;
    }
}
