/*===========================================
@Developed By: Ayan Paul (EGNAVY-WEB)
============================================*/

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");

* {
    font-family: "Sora", sans-serif;
}

/*---common-style---*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

i:before {
    margin-left: 0px !important;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    text-decoration: none;
    list-style: none;
}

body {
    letter-spacing: 0px;
    font-size: clamp(14px, 4vw, 20px);
    font-family: "Sora", sans-serif;
    font-weight: 400;
    color: #9ca0af;
    padding: 0px;
    overflow-x: hidden;
    z-index: 0;
    margin: 0 !important;
}

p {
    line-height: normal;
    margin-bottom: 10px;
}

a,
.btn,
button {
    text-decoration: none;
    outline: none !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    display: inline-block;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
    margin-bottom: 15px;
    color: #0b223e;
    font-weight: 700;
    line-height: normal;
}

h1 {
    font-size: clamp(30px, 4vw, 42px);
}

h2 {
    font-size: clamp(24px, 4vw, 30px);
}

h6 {
    font-size: clamp(14px, 4vw, 20px);
}

#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 24px;
    background: #363636;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    opacity: 0;
    font-size: 24px;
    border-radius: 100%;
    font-family: "FontAwesome";
}

#back-to-top:hover {
    background: #000;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

#back-to-top.show {
    opacity: 1;
}

.form-control {
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: clamp(14px, 4vw, 18px);
    color: #4b4b4b !important;
    padding: 10px 30px;
    height: 60px !important;
    margin-bottom: 0;
    letter-spacing: 0;
    font-weight: 400;
}

.form-select {
    background-color: #fff;
    border: none;
    border-radius: 100px;
    font-size: clamp(14px, 4vw, 18px);
    color: #4b4b4b !important;
    padding: 10px 30px;
    height: 60px !important;
    cursor: pointer;
    background-image: url("../images/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: center right 30px;
    background-size: 10px;
}

textarea.form-control {
    height: 120px !important;
    resize: none;
}

.form-control::placeholder {
    color: #4b4b4b;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #4b4b4b;
}

.form-control::-ms-input-placeholder {
    color: #4b4b4b;
}

/*---custom-radio-button---*/

/*[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #cecece;
    background: #f9f9f9;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #4a4a4a;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}*/

/*---custom-radio-button---*/

