html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Rubik", sans-serif;
}

* {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /*--base-color: hsl(43, 63%, 53%, 1);*/
    --base-color: hsl(210, 11%, 15%, 1);
    --color-white-100: hsl(0, 0%, 100%);
    --color-white-200: hsl(0, 0%, 95%);
    --color-black-500: hsl(210, 15%, 4%);
    --color-blue-300: hsl(217, 91%, 50%);
    --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    border-radius: 20px;
    border: 3px solid #d3d3d3;
}

::-webkit-scrollbar-track {
    background: #f7f7f7;
    border-radius: 20px;
}

main, section {
    overflow: hidden;
}

.section {
    margin-inline: auto;
    margin-block: 5rem 2rem;
}

.menuFixed {
    position: fixed;
    width: 100vw;
}

.containers {
    max-width: 82rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.sud.page-content {
    margin-top: 96px;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-blue-300);
}

.navbar1 {
    width: 100%;
    height: 4.6rem;
    margin-inline: auto;
    line-height: 2.1;
}

.navbar-inner1 {
    position: relative;
}

.user_cart_shrt {
    position: absolute;
    right: -10px;
    top: 7px;
    cursor: pointer;
}

.navbar-block1 {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: var(--color-white-100);
    transition: opacity 0.4s ease;
}

    .navbar-block1.is-active {
        opacity: 1;
        pointer-events: initial;
        top: 84px;
    }

.bi-cart {
    font-size: 23px;
    color: var(--base-color);
    vertical-align: bottom;
}

.bi-heart {
    font-size: 22px;
    color: var(--base-color);
    vertical-align: -webkit-baseline-middle;
}

.user_cart_shrt .bi-search-heart {
    font-size: 22px;
    color: var(--base-color);
    vertical-align: -webkit-baseline-middle;
}

@media screen and (min-width: 62rem) { /*.navbar1 { display: flex; justify-content: space-between; }*/
    .navbar1 {
        height: 6.1rem;
    }

    .sud.page-content {
        margin-top: 120px;
    }

    .navbar-block1 {
        position: initial;
        height: 38px;
        opacity: 1;
        overflow: auto;
        pointer-events: visible;
        background: none;
        transition: none;
    }

    .menu-item .dropdowns-toggle {
        position: relative;
    }

    .menu-item:hover .dropdowns-toggle::after {
        right: -15px !important;
        color: #000000;
    }

    .menu .menu-link:after {
        border-bottom: 2px solid;
        border-bottom-color: #000000;
        bottom: 0;
        content: "";
        display: block;
        left: -15px;
        margin: 0 15px;
        position: absolute;
        right: 100%;
        transition: right .5s;
    }
}

.menu {
    padding-block: 1rem;
    padding-inline: auto;
    color: #000000;
}

.menu-link {
    font-size: 15px;
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: var(--color-black-500);
    transition: color 0.3s ease;
}

/*Desktop*/
@media screen and (min-width: 62rem) {
    .menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 100%;
        padding: unset;
        color: #000000;
    }

    .menu-item {
        display: flex;
        cursor: pointer;
        padding-inline: 1.0rem;
    }

    .menu-link {
        padding: unset;
    }

    .modal-open .header {
        padding-right: 6px;
    }
}

.dropdowns-toggle {
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .dropdowns-toggle i.bi {
        font-size: 1.2rem;
        line-height: inherit;
        transition: rotate 0.4s ease;
    }

.dropdowns-content {
    height: 0;
    overflow: hidden;
    background-color: var(--color-white-100);
    transition: height 0.5s ease;
}

.dropdowns-column, .dropdowns-group, .dropdowns-items {
    display: grid;
}

.dropdowns-group {
    padding-bottom: 1rem;
    padding-inline: 1.5rem;
}

.dropdowns-title {
    display: flex;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    align-items: center;
    padding-inline: 1rem;
}

.dropdowns-icon i.bi {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--color-blue-300);
}

.dropdowns-items {
    row-gap: 0rem;
    padding-inline: 3.5rem;
    padding-top: 0.35rem;
}

.dropdowns-link {
    font-size: 15px;
    font-weight: 400;
    line-height: inherit;
    color: var(--color-black-500) !important;
    transition: color 0.3s ease;
}

    .dropdowns-link:hover {
        color: var(--base-color) !important;
    }

.dropdowns-show > .dropdowns-toggle i.bi {
    rotate: 180deg;
}

.dropdowns-block {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
    .dropdowns-toggle {
        -moz-column-gap: 0.35rem;
        column-gap: 0.35rem;
        /*pointer-events: none;*/
    }

    .dropdowns-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 7.6rem;
        opacity: 0;
        height: max-content;
        pointer-events: none;
        background-color: var(--color-white-100);
        border-top: 1px solid var(--color-white-200);
        box-shadow: var(--shadow-medium);
    }

    .dropdowns-column {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        max-width: 75rem;
        margin-inline: auto;
    }

    .dropdowns-group {
        align-content: baseline;
        row-gap: 1.25rem;
        padding-block: 4rem;
    }

        .dropdowns-group:first-child, .dropdowns-group:last-child {
            margin: unset;
        }

    .dropdowns-items {
        padding-top: unset;
    }

    .dropdowns-block {
        padding-top: unset;
        padding-inline: unset;
    }

    .dropdowns:hover > .dropdowns-content {
        cursor: initial;
        top: 7.3rem;
        opacity: 1;
        pointer-events: initial;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.5rem;
    height: 1rem;
    border: none;
    outline: none;
    visibility: visible;
    bottom: 35px;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.15px;
    opacity: 1;
    rotate: 0deg;
    border-radius: 0.15rem;
    background-color: var(--color-black-500);
    transition: all 0.3s ease;
}

    .burger-line:nth-child(1) {
        top: 0px;
    }

    .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 70%;
    }

    .burger-line:nth-child(3) {
        top: 1rem;
    }

