@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype'), url('../fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    margin-bottom: env(safe-area-inset-bottom);
    max-height: calc(100vh - env(safe-area-inset-bottom, 0px) - env(safe-area-inset-top, 0px));
    overscroll-behavior: none;
}

html {
    overflow-x: hidden;
}
.header-inner
{
    padding: 10px 0px;
    z-index: 10;
}
.counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    display: inline-block;
    padding: 0 1.875rem;
    background: #efefef;
    border-radius: 10rem;
}

.counter .counter-minus,
.counter .counter-plus {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    position: absolute;
    top: 0;
    display: block;
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    border-radius: 50%;
    cursor: pointer;
}

.counter .counter-minus:hover,
.counter .counter-plus:hover {
    background: #d6d6d6;
}

.counter .counter-minus {
    left: 0;
}

.counter .counter-plus {
    right: 0;
}

.counter-value {
    width: 1.875rem;
    line-height: 1.875rem;
    text-align: center;
    font-family: Poppins;
    font-size: 1rem;
    color: #000;
    background: transparent;
    border: 0;
    -moz-appearance: textfield;
}

.counter-value::-webkit-outer-spin-button,
.counter-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.c-none {
    cursor: not-allowed;
}

input:disabled {
    background-color: #DDDD;
}

.has-error input,
.has-error input:focus,
.has-danger input,
.has-danger input:focus {
    border: 1px solid #F64E60;
}

.has-error span,
.has-danger .fv-help-block {
    color: #F64E60;
    font-size: 10px;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.42rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 500;
}

.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: #1c5085;
    background-color: #d7ebff;
    border-color: #c7e2ff;
}

.alert-primary hr {
    border-top-color: #aed5ff;
}

.alert-primary .alert-link {
    color: #13375b;
}

.alert-secondary {
    color: #77787c;
    background-color: #fafafc;
    border-color: #f7f8fb;
}

.alert-secondary hr {
    border-top-color: #e6e9f3;
}

.alert-secondary .alert-link {
    color: #5e5f62;
}

.alert-success {
    color: #0e6662;
    background-color: #d1f3f2;
    border-color: #bfefed;
}

.alert-success hr {
    border-top-color: #abeae7;
}

.alert-success .alert-link {
    color: #083937;
}

.alert-info {
    color: #472a83;
    background-color: #e7dcfe;
    border-color: #decefe;
}

.alert-info hr {
    border-top-color: #cdb5fd;
}

.alert-info .alert-link {
    color: #321e5c;
}

.alert-warning {
    color: #855700;
    background-color: #ffeecc;
    border-color: #ffe7b8;
}

.alert-warning hr {
    border-top-color: #ffde9f;
}

.alert-warning .alert-link {
    color: #523600;
}

.alert-danger {
    color: #802932;
    background-color: #fddcdf;
    border-color: #fccdd2;
}

.alert-danger hr {
    border-top-color: #fbb5bc;
}

.alert-danger .alert-link {
    color: #591d23;
}

.alert-light {
    color: #7e8081;
    background-color: #fdfdfe;
    border-color: #fcfcfd;
}

.alert-light hr {
    border-top-color: #ededf3;
}

.alert-light .alert-link {
    color: #656667;
}

.alert-dark {
    color: #0c0f1a;
    background-color: #d1d2d6;
    border-color: #bebfc6;
}

.alert-dark hr {
    border-top-color: #b0b2ba;
}

.alert-dark .alert-link {
    color: black;
}

.alert-white {
    color: #858585;
    background-color: white;
    border-color: white;
}

.alert-white hr {
    border-top-color: #f2f2f2;
}

.alert-white .alert-link {
    color: #6c6c6c;
}

.alert.alert-primary {
    background-color: #3699FF;
    border-color: #3699FF;
    color: #FFFFFF;
}

.alert.alert-primary .close i {
    opacity: 0.8;
    color: #FFFFFF;
}

.alert.alert-primary .close:focus i,
.alert.alert-primary .close:hover i {
    opacity: 1;
    color: #FFFFFF;
}

.alert.alert-secondary {
    background-color: #E4E6EF;
    border-color: #E4E6EF;
    color: #3F4254;
}

.alert.alert-secondary .close i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-secondary .close:focus i,
.alert.alert-secondary .close:hover i {
    opacity: 1;
    color: #3F4254;
}

.alert.alert-success {
    background-color: #1BC5BD;
    border-color: #1BC5BD;
    color: #ffffff;
}