.common-background {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.fixed-bg {
    background-attachment: fixed !important;
}

.image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.common-left-right-padding {
    padding-left: 100px;
    padding-right: 100px;
}

.sec_pad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.row-reverse {
    flex-direction: row-reverse;
}

.sub-heading {
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    color: #fff;
    padding: 20px 30px;
    text-align: center;
    min-width: 180px;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    border-radius: 100px;
    background: #0b223e;
    border: 1px solid transparent;
    text-transform: capitalize;
}

.btn:hover {
    color: #fff;
    background: #000;
}

/*---common-style---*/

/*---login---*/

.login-left-wrap {
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.login-left-wrap figcaption p {
    color: #4b4b4b;
}

.login-left-wrap figcaption ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.login-left-wrap figcaption ul li {
    margin: 10px;
}

.login-right-wrap {
    padding: 150px;
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    background: #f1f5fa;
}

.login-right-wrap::-webkit-scrollbar,
.login-left-wrap::-webkit-scrollbar {
    width: 0;
}

.login-right-wrap::-webkit-scrollbar-track,
.login-left-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.login-right-wrap::-webkit-scrollbar-thumb,
.login-left-wrap::-webkit-scrollbar-thumb {
    background: transparent;
}

.login-left-wrap figure {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px;
}

.login-form-wrap .form-group {
    margin-top: 30px;
}

.password-wrap .form-control {
    padding-right: 60px;
}

.password-wrap i {
    position: absolute;
    right: 25px;
    top: 50%;
    color: #a0a0a0;
    cursor: pointer;
    font-size: 20px;
    transform: translateY(-50%);
}

.password-wrap i.fa-eye:before {
    content: "\f06e" !important;
}

.login-right-wrap .login-logo {
    max-width: 275px;
    margin: 0 auto 100px;
}

.login-right-wrap .form-control {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}

/*---login---*/

/*---product---*/

.custom-header {
    background: #f1f5fa;
    padding: 25px 50px;
    border-bottom: 1px solid #d4ddff;
    min-height: 111px;
}

.custom-header .logo-wrap {
    max-width: 185px;
}

.custom-header .search-wrap .form-control {
    padding-right: 70px;
    border: 1px solid rgba(11, 34, 62, 0.2);
    box-shadow: 0px 4px 12px 0px rgba(13, 82, 167, 0.2);
}

.custom-header .search-wrap input[type="button"] {
    background: url("../images/search-ic.svg") no-repeat;
    background-size: 18px;
    padding: 0;
    border: none;
    width: 60px;
    height: 100%;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
}

.custom-header .search-wrap {
    max-width: 890px;
    margin: 0 auto;
}

.logout-wrap a {
    color: #0b223e;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 120px;
    margin-left: auto;
}

.logout-wrap a span {
    margin-left: 10px;
}

.logout-wrap a:hover {
    text-decoration: underline;
}

.product-body-sec {
    background: #f1f5fa;
}

.product-left {
    border-right: 1px solid #d4ddff;
    height: calc(100vh - 111px);
    overflow: hidden;
    overflow-y: scroll;
    background: #f1f5fa;
    z-index: 1;
}

.product-right {
    height: calc(100vh - 111px);
    overflow: hidden;
    overflow-y: scroll;
}

.product-left::-webkit-scrollbar {
    width: 4px;
}

.product-right::-webkit-scrollbar {
    width: 6px;
}

.product-left::-webkit-scrollbar-track,
.product-right::-webkit-scrollbar-track {
    background: #f1f5fa;
}

.product-left::-webkit-scrollbar-thumb,
.product-right::-webkit-scrollbar-thumb {
    background: #d4ddff;
}

.product-left .form-group {
    padding: 40px 50px;
    border-bottom: 1px solid #d4ddff;
}

.product-left .form-group .form-select {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}

.product-left .accordion-item {
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d4ddff;
}

.product-left .accordion-button {
    background: transparent;
    border-radius: 0 !important;
    border: none;
    box-shadow: none;
    padding: 40px 50px;
    font-size: clamp(14px, 4vw, 20px);
    font-weight: 700;
}

.product-left .accordion-body {
    padding: 0 50px 40px;
}

.product-left .form-checkbox {
    display: block;
    margin-bottom: 20px;
}

.product-left .form-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.product-left .form-checkbox label {
    position: relative;
    cursor: pointer;
}

.product-left .form-checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #4b4b4b;
    padding: 12px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    border-radius: 5px;
    top: -2px;
}

.product-left .form-checkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 10px;
    width: 8px;
    height: 16px;
    border: solid #4b4b4b;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.product-left .gender-checkbox-wrap .form-checkbox:last-child {
    margin-bottom: 0;
}

.custom-price-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 12px;
}

.custom-price-wrap .form-radio {
    width: calc(50% - 5px);
}