.burger.is-active > .burger-line:nth-child(1) {
    top: 0.5rem;
    rotate: 135deg;
}

.burger.is-active > .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.is-active > .burger-line:nth-child(3) {
    top: 0.5rem;
    rotate: -135deg;
}

.dropdowns-group .text-base {
    color: var(--base-color);
}

@keyframes offText {
    100% {
        margin-left: -610.078px;
    }
}


@media screen and (min-width: 62rem) {
    .burger {
        display: none;
        visibility: hidden;
    }

    span.user_cart_shrt span {
        margin-right: 15px;
    }

    .logo_img {
        float: left;
    }
}

a {
    text-decoration: unset;
}

footer {
    background-color: var(--base-color) !important;
}

@media screen and (max-width: 992px) {
    span.user_cart_shrt span {
        margin-right: 10px;
    }

    .navbar-inner1 a {
        margin-left: 2.4rem;
    }
}

@media screen and (max-width: 810px) {
    .searchbar {
        display: none
    }
}

.searchbar {
    display: show
}

.searchInput input::placeholder {
    font-size: 15px
}

.searchbar .searchInput {
    display: inline-block;
    width: 38%;
    position: absolute;
    top: 10px;
    left: 31%;
    z-index: 1;
}

.searchInput input {
    border: 1px solid var(--base-color);
    height: 40px;
    width: 100%;
    outline: none;
    border-radius: 7px;
    padding: 0 60px 0 20px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

/*.searchInput.active input { border-radius: 5px 5px 0 0; }*/

.searchInput .resultBox {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.searchInput.active .resultBox {
    background-color: white;
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.resultBox li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.searchInput.active .resultBox li {
    display: block;
}

.resultBox li:hover {
    background: #efefef;
}

.searchInput .icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #644bff;
    cursor: pointer;
}

#login_modal .modal-dialog-slideout {
    min-height: 100%;
    margin: 0 0 0 auto;
    background: #fff;
}

#login_modal.modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(100%, 0)scale(1);
    transform: translate(100%, 0)scale(1);
}

#login_modal.modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    display: flex;
    align-items: stretch;
    -webkit-box-align: stretch;
    height: 100%;
}

    #login_modal.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body {
        overflow-y: auto;
        overflow-x: hidden;
    }

#login_modal .modal-dialog-slideout .modal-content {
    border: 0;
}

#login_modal .modal-dialog-slideout .modal-header,
#login_modal .modal-dialog-slideout .modal-footer {
    height: 4rem;
    display: block;
}

img {
    border-radius: 3px;
}

.input_field {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 45px;
    line-height: 52px;
    padding: 0 18px;
    border-radius: 4px;
    border: 1px solid rgba(34, 34, 34, 0.15);
    box-shadow: none;
    background: 0 0;
    /*color: var(--form-input-color);*/
    transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .input_field:focus {
        border-color: rgb(var(--text-color));
        box-shadow: 0 0 0 1px rgb(var(--text-color)) inset;
        outline: 0;
    }


.input_label {
    position: absolute;
    left: 12px;
    top: calc((45px / 2) - 0.5em);
    padding: 0 5px;
    pointer-events: none;
    transform: translateY(0);
    transform-origin: left top;
    transition: transform 0.2s ease-in-out;
    background: rgb( 255, 255, 255 );
    color: rgba(34,34,34, 0.7);
    line-height: 1;
    white-space: nowrap;
}

    :focus-within ~ .input_label, .input_label.active {
        transform: scale(0.733) translateY(calc(-20px - 0.5em)) translateX(calc(5px* 0.733));
    }

.input_field-link {
    position: absolute;
    top: 1.1em;
    right: 10px;
    font-size: 13px;
    background: unset;
    text-decoration: underline;
}

.login, #user_Create {
    flex: 0 0 80%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    background: var(--base-color);
    color: #fff
}

.logging {
    animation: blinker 1.2s linear infinite;
    pointer-events: none;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/*.logging {
    background-color: gray;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}*/

.fs-20 {
    font-size: 20px;
    color: #000000;
}

.cp {
    cursor: pointer;
}
/*skeleton Loader*/

.skeleton {
    background-color: #f0f0f0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-size: 40px 100%;
    background-repeat: no-repeat;
    background-position: left -40px top 0;
    -webkit-animation: shine 1s ease infinite;
    animation: shine 1s ease infinite;
    border-radius: 3px;
}

@-webkit-keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}

@keyframes shine {
    to {
        background-position: right -40px top 0;
    }
}
