:root {
    /***Color***/
    --theme-color: #000000;
    --pale-white: #f2efea;
    --dark-blue: #304651;
    --error-color: #b91e1e;
    --error-background: #f8d7da;
    --sucess-color:#0f5132;
    --sucess-background: #d1e7dd;
    --anchor-color:#000000;
    --primary-color: #2b303b;
    --secondary-color:#212121;
    --white-color: #ffffff;
    --text-color: #4b4b4b;
    --text-color-secondary: #929aac;
    --border-color: #21212124;
    --border-secondary-color: #08070724;
    --checkbox-border-color: #c9c9c9;
    --page-background-color: #f5f6f8;
    --copyright-border-color: #e0e0e0;
    --alert-background: #cfe2ff;
    --alert-text-color: #084298;


    --text-center:center;
    --text-left:left;
    --text-right:right;

    /*Conatinew width*/
    --container-width: 1140px;
    --big-container-width: 1446px;


    /***Font-Family***/
    --primary-font: 'Roboto-Regular', sans-serif;
    --secondary-font: 'Roboto-Regular', sans-serif;
    --tertiary-font: 'Roboto-Regular', sans-serif;

    /***FONT SIZE***/
    --xx-large: 32px;
    --xx-line-height: 42px;
    --x-large:26px;
    --x-line-height:36px;
    --normal-font:16px;
    --normal-line-height:26px;
    --paragraph-font:14px;
    --paragraph-line-height:20px;
    --small-paragraph-font:12px;
    --small-line-height:22px;
    --h1-font: 28px;
    --h1-line-height: 32px;
    --h2-font: 24px;
    --h2-line-height: 28px;


    /***Font Weight***/   
    --normal: 400;
    --semi-bold: 500;
    --bold: 700;

    /***Form ***/
    --form-group-padding: 5px 9px 4px 9px;
}

@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/Roboto-Regular.ttf') format("truetype");
}
@font-face {
	font-family: 'Caladea-Regular';
	src: url('../fonts/Caladea-Regular.ttf') format("truetype");
}
@font-face {
	font-family: 'Caladea-Bold';
	src: url('../fonts/Caladea-Bold.ttf') format("truetype");
}

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

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    font-family: 'Roboto-Regular', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Caladea-Regular', sans-serif;
    margin: 10px 0;
    color: var(--theme-color);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-weight: normal;
}

p {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-line-height);
    letter-spacing: normal;
    font-weight: normal;
}

h1 {
    font-size: var(--h1-font);
    line-height: var(--h1-line-height);
}

h2 {
    font-size: var(--h2-font);
    line-height: var(--h2-line-height);
}

.small {
    font-size: var(--small-paragraph-font);
    letter-spacing: normal;
    line-height: var(--small-line-height);
}

.text-white {
    color: var(--white-color);
}

.text-black {
    color: #000000;
}

.text-green {
    color: #417d40;
}

.semi-bold {
    font-weight: var(--bold);
}


.text-center {
    text-align: var(--text-center);
}

.text-left {
    text-align: var(--text-left);
}

.text-right {
    text-align: var(--text-right);
}

hr {
    border-top: 1px solid var(--copyright-border-color);
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
}

.no-border {
    border: 0 !important;
}

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

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

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