.alert.alert-success .close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-success .close:focus i,
.alert.alert-success .close:hover i {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-info {
    background-color: #8950FC;
    border-color: #8950FC;
    color: #ffffff;
}

.alert.alert-info .close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-info .close:focus i,
.alert.alert-info .close:hover i {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-warning {
    background-color: #FFA800;
    border-color: #FFA800;
    color: #ffffff;
}

.alert.alert-warning .close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-warning .close:focus i,
.alert.alert-warning .close:hover i {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-danger {
    background-color: #F64E60;
    border-color: #F64E60;
    color: #ffffff;
}

.alert.alert-danger .close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-danger .close:focus i,
.alert.alert-danger .close:hover i {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-light {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
    color: #7E8299;
}

.alert.alert-light .close i {
    opacity: 0.8;
    color: #7E8299;
}

.alert.alert-light .close:focus i,
.alert.alert-light .close:hover i {
    opacity: 1;
    color: #7E8299;
}

.alert.alert-dark {
    background-color: #181C32;
    border-color: #181C32;
    color: #ffffff;
}

.alert.alert-dark .close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-dark .close:focus i,
.alert.alert-dark .close:hover i {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-white {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #3F4254;
}

.alert.alert-white .close i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-white .close:focus i,
.alert.alert-white .close:hover i {
    opacity: 1;
    color: #3F4254;
}

.alert.alert-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 1.5rem 2rem;
}

.alert.alert-custom .alert-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.25rem 0 0;
}

.alert.alert-custom .alert-icon i {
    font-size: 2.4rem;
}

.alert.alert-custom .alert-icon.alert-icon-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.alert.alert-custom .alert-text {
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.alert.alert-custom .alert-close {
    padding: 0 0 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    line-height: 0;
}

.alert.alert-custom .alert-close .close {
    text-shadow: none !important;
    cursor: pointer;
    line-height: 0;
}

.alert.alert-custom .alert-close i {
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
    font-size: 1rem;
}

.alert.alert-custom .alert-close i.ki {
    font-size: 0.75rem;
}

.alert.alert-custom .alert-close:focus i,
.alert.alert-custom .alert-close:hover i {
    -webkit-transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}

.alert.alert-custom.alert-outline-2x {
    border-width: 2px;
}

.alert.alert-custom.alert-white {
    background-color: #ffffff;
    border-color: #ffffff;
}

.alert.alert-custom.alert-white .alert-icon i {
    color: #3F4254;
}

.alert.alert-custom.alert-white .alert-text {
    color: #3F4254;
}

.alert.alert-custom.alert-white .alert-close i {
    color: #3F4254;
}

.alert.alert-custom.alert-default {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
}

.alert.alert-custom.alert-shadow {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
    box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
}

.alert.alert-custom.alert-primary {
    background-color: #3699FF;
    border-color: #3699FF;
}

.alert.alert-custom.alert-primary .alert-icon i {
    opacity: 0.8;
    color: #FFFFFF;
}

.alert.alert-custom.alert-primary .alert-text {
    color: #FFFFFF;
}

.alert.alert-custom.alert-primary .alert-close i {
    color: #FFFFFF;
}

.alert.alert-custom.alert-primary .alert-close:focus,
.alert.alert-custom.alert-primary .alert-close:hover {
    opacity: 1;
    color: #FFFFFF;
}

.alert.alert-custom.alert-light-primary {
    background-color: #E1F0FF;
    border-color: transparent;
    color: #282828;
    font-size: 1.4rem;
}

.alert.alert-custom.alert-light-primary .alert-icon i {
    color: #3699FF;
}

.alert.alert-custom.alert-light-primary .alert-text {
    color: #3699FF;
}

.alert.alert-custom.alert-light-primary .alert-close i {
    color: #3699FF;
}

.alert.alert-custom.alert-light-primary .alert-close:focus,
.alert.alert-custom.alert-light-primary .alert-close:hover {
    color: #187DE4;
}

.alert.alert-custom.alert-light-primary.alert-notice {
    border: 0;
    border-left: 4px solid #3699FF;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-primary {
    background-color: transparent;
    border-color: #3699FF;
}

.alert.alert-custom.alert-outline-primary .alert-icon i {
    color: #3699FF;
}

.alert.alert-custom.alert-outline-primary .alert-text {
    color: #3699FF;
}

.alert.alert-custom.alert-outline-primary .alert-close i {
    opacity: 0.8;
    color: #3699FF;
}

.alert.alert-custom.alert-outline-primary .alert-close:focus i,
.alert.alert-custom.alert-outline-primary .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-secondary {
    background-color: #E4E6EF;
    border-color: #E4E6EF;
}

.alert.alert-custom.alert-secondary .alert-icon i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-custom.alert-secondary .alert-text {
    color: #3F4254;
}

.alert.alert-custom.alert-secondary .alert-close i {
    color: #3F4254;
}

.alert.alert-custom.alert-secondary .alert-close:focus,
.alert.alert-custom.alert-secondary .alert-close:hover {
    opacity: 1;
    color: #3F4254;
}

.alert.alert-custom.alert-light-secondary {
    background-color: #EBEDF3;
    border-color: transparent;
}

.alert.alert-custom.alert-light-secondary .alert-icon i {
    color: #E4E6EF;
}

.alert.alert-custom.alert-light-secondary .alert-text {
    color: #E4E6EF;
}

.alert.alert-custom.alert-light-secondary .alert-close i {
    color: #E4E6EF;
}

.alert.alert-custom.alert-light-secondary .alert-close:focus,
.alert.alert-custom.alert-light-secondary .alert-close:hover {
    color: #d7dae7;
}

.alert.alert-custom.alert-light-secondary.alert-notice {
    border: 0;
    border-left: 4px solid #E4E6EF;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-secondary {
    background-color: transparent;
    border-color: #E4E6EF;
}

.alert.alert-custom.alert-outline-secondary .alert-icon i {
    color: #3F4254;
}

.alert.alert-custom.alert-outline-secondary .alert-text {
    color: #3F4254;
}

.alert.alert-custom.alert-outline-secondary .alert-close i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-custom.alert-outline-secondary .alert-close:focus i,
.alert.alert-custom.alert-outline-secondary .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-success {
    background-color: #1BC5BD;
    border-color: #1BC5BD;
}

.alert.alert-custom.alert-success .alert-icon i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-success .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-success .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-success .alert-close:focus,
.alert.alert-custom.alert-success .alert-close:hover {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-custom.alert-light-success {
    background-color: #C9F7F5;
    border-color: transparent;
}

.alert.alert-custom.alert-light-success .alert-icon i {
    color: #1BC5BD;
}

.alert.alert-custom.alert-light-success .alert-text {
    color: #1BC5BD;
}

.alert.alert-custom.alert-light-success .alert-close i {
    color: #1BC5BD;
}

.alert.alert-custom.alert-light-success .alert-close:focus,
.alert.alert-custom.alert-light-success .alert-close:hover {
    color: #0BB7AF;
}

.alert.alert-custom.alert-light-success.alert-notice {
    border: 0;
    border-left: 4px solid #1BC5BD;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-success {
    background-color: transparent;
    border-color: #1BC5BD;
}

.alert.alert-custom.alert-outline-success .alert-icon i {
    color: #1BC5BD;
}

.alert.alert-custom.alert-outline-success .alert-text {
    color: #1BC5BD;
}

.alert.alert-custom.alert-outline-success .alert-close i {
    opacity: 0.8;
    color: #1BC5BD;
}

.alert.alert-custom.alert-outline-success .alert-close:focus i,
.alert.alert-custom.alert-outline-success .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-info {
    background-color: #8950FC;
    border-color: #8950FC;
}

.alert.alert-custom.alert-info .alert-icon i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-info .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-info .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-info .alert-close:focus,
.alert.alert-custom.alert-info .alert-close:hover {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-custom.alert-light-info {
    background-color: #EEE5FF;
    border-color: transparent;
}

.alert.alert-custom.alert-light-info .alert-icon i {
    color: #8950FC;
}

.alert.alert-custom.alert-light-info .alert-text {
    color: #8950FC;
}

.alert.alert-custom.alert-light-info .alert-close i {
    color: #8950FC;
}

.alert.alert-custom.alert-light-info .alert-close:focus,
.alert.alert-custom.alert-light-info .alert-close:hover {
    color: #7337EE;
}

.alert.alert-custom.alert-light-info.alert-notice {
    border: 0;
    border-left: 4px solid #8950FC;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-info {
    background-color: transparent;
    border-color: #8950FC;
}

.alert.alert-custom.alert-outline-info .alert-icon i {
    color: #8950FC;
}

.alert.alert-custom.alert-outline-info .alert-text {
    color: #8950FC;
}

.alert.alert-custom.alert-outline-info .alert-close i {
    opacity: 0.8;
    color: #8950FC;
}

.alert.alert-custom.alert-outline-info .alert-close:focus i,
.alert.alert-custom.alert-outline-info .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-warning {
    background-color: #FFA800;
    border-color: #FFA800;
}

.alert.alert-custom.alert-warning .alert-icon i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-warning .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-warning .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-warning .alert-close:focus,
.alert.alert-custom.alert-warning .alert-close:hover {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-custom.alert-light-warning {
    background-color: #FFF4DE;
    border-color: transparent;
}

.alert.alert-custom.alert-light-warning .alert-icon i {
    color: #FFA800;
}

.alert.alert-custom.alert-light-warning .alert-text {
    color: #FFA800;
}

.alert.alert-custom.alert-light-warning .alert-close i {
    color: #FFA800;
}

.alert.alert-custom.alert-light-warning .alert-close:focus,
.alert.alert-custom.alert-light-warning .alert-close:hover {
    color: #EE9D01;
}

.alert.alert-custom.alert-light-warning.alert-notice {
    border: 0;
    border-left: 4px solid #FFA800;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-warning {
    background-color: transparent;
    border-color: #FFA800;
}

.alert.alert-custom.alert-outline-warning .alert-icon i {
    color: #FFA800;
}

.alert.alert-custom.alert-outline-warning .alert-text {
    color: #FFA800;
}

.alert.alert-custom.alert-outline-warning .alert-close i {
    opacity: 0.8;
    color: #FFA800;
}

.alert.alert-custom.alert-outline-warning .alert-close:focus i,
.alert.alert-custom.alert-outline-warning .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-danger {
    background-color: #F64E60;
    border-color: #F64E60;
}

.alert.alert-custom.alert-danger .alert-icon i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-danger .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-danger .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-danger .alert-close:focus,
.alert.alert-custom.alert-danger .alert-close:hover {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-custom.alert-light-danger {
    background-color: #FFE2E5;
    border-color: transparent;
}

.alert.alert-custom.alert-light-danger .alert-icon i {
    color: #F64E60;
}

.alert.alert-custom.alert-light-danger .alert-text {
    color: #F64E60;
}

.alert.alert-custom.alert-light-danger .alert-close i {
    color: #F64E60;
}

.alert.alert-custom.alert-light-danger .alert-close:focus,
.alert.alert-custom.alert-light-danger .alert-close:hover {
    color: #EE2D41;
}

.alert.alert-custom.alert-light-danger.alert-notice {
    border: 0;
    border-left: 4px solid #F64E60;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-danger {
    background-color: transparent;
    border-color: #F64E60;
}

.alert.alert-custom.alert-outline-danger .alert-icon i {
    color: #F64E60;
}

.alert.alert-custom.alert-outline-danger .alert-text {
    color: #F64E60;
}

.alert.alert-custom.alert-outline-danger .alert-close i {
    opacity: 0.8;
    color: #F64E60;
}

.alert.alert-custom.alert-outline-danger .alert-close:focus i,
.alert.alert-custom.alert-outline-danger .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-light {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
}

.alert.alert-custom.alert-light .alert-icon i {
    opacity: 0.8;
    color: #7E8299;
}

.alert.alert-custom.alert-light .alert-text {
    color: #7E8299;
}

.alert.alert-custom.alert-light .alert-close i {
    color: #7E8299;
}

.alert.alert-custom.alert-light .alert-close:focus,
.alert.alert-custom.alert-light .alert-close:hover {
    opacity: 1;
    color: #7E8299;
}

.alert.alert-custom.alert-light-light {
    background-color: #F3F6F9;
    border-color: transparent;
}

.alert.alert-custom.alert-light-light .alert-icon i {
    color: #F3F6F9;
}

.alert.alert-custom.alert-light-light .alert-text {
    color: #F3F6F9;
}

.alert.alert-custom.alert-light-light .alert-close i {
    color: #F3F6F9;
}

.alert.alert-custom.alert-light-light .alert-close:focus,
.alert.alert-custom.alert-light-light .alert-close:hover {
    color: #E4E6EF;
}

.alert.alert-custom.alert-light-light.alert-notice {
    border: 0;
    border-left: 4px solid #F3F6F9;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-light {
    background-color: transparent;
    border-color: #F3F6F9;
}

.alert.alert-custom.alert-outline-light .alert-icon i {
    color: #3F4254;
}

.alert.alert-custom.alert-outline-light .alert-text {
    color: #3F4254;
}

.alert.alert-custom.alert-outline-light .alert-close i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-custom.alert-outline-light .alert-close:focus i,
.alert.alert-custom.alert-outline-light .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-dark {
    background-color: #181C32;
    border-color: #181C32;
}

.alert.alert-custom.alert-dark .alert-icon i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-dark .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-dark .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-dark .alert-close:focus,
.alert.alert-custom.alert-dark .alert-close:hover {
    opacity: 1;
    color: #ffffff;
}

.alert.alert-custom.alert-light-dark {
    background-color: #D1D3E0;
    border-color: transparent;
}

.alert.alert-custom.alert-light-dark .alert-icon i {
    color: #181C32;
}

.alert.alert-custom.alert-light-dark .alert-text {
    color: #181C32;
}

.alert.alert-custom.alert-light-dark .alert-close i {
    color: #181C32;
}

.alert.alert-custom.alert-light-dark .alert-close:focus,
.alert.alert-custom.alert-light-dark .alert-close:hover {
    color: #131628;
}

.alert.alert-custom.alert-light-dark.alert-notice {
    border: 0;
    border-left: 4px solid #181C32;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-dark {
    background-color: transparent;
    border-color: #181C32;
}

.alert.alert-custom.alert-outline-dark .alert-icon i {
    color: #181C32;
}

.alert.alert-custom.alert-outline-dark .alert-text {
    color: #181C32;
}

.alert.alert-custom.alert-outline-dark .alert-close i {
    opacity: 0.8;
    color: #181C32;
}

.alert.alert-custom.alert-outline-dark .alert-close:focus i,
.alert.alert-custom.alert-outline-dark .alert-close:hover i {
    opacity: 1;
}

.alert.alert-custom.alert-white {
    background-color: #ffffff;
    border-color: #ffffff;
}

.alert.alert-custom.alert-white .alert-icon i {
    opacity: 0.8;
    color: #3F4254;
}

.alert.alert-custom.alert-white .alert-text {
    color: #3F4254;
}

.alert.alert-custom.alert-white .alert-close i {
    color: #3F4254;
}

.alert.alert-custom.alert-white .alert-close:focus,
.alert.alert-custom.alert-white .alert-close:hover {
    opacity: 1;
    color: #3F4254;
}

.alert.alert-custom.alert-light-white {
    background-color: #ffffff;
    border-color: transparent;
}

.alert.alert-custom.alert-light-white .alert-icon i {
    color: #ffffff;
}

.alert.alert-custom.alert-light-white .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-light-white .alert-close i {
    color: #ffffff;
}

.alert.alert-custom.alert-light-white .alert-close:focus,
.alert.alert-custom.alert-light-white .alert-close:hover {
    color: #F3F6F9;
}

.alert.alert-custom.alert-light-white.alert-notice {
    border: 0;
    border-left: 4px solid #ffffff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.alert.alert-custom.alert-outline-white {
    background-color: transparent;
    border-color: #ffffff;
}

.alert.alert-custom.alert-outline-white .alert-icon i {
    color: #ffffff;
}

.alert.alert-custom.alert-outline-white .alert-text {
    color: #ffffff;
}

.alert.alert-custom.alert-outline-white .alert-close i {
    opacity: 0.8;
    color: #ffffff;
}

.alert.alert-custom.alert-outline-white .alert-close:focus i,
.alert.alert-custom.alert-outline-white .alert-close:hover i {
    opacity: 1;
}

.alert[data-notify] {
    min-width: 300px;
    padding: 1rem 1.5rem;
}

.alert[data-notify] .close {
    right: 1rem !important;
    padding: 0.25rem 0 0 2rem;
    font-weight: 300;
}

.alert[data-notify] .close:before {
    font-size: 0.75rem;
    color: #fff;
    opacity: 0.7;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
    font-family: Ki;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    content: "";
}

div.scrollmenu {
    overflow: auto;
    white-space: nowrap;
    padding-bottom:10px;
}

div.scrollmenu figure 
{
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.alert[data-notify] .close:hover:before {
    opacity: 1;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

@media (max-width: 991.98px) {
    .alert[data-notify] {
        max-width: 70%;
    }
}

@media (max-width: 991.98px) {
    .alert[data-notify] {
        max-width: 90%;
    }
}

.alert[data-notify][data-notify-position=top-center],
.alert[data-notify][data-notify-position=bottom-center] {
    width: 30%;
}

@media (max-width: 991.98px) {

    .alert[data-notify][data-notify-position=top-center],
    .alert[data-notify][data-notify-position=bottom-center] {
        width: 70%;
    }
}

@media (max-width: 991.98px) {

    .alert[data-notify][data-notify-position=top-center],
    .alert[data-notify][data-notify-position=bottom-center] {
        width: 90%;
    }
}


.mobile_options
{
    display: none;
}

.country_grp_2
{
    display: none;
}


.alert[data-notify] .icon {
    position: absolute;
}

.alert[data-notify] [data-notify=title] {
    display: block;
    font-weight: 500;
}

.alert[data-notify] .icon~[data-notify=title] {
    padding-left: 2.85rem;
}

.alert[data-notify] .icon~[data-notify=message] {
    display: inline-block;
    padding-left: 2.85rem;
}

.alert[data-notify] [data-notify=title]:not(:empty)~[data-notify=message] {
    margin-top: 0.2rem;
}

.alert[data-notify] .progress {
    margin-top: 0.5rem;
    line-height: 0.5rem;
    height: 0.5rem;
}

.specifications-video {
    text-align: center;
    display: block;
    position: relative;
}

.specifications-video iframe {
    border: none;
    width: 100%;
    height: 434px;
    top: 0;
    position: relative;
    padding: 30px;
    right: 2px;
}

.specifications-video::after {
    content: "";
    background-image: url(../images/laptop.png);
    width: 100%;
    height: 130%;
    position: absolute;
    top: -30px;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    background-position: 50%;
}

.support-item {
    margin: 20px 0px;
    text-align: center;
}


.product-image .primary-image {
    /*height: 300px;*/
}

.accordion .card button.product-link {
    background: #FFFFFF !important;
    padding: 15px 45px 15px 15px;
    border: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    /* identical to box height */
    color: #3D5467;
    text-align: left;
}

.product-meta .accordion .card .card-body {
    padding: 0px 30px 30px 30px;
}

.product-summary .product-price-wrapper {
    font-size: 2rem !important;
    color: #282828;
}

.product-summary .product-price-wrapper > span {
    font-size: 2.4rem !important;
}

.product-summary .product-title {
    font-size: 36px !important;
    font-weight: 600 !important;
}

.product-summary .product-designer {
    font-size: 14px;
}

.show_prices {
    font-size: 36px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-top: 5px;
}

.c_btn {
    color: #000000 !important;
    font-size: 16px !important;
    background-color: #FFCA28 !important;
    padding: 5px 20px !important;
    height: 40px;
    margin-right: 10px;
    display: block;
    float: right;
    /*white-space: pre !important;*/
}

.c_btn:hover {
    background-color: #BE7B2D !important;
}

@media (max-width:1490px) {
    .show_prices {
        font-size: 27px !important;
        margin-top: 2px;
    }

   /* .c_btn {
        padding: 7px 13px !important;
    }*/
}

@media (max-width:1024px) {
    .show_prices {
        font-size: 25px !important;
        margin-top: 1px;
    }

    /*.c_btn {
        padding: 7px 10px !important;
    }*/
    .prod_thumb_vertical {display: none !important;}
    .prod_thumb_horizontal {display: block !important;}
}
/*** added by vyshnavi ***/
.btn-yellow {
    background-color:  #FFA800 !important;
    border-color:  #FFA800 !important;
    border-radius: 0% !important;
    padding: 10px 20px;
    font-size: 20px !important;
    color: #183D5D !important ;
    font-weight: 500;
    line-height: 30px;
}

.corner-text {
    background-color: #FFA800;
    color: #3D5467;
    position: absolute;
    top: 61px;
    right: 32px;
    transform: rotate(13.31deg);
    padding: 5px 10px;
    z-index: 1;
}
/***** switch button on product view page *****/

.switch.switch-dark:not(.switch-outline) input:empty ~ span:before {
    background-color: #3D5467 !important;
}

.switch.switch-dark:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}

.switch.switch-dark:not(.switch-outline) input:checked ~ span:before {
    background-color: #3D5467 !important;
}

.switch.switch-dark:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #3D5467 !important;
    background-color: #ffffff;
}
/*** added by vyshnavi ***/

.main-wrapper .navigation {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    order: 2;
    z-index: 2;
}

.main-wrapper .navigation .nav-content {
    background: #fff;   
}

.main-wrapper .navigation .nav-content ul {
    padding: 0;
    margin: 0;
    flex-grow: 1;
    justify-content: space-between;
    padding-left: 0;
    list-style: none;
    display: flex;
}

.static_mobile_footer , .mobile_header_title {
    display: none;
}

.main-wrapper .navigation .nav-content ul li:not(.logo) {
    list-style-image: none;
    list-style-type: none;
}

.main-wrapper .navigation .nav-content ul li:not(.logo) a {
    display: block;
    text-align: center;
    padding: 15px 20px;
    position: relative;
}

.main-wrapper .navigation .nav-content ul li:not(.logo) a i {
    font-size: 26px;
    color: #fff;
    top: 3px;
    position: relative;
    color: #585858;
}

.main-wrapper .navigation .nav-content ul li:not(.logo) a .circle-icon {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    padding: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.main-wrapper .navigation .nav-content ul li.brackets {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.main-wrapper .navigation .nav-content ul li>a.active {
    color: #ff0017 !important;
}

.main-wrapper .navigation .nav-content ul li>a.active i {
    color: #ff0017;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.main-wrapper .navigation.style1 .nav-content ul li>a i {
    font-size: 25px;
}

.main-wrapper .navigation.style2 .nav-content ul li>a.active {
    border-bottom: 2px #ff0017 solid;
}

.main-wrapper .navigation.style3 .nav-content ul li>a.active {
    border-top: 2px #ff0017 solid;
}

.main-wrapper .navigation.style4 .nav-content ul li>a.active {
    background-color: #ff0017;
    border-radius: 10px;
}

.main-wrapper .navigation.style4 .nav-content ul li {
    margin: 7px 0;
}

.main-wrapper .navigation.style4 .nav-content ul li a {
    padding: 10px 20px;
}

.main-wrapper .navigation.style4 .nav-content ul li>a.active i {
    color: #fff;
    font-size: 20px;
    padding-bottom: 7px;
    display: inline-block;
}

.main-wrapper .navigation.style5 .nav-content ul li>a.active:after {
    content: "";
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    background-color: #ff0017;
    border-radius: 50%;
    display: inline-block;
    left: 46%;
}

.main-wrapper .navigation.style6 .nav-content ul li>a {
    padding: 9px 20px;
}

.main-wrapper .navigation.style6 .nav-content ul li>a i {
    display: block;
    margin-bottom: 7px;
}

.main-wrapper .navigation.style6 .nav-content ul li>a {
    font-size: 8px;
    color: #222;
}

.main-wrapper .navigation.style7 .nav-content ul li>a.nav-center {
    background-color: #ff0017;
    border-radius: 30px;
    position: relative;
    top: -20px;
    padding: 12px 15px;
    z-index: 10;
}

.main-wrapper .navigation.style7 .nav-content ul li>a.nav-center i {
    color: #fff;
}

.item-category-link .owl-item.active.center h4 {
  color: #111;
  font-weight: 600;
}

.item-category-link .owl-item h4 {
  margin-right: 40px;
  margin-bottom: 0;
  line-height: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #aaa;
}

.item-category-link .owl-stage-outer {
  overflow: visible;
}

.main-wrapper .navigation.style6 .owl-carousel.owl-drag .owl-item{
    padding: 5px 0px;
}

.modal.action-sheet.show .modal-dialog {
  transform: translate(0, 0);
}
.modal.action-sheet .modal-dialog {
  padding: 0;
  margin: 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  min-width: 100%;
  z-index: 12000;
  transform: translate(0, 100%);
/*  padding: 16px;*/
}

.modal.action-sheet .modal-dialog.full-sheet {
  padding: 0;
}
.modal.action-sheet .modal-dialog.full-sheet .modal-content {
  border-radius: 0;
}
.modal.action-sheet .modal-body {
  padding: 0;
}

.modal.action-sheet .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.action-sheet .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal.action-sheet .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 600;
  font-family: poppins;
  margin-left: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.modal.action-sheet .modal-body {
  position: relative;
  flex: 1 1 auto;
  margin-left: 10px;
}

.modal.action-sheet .modal-body .param_name {
  position: relative;
  flex: 1 1 auto;
  font-family: poppins; 
  font-weight: 600;  
  font-size: 12px;
}

.modal.action-sheet .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.action-sheet .modal-footer > * {
  margin: 0.25rem;
}
.action-button-list li.action-divider {
    margin-top: 10px;
    border-top: 1px solid #dee2e6;
}

.fscaret {
    background: #3D5467 !important;
    color: #0000 !important;
    height: 20px !important;
    /* width: 30px !important;
    height: 30px !important; */
    border-radius: 16px !important;
    /* height: 100%; */
    min-width: 20px !important;
    /*top: -3px !important;*/
    padding: 0px 0px !important;
}
.box_slider {
    width: 100% !important;
    margin-top: 10px;
}
.shapes-wrap label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -99;
}

.shapes-wrap label {
    position: relative;
    margin: 0;
    margin-bottom: 15px;
}
.shapes-wrap .shape-item {
    display: block;
    /*border: 1px solid #ddd;*/
    padding: 6px !important;
    cursor: pointer;
    border-radius: 5px; 
}

.choice-name {
    text-align: center;
    white-space: normal;
    max-width: 65px;
}

.active-white
{
    color:#FFFFFF !important;
}       
.active-blue
{   
    color: #3D5467 !important;
}
.shape-item span
{
    padding: 5px;
}

.shape-item .active
{   
    color:white !important;
}

.btn-secondary:hover, label.active .btn-secondary {
    color: white; 
    background-color: #3D5467;
    border-color: #c4c8dc;  
}
.btn-secondary {
    color: #3D5467;  
    background-color: #E4E6EF;
    border-color: #E4E6EF;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}
.shapes-wrap .active .shape-item {
    border: 1px solid #b5b5b3;
}

.param-name {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.num-box {
    background-color: #e8e8e8;
    font-size: 15px;
    padding: 6px;
    margin-left: 9px;
    border-radius: 4px;
    color: #3D5467;
}
.num-box .form-control {
    border: none;
}

.num-box .input-group-text {
    background: transparent;
    font-size: 12px;
    line-height: 2.5;
}
.product-summary-holder {
    position:fixed;
    right: 36px;
    top: 4% !important;
    width: 394px;     
}
.product-summary-footer
{   
    right: 26px;
    position: fixed;
    /* top: 30%; */
    width: 400px;     
    height: 70%;
    /* background-color: red;  */
    overflow-y: scroll;
    overflow-x: hidden;
    /* border-radius: 6px; */
    /* box-shadow: 0 4px 28px rgba(123,151,158,.25);
    border: 1px solid #d6dee1; */
    padding: 0 1rem;
    
}


.product-summary-footer::-webkit-scrollbar {
    width: 1em;
  } 
   
  .product-summary-footer::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  }
   
  .product-summary-footer::-webkit-scrollbar-thumb {
    background-color: transparent;
    /* border-radius: 20px; */
    border: 2px solid transparent;
    background-clip:unset;
  }


.product-summary-holder-mobile {
    width: 100%;
    right: 0;
    position: fixed;
    bottom: 40px;
}

.modal.action-sheet .modal-dialog .modal-content {
    max-width: 800px !important;
    width: 100%;
    margin: auto;
}

.to-hide-on-sd
{   
    display: none !important;
}

.header-mobile__inner {
    position: fixed;
}

.header .logo-box img
{
    max-height: 70px;
}
/**** added by vyshnavi *****/
/*Custom Checkbox to not overlap the text*/
/*****************************/
/*input[type="checkbox"].switch_2{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 32px;
  height: 5px;
  background: #444;
  border-radius: 5px;
  outline: 0;
  cursor: pointer;
}

input[type="checkbox"].switch_2:before,
input[type="checkbox"].switch_2:after{
  position: absolute;
  content: "";
  -webkit-transition: all .25s;
  transition: all .25s;
}

input[type="checkbox"].switch_2:before{
  width: 20px;
  height: 20px;
  background: #666;
  border: 2px solid #666;
  border-radius: 50%;
  top: 50%;
  left: 17rem;
  -webkit-transform: translateY(-50%);  
          transform: translateY(-50%);
}

input[type="checkbox"].switch_2:after{
  width: 20px;
  height: 20px;
  background: #ccc;
  border: 2px solid #ccc;
  border-radius: 50%;
  top: 50%;
  left: 17rem;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

input[type="checkbox"].switch_2:checked:before{

  left: 19rem;
}

input[type="checkbox"].switch_2:checked:after{
  left: 75px;
  -webkit-transform: scale(0);
          transform: scale(0);
          display: none;
}

.chx-adjust
{
    position: absolute;
    margin-top: -24px !important;
    padding-left: 14rem !important; 
}*/
/****CSS For Home page Login/Register Popup ****/
.signin-block .form-group label {
    color: #A6A6A6 !important;
    font-size: 12px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 21px;
}

.signin-block .form-group input {
    color: #000000 !important;
    /*background: #E1E1E1 !important;*/
    font-size: 14px;
    font-weight: 400;
    font-family: Poppins;
    line-height: 21px;
}

.signin-block a {
    /*color: #A6A6A6;*/
    color: #00008B;
    font-size: 14px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 21px;
}

.signin-block h4 {
    color: #000000 !important;
    font-size: 32px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 48px;
}

.register-box .form-group label {
    color: #A6A6A6 !important;
    font-size: 12px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 21px;
}

.register-box .form-group input {
    color: #000000 !important;
   /* background: #E1E1E1 !important;*/
    font-size: 14px;
    font-weight: 400;
    font-family: Poppins;
    line-height: 21px;
}

.register-box h4 {
    color: #000000 !important;
    font-size: 32px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 48px;
}

.register-box a {
    /*color: #A6A6A6;*/
    color: #00008B;
    font-size: 14px;
    font-weight: 500;
    font-family: Poppins;
    line-height: 21px;
}
/* Image transperancy of Verical images on product view page */
.product-gallery__thumb--single:not(.slick-current) {
    opacity: 1 !important;
}

/*.product-image img {
    max-width: 75% !important;
}*/

.product-link:hover .primary-image {
    border: 2px solid #FF0000;
    cursor: pointer;
}

.mobile-back-text
{
    display: none;
}
.desktop-view {
    display: inline;
}
.icon-background {
    background-color: white;
    display: inline-block;
    padding: 10px;
    border-radius: 50rem;
    margin-left: 0px;
    text-align: center; 
}
.product-summary-holder .col-lg-12
{
    display: flex!important;
    justify-content: flex-end !important;
}

.breadcrumb-area 
{
    margin-top: 20px !important;
    padding: 3rem 0rem 3rem 0rem !important;

}
.bread-crumb-mobile 
{
    padding: 2rem 0rem 2rem 0rem !important;
}
/**** added by vyshnavi *****/


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .md-modal {
        width: 100%;
        max-height: 600px;
        overflow: scroll;
    }
    .product-title {
        top: 0px;
        position: relative;
        margin-bottom: 0px;
        font-size: 14px !important;
    }
    .product-designer {
        font-size: 10px !important;
    }

    .shop-toolbar {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .advanced-product-filters 
    {
        display: block !important;
    }

    .web_options
    {
        display: none;
    }
    .mobile_options
    { 
        display: block;
    }


    .country_grp_2
    {
        display: block;
    }
    .country_grp_1
    {
        display: none;
    }

    .chbx
    {
        font-size:11px; width:33%; margin-bottom:10px; 
    }

    .product-filter 
    {
        padding: 0 !important;
    }

    .product-title.ng-binding {
        top: 16px;
    }
    .product-price-wrapper {
        margin-top: 15px;
        font-size: 14px !important;
    }
    .product-price-wrapper > span 
    {
        color: #3D5467;
        margin: 0 2px;
        font-size: 14px !important;
        line-height: 21px;
        font-weight: 400;
    }

    .product-short-description {
        font-size: 12px !important;
    }

    .product-info {
        padding-top: 0px;
    }
    
    .btn-save
    {
        position: relative;
    }

    .bread-crumb-mobile
    {
        margin-top: -5rem !important;
        padding: 6rem 0rem 2rem 0rem !important;
    }

    

    /**** added by Umair **/
    
    .static_mobile_footer {
        display: block !important;
        background-color: #3D5467;
        position: fixed;
        bottom: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        left: 0;
        height: 60pt;
    }

    .param-buttons li
    {
        width: auto;
        white-space: nowrap;
        text-align: center;
        flex: 1;
        padding: 9px 10px;
        font-size: 11px;
        border-radius: 5px;
        margin: 5px !important;
    }

    .paramslist li
    {
        border: 1px solid #3D5467;
    }

    .param-groups-list li
    {
        border: 1px solid white;
        color:white;
    }

    .param-groups-list a
    {
         /* color:white !important; */
    }

    .param-groups-list
    {
        color: #3D5467;
    }

    .param-groups-list.active
    {
        background-color: #3D5467;
    }
    .param-buttons li.active a
    {
        color:white;
    }

    .col-6
    {
        max-width:100% !important;
        display: block;
        flex:none !important; 
    }
    
    .form-group
    {
        font-size: 12px !important;
    }
  
    form div
    {
        /* margin:0 !important;
        padding: 0 !important; */
    }

    body
    {
        /* background-color: grey;  */
    }

    form br
    {
        height: 0px !important;
    }

    .user-dashboard-tab
    {
        margin-top: 60px !important;
    }

    .mobile_shrink
    {
        margin-top:0 !important;
    }

    .mobile_email_view
    {
        margin-top: 20px !important;
    }

    .table
    {
        font-size:10px !important;
        width: 100% !important;
    }
    td
    {
       min-width: 1rem !important;
    }
    .mobile_hidden_cls
    {
        display: none !important;
    }
    .mobile_unhide_cls
    {
        display: initial !important;
    }
    .font-size-h4
    {
        font-size: 9px !important;
    }
    .justify-content-between
    {
        font-size:11px !important;
    }

    .btn-dark
    {
        background-color:  #3D5467 !important;
        border-color:  #3D5467 !important;
        border-radius: 0% !important;
        padding: 10px 20px;
        font-size: 12px !important;
    }

    .btn-yellow
    {
        background-color:  #FFA800 !important;
        border-color:  #FFA800 !important;
        border-radius: 0% !important;
        padding: 10px 20px;
        font-size: 20px !important;
        color: #183D5D !important;
    }

    .mobile_header_title
    {
        display: block;
        color: #3D5467;
        font-weight: 600;
        margin-bottom: 10px;
        margin-left: 20px;
    }

    .static_mobile_footer button {
        display:inline-block !important;
    }

    .user-dashboard-tab__head
    {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        padding-bottom: 10px !important;
        background-color: transparent !important;
    }
    .user-dashboard-tab__head .nav-link
    {
        background-color:  rgba(61, 84, 103, 0.5)  !important;
        margin-right:5px !important;
        color:white !important;
        display: inline-block;
        padding:6px 10px !important; 
        font-size: 11px !important;
    }  
    .user-dashboard-tab__head a:last-of-type
    {
        display: none !important;
    }

    .nav-link.active, .user-dashboard-tab__head .nav-link:hover {
        background-color: #3D5467 !important;
       
    }
    .td_mobile
    {
        color:#000 !important;
        font-size: 12px !important;
        margin-left:15px;
    }
    /**** added by Umair **/
    /**** added by Vyshnavi ****/
    .collection
    {
        padding: 40px 20px 10px 20px !important;
    }
    /**** added by Vyshnavi ****/

    .customspace-video
    {
        margin: 0px 0px 0px 0px !important;
    }

    .customspace-logo
    {
        margin: 10px 0px 10px -50px !important;
    }
    .text-p1
    {
        margin: 10px 5px 0px -100px;
    }
    /** The column the mobile view is reversed for homepage **/
    .row.align-items-center.reverse
    {
        flex-direction: column-reverse;
    }
    /*** Startmaking page ***/
    .corner-text {
    background-color: #FFA800;
    color: #3D5467;
    position: absolute;
    top: 138px;
    right: 57px;
    transform: rotate(13.31deg);
    padding: 5px 10px;
    z-index: 1;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    }

    .c_btn {
    color: #000000 !important;
    font-size: 12px !important;
    background-color: #FFCA28 !important;
    padding: 5px 5px !important;
    height: 40px;
    margin-right: 10px;
    display: block;
    float: right;
    /*white-space: pre !important;*/
    }

    .maker-1 .title-text {
        font-size: 32px !important;
        font-weight: 600 !important;
        line-height: 48px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }
    .maker-1 p {
        margin-bottom: 25px !important;
    }
    .last-section-maker p {
        text-align: left !important;
        margin-bottom: -45px !important;
    }
    /** collection page title **/
    .collection-heading {
        margin-top: 10px;
    }
    /** For Widget-title In filter of collections page **/
    .advanced-product-filters .product-filter .product-widget {
        margin-bottom: 1rem;
        margin-top: 1.5rem;
        }

    .mini-cart__heading 
    {
        font-size: 20px !important;
        margin-top: -8px;
    }
    .mini-cart__product__title span.font-weight-bolder, .mini-cart__product__quantity, .mini-cart__total {
    font-size: 1.25rem !important;
    }
    .alert.alert-custom.alert-light-primary {
        background-color: #E1F0FF;
        border-color: transparent;
        font-size: 1.4rem;
        color: #282828;
    }
    .blockui {
        margin-left: -60px !important;
    }
    .product-gallery__large-image {
        margin-top: 52px !important;
    }
    .sdv-holder
    {
        height: 97vh !important;
    }
    .mobile-back-text
    {
        display: inline !important;
    }
    .desktop-view
    {
        display: none !important;
    }
 
    .product-summary-holder-mobile .c_btn
    {
        border-radius: 50rem !important;
        padding: 9px !important;
    }

    .product-summary-holder-mobile .btn-save,
    .product-summary-holder-mobile .btn-save-scan {
        float: left;
    }
   
    .product-summary-holder-mobile .btn-cart {
        
        float: right;
    }
    .icon-background {
        background-color: white;
        display: inline-block;
        padding: 12px;
        border-radius: 50rem;
        margin-right: -10px;
        margin-left: -5px;
        text-align: center; 
    }

    .cart-form {
        margin-top: 55px;
    }
    .checkout-title {
        margin-top: 60px !important;
    }
    .order-details 
    {
        border: none;
    }
    .cart-empty
    {
        margin-top: 10rem !important;
    }
    .product_details_form {
        width: 350px !important;
    }
    .num-box {
        background-color: #e8e8e8;
        font-size: 15px;
        padding: 6px;
        margin-left: 9px;
        border-radius: 4px;
        color: #3D5467;
    }
    /**** added by Vyshnavi ****/
}

/**** added by Umair 2 **/    
@media (max-width: 380px) 
{
    body
    {
        /* background-color: pink; */
    }
    .md-modal {
        width: 100%;
        max-height: 600px;
        overflow: scroll;
    }
    .user-dashboard-tab__head .nav-link
    {
        background-color:  rgba(61, 84, 103, 0.5)  !important;
        margin-right:5px !important;
        color:white !important;
        display: inline-block;
        padding:6px 8px !important; 
        font-size: 9px !important;
    }  


    .shop-toolbar {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .web_options
    {
        display: none;
    }
    .mobile_options
    { 
        display: block;
    }

    .country_grp_2
    {
        display: block;
    }
    .country_grp_1
    {
        display: none;
    }

    .chbx
    {
        font-size:10px; width:50%; margin-bottom:10px; 
    }
    /***added by Vyshnavi ***/

    .customspace-video
    {
        margin: 0px 0px 0px 0px !important;
    }

    .customspace-logo 
    {
        margin: 10px 10px 10px -60px !important;
    }
    .text-p1
    {
        margin: 0px 0px 0px -100px;
    }
    /*** Startmaking page ***/
    .maker-1 p
    {
        /*font-size: 32px !important;
        font-weight: 600 !important;
        line-height: 48px !important;*/
        margin-bottom: 25px !important;
    }

    /** aside cart heading and empty text **/
    .mini-cart__heading 
    {
        font-size: 20px !important;
        margin-top: -8px;
    }
    .alert.alert-custom.alert-light-primary {
    background-color: #E1F0FF;
    border-color: transparent;
    font-size: 1.4rem;
    color: #282828;
    }
    .sdv-holder
    {
        height: 97vh !important;
    }
    .product-summary-holder-mobile .c_btn
    {
        border-radius: 50rem !important;
        padding: 8px !important;
        margin-top: 500px !important;
  
    }
    .product-summary-holder-mobile .btn-save,
    .product-summary-holder-mobile .btn-save-scan {
        float: left;
    }
   
    .product-summary-holder-mobile .btn-cart {
        
        float: right;
    }
    .product_details_form {
        width: 325px !important;
        left: 10px !important;
    }

    /*** added by Vyshnavi ***/


}
/**** added by Umair 2 **/



/**** added by Umair 3 **/    
@media (max-width: 290px) 
{
    .md-modal {
        width: 100%;
        max-height: 600px;
        overflow: scroll;
    }
    body
    {
        /* background-color: purple;  */
    }
    input[type=text]
    {
        height: 4rem;
    }
    .justify-content-between
    {
        font-size:9px !important;
    }
    .user-dashboard-tab__head .nav-link
    {
        background-color:  rgba(61, 84, 103, 0.5)  !important;
        margin-right:5px !important;
        color:white !important;
        display: inline-block;
        padding:6px 8px !important; 
        font-size: 7px !important;
    }  
    .table
    {
        font-size:10px !important;
        width: 100% !important;
    }

    /*** Added by Vyshnavi ***/
    .customspace-logo 
    {
        margin: 10px 0px 10px -120px !important;
    }
    /*** Added by Vyshnavi ***/
}
/**** added by Umair 3 **/

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    .md-modal {
        width: 100%;
        max-height: 600px;
        overflow: scroll;
    }
    .btn-save
    {   
        position: relative;
    }

    .product-title {
        top: 0px;
        position: relative;
        margin-bottom: 0px;
    }
    
    .product-title.ng-binding {
        top: 16px;
    }
    
    .product-summary-holder-mobile {
        width: 100%;
        right: 0px;
        position: absolute;
        top: 56px;
    }
    
    .bread-crumb-mobile
    {
        margin-top: -5rem !important;
        padding: 5rem 0rem 1rem 0rem !important;
    }
    
    .shop-toolbar {
        margin-bottom: 2rem;
        margin-top: -1rem;
    }

    .web_options
    {
        display: none;
    }
    .mobile_options
    { 
        display: block;
    }

    .country_grp_2
    {
        display: block;
    }
    .country_grp_1
    {
        display: none;
    }

    .chbx
    {
        font-size:10px; width:50%; margin-bottom:10px; 
    }

    /**** added by Vyshnavi ****/
    .collection
    {
        padding: 80px 20px 10px 20px !important;
    }
    /**** added by Vyshnavi ****/

    .customspace-video
    {
        margin: 10px 10px 10px 0px !important;
    }

    .customspace-logo
    {
        margin: 10px 10px 10px 10px !important;
    }
    .text-p1
    {
        margin: 0px -5px 0px -100px;
    }
   
    /**** added by Vyshnavi ****/

}

    
/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){
    .md-modal {
        width: 100%;
        max-height: 600px;
        overflow: scroll;
    }

    .btn-save
    {
        position: relative;
    }
    
    .product-title {
        top: 0px;
        position: relative;
        margin-bottom: 0px;
    }

    .product-title.ng-binding {
        top: 16px;
    }

    .product-summary-holder-mobile {
        width: 100%;
        right: 0px;
        position: absolute;
        top: 56px;
    }

    .bread-crumb-mobile
    {
        margin-top: 0rem !important;
        padding: 2rem 0rem 2rem 0rem !important;
    }

    /**** added by Vyshnavi ****/
    .collection
    {
        padding: 40px 20px 10px 20px !important;
    }
    /**** added by Vyshnavi ****/

    .customspace-video
    {
        margin: 0px 40px 0px 80px !important;
    }

    .customspace-logo
    {
        margin: 10px 10px 10px 10px !important;

    }
    .text-p1
    {
        margin: 0px -5px 0px -100px;
    }
    /**** added by Vyshnavi ****/
    
}
  
/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px){

}
    
/* Media Query for Large screens */
@media (min-width: 1281px) {
   
}
  





/*@media (min-width: 1200px) {
    .modal.action-sheet .modal-dialog .modal-content {
        max-width: 800px !important;
        width: 100%;
    }
}
@media (max: 1199px) {
    .modal.action-sheet .modal-dialog .modal-content {
        max-width: 800px !important;
        width: 100%;
    }
}*/

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?i7gibo");
  src: url("../fonts/icomoon.eot?i7gibo#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?i7gibo") format("truetype"), url("../fonts/icomoon.woff?i7gibo") format("woff"), url("../fonts/icomoon.svg?i7gibo#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accordion .card button::before {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    position: absolute;
    content: "\eaf7";
    width: 1em;
    line-height: 1em;
    right: 1.875rem;
    top: 50%;
    font-family: 'icomoon' !important;
    font-size: 16px;
    margin-top: -0.5em;
    color: #555;
}
.accordion .card button::before {
    font-weight: bold;
    color: #000 !important;
    right: 25px;
    top: 25px;
    transform: rotate(-90deg);
}
.accordion .card button[aria-expanded="true"]::before {
    transform: rotate(0);
}

.noUi-target.noUi-horizontal {
    height: 3px;
    margin-top: 14px;
    border: none;
}
.noUi-target.noUi-horizontal .noUi-handle
{
    top: -10px;
    background: #3D5467;
    border: none;
}
.noUi-target .noUi-connect {
    background: #3D5467;
}
.noUi-base, .noUi-connects
{
    background: #d8d8d8;
}