.custom-price-wrap .form-radio label {
    border: 1px solid #b6c9e4;
    border-radius: 50px;
    padding: 16px 15px;
    line-height: 16px;
    background: transparent;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.custom-price-wrap .form-radio input[type="radio"] {
    display: none;
}

.custom-price-wrap .form-radio input[type="radio"]:checked+label {
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.gender-checkbox-wrap.d-flex .form-checkbox {
    margin-right: 20px;
}

.get-app-sec {
    margin: 0 50px 40px;
    border-radius: 20px;
    padding: 40px 25px;
}

.get-app-sec p {
    color: #4b4b4b;
}

.get-app-sec ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.get-app-sec ul li {
    width: 50%;
    padding: 5px;
}

.toggle-btn {
    display: none;
}

.product-left .toggle-btn {
    position: absolute;
    right: 5px;
    top: 5px;
}

.product-left .toggle-btn .toggle {
    background: #fff;
    border-radius: 100%;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 40px;
}

.product-right .toggle-btn .toggle {
    background: transparent;
    border: 1px solid #000;
    padding: 7px 15px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 150px;
}

.export-with-sortby ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.export-with-sortby ul li {
    margin-left: 40px;
}

.export-with-sortby ul li a {
    font-weight: 700;
    color: #0b223e;
}

.export-with-sortby ul li a:hover {
    text-decoration: underline;
}

.export-with-sortby ul li a span {
    margin-right: 10px;
}

.export-with-sortby ul li .form-select {
    background-color: transparent;
    padding: 10px;
    padding-right: 50px;
    box-shadow: none;
    height: auto !important;
    color: #0b223e !important;
    font-weight: 700;
}

.product-right {
    padding: 40px 30px;
}

.items-selected-wrap {
    margin-top: 20px;
}

.items-selected-wrap input[type="button"] {
    position: absolute;
    right: 0;
    background: url("../images/cross.svg") no-repeat;
    background-size: 18px;
    background-position: center center;
    width: 60px;
    height: 60px;
    border: none;
    box-shadow: none;
    left: 0;
    top: 0;
}

.items-selected-wrap .form-control {
    padding-left: 70px;
    background: #d8e4f3;
    border-radius: 15px;
}

.single-product {
    border-radius: 20px;
    background: #fff;
    padding: 60px 30px 30px;
    height: 100%;
}

.single-product figure {
    margin-bottom: 60px;
    text-align: center;
    height: 200px;
    overflow: hidden;
    background-color: #fff;
}

.single-product figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.single-product figcaption p {
    color: #9ca0af;
}

.product-listing-wrap .col-lg-3 {
    margin-top: 30px;
}

.single-product .form-checkbox {
    position: absolute;
    top: 20px;
    left: 20px;
}

.single-product .form-checkbox input {
    display: none;
}

.single-product .form-checkbox label {
    position: relative;
    cursor: pointer;
    width: 26px;
    height: 26px;
}

.single-product .form-checkbox label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #4b4b4b;
    padding: 11px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 100%;
    top: 0;
    width: 26px;
    height: 26px;
}

.single-product .form-checkbox input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    background: url("../images/check-ic.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    width: 16px;
    height: 16px;
    left: 5px;
    top: 8px;
}

.single-product figcaption h2 small {
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    color: #4b4b4b;
}

.product-details-modal .modal-dialog {
    max-width: 1380px;
    padding: 25px 25px;
}

.product-details-modal .modal-body {
    padding: 50px;
    background: #f1f5fa;
    border-radius: 20px;
}

.product-details-modal .modal-content {
    border-radius: 20px;
}

.product-details-modal .btn-close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #fff;
    filter: drop-shadow(0px 4px 10px rgba(11, 34, 62, 0.39));
    opacity: 1;
}

.product-details-wrap figure {
    max-width: 500px;
    margin: 0 auto;
}

.product-details-wrap figcaption ul {
    margin-top: 30px;
}

.product-details-wrap figcaption ul li {
    margin-bottom: 20px;
    color: #4b4b4b;
    display: flex;
    flex-wrap: wrap;
}

.product-details-wrap figcaption ul li span {
    width: 50%;
    padding-right: 15px;
}

.product-details-wrap figcaption ul li strong {
    width: 50%;
}

.product-details-wrap figcaption ul li:last-child {
    margin-bottom: 0;
}

.logout-modal .modal-content {
    border-radius: 20px;
}

.logout-modal .modal-body {
    border-radius: 20px;
    padding: 80px 30px;
}

.logout-modal .modal-body .btn {
    margin: 5px;
}

.logout-modal .modal-body .btn.bordered {
    color: #0b223e;
    background: #fff;
    border: 1px solid #0b223e !important;
}

.logout-modal .modal-body .btn.bordered:hover {
    color: #fff;
    background: #000;
}

/*---product---*/

p.text-danger {
    font-size: 14px;
}

.form-select .mat-mdc-select-trigger {
    height: 40px;
}

.product-left .form-group .form-select {
    background-image: none;
}

input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer !important;
}

.reset {
    background: #c59501;
}

.logout-modal .form-control {
    border: 1px solid rgba(11, 34, 62, 0.2);
    box-shadow: 0px 4px 12px 0px rgba(13, 82, 167, 0.2);
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
    background: #052c65 !important;
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
    color: #052c65 !important;
}


div.mat-mdc-select-panel::-webkit-scrollbar {
    width: 4px;
}

div.mat-mdc-select-panel::-webkit-scrollbar-track {
    background: #f1f5fa;
}

div.mat-mdc-select-panel::-webkit-scrollbar-thumb {
    background: #d4ddff;
}

.product-details-wrap .product-link {
    word-break: break-word;
}

.product-details-wrap {
    max-height: 70vh;
    overflow: hidden;
    overflow-y: scroll;
}