/***Margin***/
.m-b-10 {
    margin-bottom: 10px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-t-100 {
    margin-top:100px;
}

.m-t-120 {
    margin-top:120px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-l-auto {
    margin-left: auto;
}

.m-b-30 {
    margin-bottom: 30px;
}

/***padding***/
.p-t-25 {
    padding-top: 25px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

/***Form***/
.form-group {
    margin-bottom: 10px;
}

.form-group.form-group-default {
    background-color: var(--white-color);
    position: relative;
    border: 1px solid var(--border-color);
    border-top-color: var(--border-secondary-color);
    border-radius: 2px;
    padding: var(--form-group-padding);
    overflow: hidden;
    width: 100%;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    cursor: text;
}

label,
input,
button,
select,
textarea {
    font-family: var(--font-family-primary);
    font-size: var(--paragraph-font);
    font-weight: normal;
    line-height: var(--paragraph-line-height);
}
button {
    border-radius: 50px !important;
}
.form-group label:not(.error) {
    color: var(--text-color);
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.form-check {
    position: relative;
    margin-bottom: 10px;
    padding-left: 0px;
}

.form-check label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    min-width: 18px;
    min-height: 18px;
    margin-bottom: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: border 140ms linear 0s, color 140ms linear 0s, background-color 140ms linear 0s;
}

.form-check label:before {
    top: 2px;
    border-radius: 3px;
    transition: border 140ms linear 0s, color 140ms linear 0s, background-color 140ms linear 0s;
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0px;
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
    background-color: var(--white-color);
    border: 1px solid var(--checkbox-border-color);
}

.form-check input[type="checkbox"] {
    position: absolute;
    margin: 0;
    top: 3px;
    z-index: -1;
    width: 16px;
    height: 16px;
    opacity: 0;
}

.form-check input[type="checkbox"]+label::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    border-right: 0 solid transparent;
    border-bottom: 0 solid transparent;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

.form-check input[type="checkbox"]:checked+label::after {
    content: "";
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAAQAgMAAADsa5zLAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAMUExURUdwTHBwcG9vb3BwcBFjhIYAAAAEdFJOUwBG9tQE3MceAAAAVUlEQVQoz2NgGLKA0QGIDwDxBSCeAMEYgAWI2YCK2CagYgwgDcRSDhgYbAkKzsSKGdgakCyY6ADES7BiiCkgJ4PYyybgxAhQAsRZDrgxCpDEg4cAAAAp2ibhZRGLHgAAAABJRU5ErkJggg==) left center;
    background-size: 160px 16px;
    background-repeat: no-repeat;
    animation-name: checkbox-check;
    animation-duration: 320ms;
    animation-timing-function: steps(9);
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.form-group-default.focused label,
.form-group-default label.fade {
    opacity: 0.67;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: var(--small-paragraph-font);
    letter-spacing: normal;
}

.form-group-default+.error {
    margin-top: -10px;
    padding: 3px 7px 2px 4px;
    display: flex;
    letter-spacing: normal;
    animation-name: show-msg;
    animation-duration: 450ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-group-default+.error:after {
    content: "";
    width: 0%;
    position: absolute;
    height: 1px;
    background-color: #D83C31;
    top: -1px;
    right: 0px;
    animation-name: show-line;
    animation-delay: 300ms;
    animation-duration: 350ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}

.form-group.form-group-default:has(.frame--invalid) ::after {
    content: "";
    width: 0%;
    position: absolute;
    height: 1px;
    background-color: #D83C31;
    bottom: -4px;
    right: -9px;
    animation-name: show-linecard;
    animation-delay: 300ms;
    animation-duration: 350ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem 2.5rem 1rem;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    line-height: 1.3rem;
    font-size: 1rem;
    position: relative;
}

.alert-danger::before {
    content: url(../images/danger.svg);
    position: absolute;
    z-index: 99;
    left: 1rem;
}

.alert-success::before {
    content: url(../images/check-circle-fill.svg);
    position: absolute;
    z-index: 99;
    left: 1rem;
}
.alert.alert-info::before {
    content: url(../images/info-circle-fill.svg);
    position: absolute;
    z-index: 99;
    left: 1rem;
}
.error-mesg {
    font-size: var(--paragraph-font);
    color: var(--error-color);
    display: block;
}

.alert-danger {
    background-color: var(--error-background);
    color: var(--error-color);
    border-color: var(--error-background);
}

.alert-danger > a {
    color: var(--error-color);
    text-decoration: underline;
}

.alert-info {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-success {
    background-color: var(--sucess-background);
    color: var(--sucess-color);
    border-color: var(--sucess-background);
}

.success {
    font-size: var(--paragraph-font);
    color: var(--sucess-color);
}

button[disabled] {
    box-shadow: none;
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

label.error {
    font-size: var(--paragraph-font);
    color: var(--error-color);
    display: block;
}

span.loader {
    width: 15px;
    height: 15px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.form-horizontal .form-group input.form-control:disabled {
    background: var(--page-background-color);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes show-line {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes show-linecard {
    0% {
        width: 0%;
    }

    100% {
        width: 115%;
    }
}

@keyframes show-msg {
    0% {
        height: 0px;
        opacity: 0;
    }

    100% {
        height: 25px;
        opacity: 1;
    }
}

@keyframes checkbox-check {
    0% {
        background-position: 0px;
    }

    100% {
        background-position: -144px;
    }
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--white-color) inset !important;
}

.form-group-default .form-control {
    font-family: var(--font-family-primary);
    color: var(--secondary-color);
    width: 100%;
    outline: 0;
    padding: 6px 8px;
    line-height: 16px;
    font-size: 14px;
    font-weight: normal;
    vertical-align: middle;
    border: none;
    height: 25px;
    min-height: 25px;
    padding: 0;
    margin-top: -4px;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;

}

.form-group-default input::placeholder {
    opacity: 0.77;
    font-weight: 400;
}

.form-horizontal .form-group {
    border-bottom: 1px solid var(--copyright-border-color);
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 0;
}

.form-horizontal .form-group .form-control {
    width: 100%;
    background-color: var(--white-color);
    background-image: none;
    border: 1px solid var(--border-color);
    border-top-color: var(--border-secondary-color);
    font-family: var(--font-family-primary);
    -webkit-appearance: none;
    color: var(--secondary-color);
    outline: 0;
    padding: 12px 8px;
    line-height: 16px;
    font-size: var(--paragraph-font);
    font-weight: normal;
    vertical-align: middle;
    min-height: 32px;
    -webkit-transition: all 0.12s ease;
    transition: all 0.12s ease;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-transition: background 0.2s linear 0s;
    transition: background 0.2s linear 0s;
}

#subLoadingSpinner,
.loadingSpinner {
    background-image: url(../images/loading.gif);
    height: 154px;
    width: 154px;
    display: block;
    margin: 0 auto;
    z-index: 99999;
    background-repeat: no-repeat;
}

form.form-horizontal .form-group label.required {
    position: relative;
}

form.form-horizontal .form-group label.required:after {
    content: '*';
    font-family: var(--font-family-primary);
    font-size: var(--paragraph-font);
    font-weight: normal;
    line-height: var(--paragraph-line-height);
    text-align: right;
    position: absolute;
    right: 10px;
    color: var(--error-color);
}

/***Row***/
.hide,
.checkout-form p.success-payment-message,
body.user-not-subscribed .subscribed,
body.user-subscribed .unsubscribed {
    display: none !important;
}

.d-flex {
    display: flex;
}

.row {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start;
}

.full-height {
    height: 100% !important;
}

.spinner-height {
    height: 80vh !important;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

a, .link {
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-line-height);
    text-shadow: none;
    color: var(--anchor-color);
    transition: color 0.1s linear 0s, background-color 0.1s linear 0s, opacity 0.2s linear 0s;
    font-weight: 500;
    outline: 0;
    text-decoration: none;
}

.btn-lg {
    padding: 0px 12px;
    color: var(--white-color);
    background-color: var(--theme-color);
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-font);
    min-height: 35px;
    min-width: 35px;
    font-weight: 500;
    letter-spacing: -0.011em;
    cursor: pointer;
    border: none;
    border-radius: 50px;
}

.btn-lg:hover,
.btn-lg:focus,
.btn-lg:active {
    opacity: 0.8;
}


.link:hover,
.hover:hover,
a:hover,
a:focus,
a:active {
    opacity: 0.8;
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}

.underline {
    text-decoration: underline;
}
.logo {
    max-width: 150px;
}
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 10px;
}

img.logo {
    height: auto;
    width: auto;
    max-height: 65px;
    max-width: 200px;
}

button.profile-dropdown-toggle {
    width: 32px;
    height: 32px;
    display: block;
    padding: 0;
    border-radius: 100%;
    margin-left: 10px;
    cursor: pointer;
    position: relative;
    border: 2px solid var(--white-color);
}

.brand a {
    display: block;
    line-height: 0;
}

button.profile-dropdown-toggle:after {
    content: "";
    border-radius: 100%;
    height: 10px;
    width: 10px;
    background-color: #19AD79;
    position: absolute;
    bottom: -1px;
    right: 1px;
    border: 1px solid var(--white-color);
    opacity: 0.98;
}

button.profile-dropdown-toggle img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.menu-bar {
    float: right;
}
.menu-bar ul {
    display: flex;
    flex-flow: row nowrap;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    gap: 35px;
}

.menu-bar ul li {
    display: inline-flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.menu-bar ul li a,
.profile-name span {
    color: #000000;
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-line-height);
    text-transform: capitalize;
}

.menu-bar ul li.active a {
    color: #000000;
}
.header {
    display: block;
    height: auto;
    border-bottom: none;
    background-color: #ffffff;
    color: var(--text-color-secondary);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: +999;
}
.pull-bottom {
    display: none;
}
#indexCtr {
    padding-top: 50px;
}
@media(max-width: 990px) {
    .desktop-only {
        display: none;
    }
}

@media (max-width:767px) {

    .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-11,
    .col-md-12 {
        max-width: 100%;
        flex-basis: 100%;
    }

    .row {
        flex-wrap: wrap;
    }

    .form-horizontal .form-group {
        border-bottom: 0;
        padding-bottom: 0;
    }
    #content-body {
        padding-top: 20px;
    }
}



@media(max-width:991px) {
    span.menu-icon {
        position: relative;
        display: block;
        width: 24px;
        height: 18px;
        border: 2px solid var(--text-color-secondary);
        border-left: 0;
        border-right: 0;
        margin: 10px 0px;
    }

    span.menu-icon:before {
        content: '';
        width: 24px;
        height: 2px;
        border-top: 2px solid var(--text-color-secondary);
        position: absolute;
        top: 5.5px;
        left: 0;
    }

    .profile {
        position: relative;
    }

    .header-inner {
        align-items: center;
        padding-bottom: 10px;
    }

    .menu-bar {
        position: fixed;
        top: 0;
        bottom: 0;
        background-color: var(--primary-color);
        width: 270px;
        left: -270px;
        overflow-y: auto;
        -webkit-transition: -webkit-transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
        transition: transform 400ms cubic-bezier(0.05, 0.74, 0.27, 0.99);
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -webkit-perspective: 1000;
        flex-direction: column;
        z-index: 1;
    }

    .menu-bar.show {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -ms-transform: translate(100%, 0);
    }

    .menu-bar ul {
        display: flex;
        flex-flow: column nowrap;
        padding: 50px 20px;
        gap: 15px;
    }

    img.logo {
        height: 48px;
    }

    .horizontal-menu-backdrop {
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        z-index: 0;
        transition: opacity 0.3s ease;
        display: none;
    }

    .cross {
        position: absolute;
        top: 20px;
        left: 20px;
        cursor: pointer;
    }

    .cross img {
        width: 15px;
    }

}