.product-details-wrap::-webkit-scrollbar {
    width: 4px;
}

.product-details-wrap::-webkit-scrollbar-track {
    background: #f1f5fa;
}

.product-details-wrap::-webkit-scrollbar-thumb {
    background: #d4ddff;
}

.product-list-brand {
    font-weight: 400;
    font-size: 16px;
    color: black !important;
}

/*----body-----*/

/*-------Responsive------*/

@media screen and (max-width: 1599px) {

    .product-left .form-group,
    .product-left .accordion-button {
        padding: 30px 30px;
    }

    .custom-header {
        padding: 25px 30px;
    }

    .product-left .accordion-body {
        padding: 0 30px 30px;
    }

    .get-app-sec {
        margin: 0 30px 30px;
        padding: 30px 20px;
    }

    .product-body-sec .col-lg-3 {
        width: 33.33%;
    }

    .product-body-sec .col-lg-9 {
        width: 66.67%;
    }

    .custom-header .search-wrap {
        max-width: 600px;
    }

    .product-right {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 1299px) {

    .login-left-wrap,
    .login-right-wrap {
        padding: 50px;
    }

    .login-right-wrap .login-logo {
        max-width: 250px;
        margin: 0 auto 50px;
    }
}

@media screen and (max-width: 1199px) {

    .product-left .form-group,
    .product-left .accordion-button {
        padding: 15px 15px;
    }

    .custom-header {
        padding: 25px 15px;
    }

    .product-left .accordion-body {
        padding: 0 15px 15px;
    }

    .get-app-sec {
        margin: 0 15px 15px;
        padding: 20px 15px;
    }

    .form-select {
        padding: 10px 20px;
    }

    .custom-price-wrap .form-radio label {
        padding: 10px 10px;
        line-height: 14px;
        font-size: 14px;
    }

    .product-right {
        padding: 20px 10px;
    }

    .export-with-sortby ul li {
        margin-left: 10px;
    }

    .single-product {
        padding: 60px 15px 15px;
    }

    .custom-header .search-wrap {
        max-width: 480px;
    }

    .single-product figure {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 991px) {
    .toggle-btn {
        display: block;
    }

    .product-left {
        position: fixed;
        transform: translateX(-100%);
        max-width: 420px;
        transition: 0.5s;
    }

    .menu-toggle .product-left {
        transform: translateX(0);
        transition: 0.5s;
        height: calc(100vh - 131px);
    }

    .login-left-wrap,
    .login-right-wrap {
        padding: 50px 30px;
        height: auto;
        overflow-y: unset;
    }

    .login-right-wrap .login-logo {
        max-width: 200px;
        margin: 0 auto 30px;
    }

    .product-body-sec .col-lg-9,
    .product-body-sec .col-lg-3 {
        width: 100%;
    }

    .product-listing-wrap .col-md-6 {
        width: 50%;
    }

    .custom-header .logo-wrap {
        max-width: 150px;
    }

    .custom-header {
        padding: 10px 15px;
        height: 131px;
    }

    .custom-header .col-lg-8 {
        order: 3;
        width: 100%;
    }

    .custom-header .col-lg-2 {
        width: 50%;
    }

    .custom-header .search-wrap {
        max-width: 100%;
        margin-top: 10px;
    }

    .product-right {
        height: calc(100vh - 131px);
    }

    .product-details-modal .modal-body {
        padding: 20px 15px;
    }

    .product-details-wrap figcaption ul li {
        margin-bottom: 10px;
    }

    .logout-modal .modal-body {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 767px) {
    .product-details-wrap figure {
        max-width: 500px;
        margin: 0 auto 20px;
    }
}

@media screen and (max-width: 480px) {
    .product-right .toggle-btn .toggle {
        max-width: 100%;
    }

    .product-title-wrap {
        text-align: center;
    }

    .export-with-sortby ul {
        display: block;
    }

    .export-with-sortby ul li {
        margin: 10px;
    }

    .menu-toggle .product-left {
        max-width: 100%;
    }

    .product-listing-wrap .col-md-6 {
        width: 100%;
        margin-top: 20px;
    }

    .single-product .form-checkbox input:checked+label:after {
        top: 6px;
    }

    .export-with-sortby ul li .form-select {
        border: 1px solid;
    }
}

/*-------Responsive------*/