body {
    height: 100%;
    position: relative;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

img {
    user-select: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
    background-color: #fff;

    & > .wrapper {
        display: flex;
        flex-direction: column;
        
        width: 100vw;
        overflow: hidden;

        & > .wrapper-top {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            width: 100vw;
            height: 90px;
            

            & > .logo-image {
                margin-left: 30px;
                width: 300px;
                height: 33px;
            }

            & > .search-bar {
                position: absolute;
                left:0;
                right:0;
              
                margin-left: auto;
                margin-right: auto;
                
                width: 400px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                border-radius: 8px;

                & > input[type=text] {
                    flex: 1;
                    padding: 9px 16px 10px 16px;
                    font-size: 17px;
                    border: 1px solid #ddd;
                    border-top-left-radius: 8px;
                    border-bottom-left-radius: 8px;

                    &:focus-visible {
                        outline: none;
                    }
                }

                & > button {
                    float: right;
                    padding: 11px 16px 10px 16px;
                    background: #E31E24;
                    color: #fff;
                    font-size: 17px;
                    border: none;
                    cursor: pointer;
                    border-top-right-radius: 8px;
                    border-bottom-right-radius: 8px;
                }
            }

            & > .user-card {
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin-right: 50px;
    
                & > .profile {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
    
                    & > img {
                        height: 40px;
                        width: 40px;
                        background-color: #fff;
                    }
                }
    
                & > .cart {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
    
                    margin-left: 15px;
        
                    & > img {
                        height: 35px;
                        width: 35px;
                        background-color: #fff;
                    }
                }
            }
        }

        & > .wrapper-bottom {
            width: 100vw;
            background-color: #fff;
            border-top: 1px solid #ddd;

            & > .nav-list {
                flex: 1;
                height: 60px;
                display: flex;
                flex-direction: row;
                padding: 0;
                margin: 0;
                justify-content: center;
                z-index: 100;
    
                & > li {
                    list-style: none;
                    height: 60px;   
                    padding: 20px 20px 0px 20px;
    
                    & > a {
                        font-size: 16px;
                        font-weight: 400;
                        font-family: 'Lato', sans-serif;
                        background-color: transparent;
                        color: #000;
                    }
    
                    &:hover {
                        padding: 13px 30px 0px 30px;
    
                        & > a {
                            font-size: 22px;
                            font-weight: 400;
                            color: #E31E24;
                        }
                    }
                }
            }
        }
    }

    /*& > .header-content {
        position: absolute;
        top: 0;
        left: 0;
        height: calc(100vh - 150px);
        width: 100vw;
        padding-top: 100px;

        & > .guitar {
            height: calc(100vh - 150px);
            margin-left: 5vw;
            width: 90vw;
            background-color: rgba(255, 255, 255, 0.6);
        }
    }*/
}

.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;

    & > .slider-wrapper {
        width: 500vw;
        display: flex;
        flex-direction: row;
        animation-duration: 60s;
        animation-name: slide;
        animation-iteration-count: infinite;
        animation-direction: alternate;

        & > .slide {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            height: calc(88vh - 400px);
            width: 100vw;
            padding: 200px 100px 200px 150px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            background-color: #fff;
        
            & > .content-main {
                display: flex;
                flex-direction: row;
                justify-content: center;
                gap: 100px;

                & > .content-main-left {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;

                    & > .content-main-header {
                        color: #E31E24;
                        margin-bottom: 30px;
                        font-size: 60px;
                    }

                    & > .content-main-text {
                        color: #000;
                        font-size: 20px;
                        margin-bottom: 50px;
                    }

                    & > .link-main-button {
                        padding: 10px 20px;
                        background-color: #E31E24;
                        color: #fff;
                        align-self: flex-start;
                        border-radius: 5px;
                    }
                }

                & > img {
                    min-width: 400px;
                    min-height: 400px;
                    transform: scale(1) translateY(-20px);
                }
            }

        }
    }

    & > .info-block {
        height: 12vh;
        padding: 0px 200px;
        background-color: #FFF;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2vw;

        & > .info {
            height: 6vh;
            width: 20vw;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;

            & > .info-image {
                height: 5vh;
                width: 5vh;
                background-color: #fff;
                border: 2px solid #E31E24;
                border-radius: calc(2.5vh + 2px);

                & > img {
                    height: 5vh;
                    width: 5vh;
                    scale: 0.7;
                }
            }

            & > .info-content {
                margin-left: 1vw;
                display: flex;
                flex-direction: column;

                & > h4 {
                    margin: 0px;
                    color: #E31E24;
                }
    
                & > p {
                    font-size: 16px;
                    margin: 0px;
                    color: #000;
                }
            }

            &:nth-child(2) {
                & > .info-image {
                    overflow: hidden;

                    & > img {
                        margin-top: 0.4vh;
                        height: 4.7vh;
                        width: 4.7vh;
                        scale: 0.7;
                    }
                }
            }

            &:nth-child(3) > .info-image > img {
                scale: 0.9;
            }

            &:nth-child(4) > .info-image > img {
                scale: 0.6;
            }
        }
    }

    & > .bottom-slider {
        position: absolute;
        bottom: 0;
        width: 100vw;
        height: 12vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;


        & > i {
            color: #000;
            font-weight: 100;
            font-size: 20px;
            animation-duration: 2.8s;
            animation-name: bounce;
            animation-iteration-count: infinite;
            animation-direction: forwards;
            animation-timing-function: ease-in-out;
        }
    }

    & > .buttons {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 42vh;

        & > a {
            margin: 20px;
            height: 20px;
            width: 20px;
            border-radius: 100px;
            border: 1px solid #2a29294f;
            padding: 10px;

            & > i {
                height: 20px;
                width: 20px;
                font-size: 20px;
                font-weight: 100;
                color: #2a29294f;
            }

            &.left > i {
                margin-top: 1px;
                margin-left: 1px;
            }

            &.right > i {
                margin-top: 1.5px;
                margin-left: 4px;
            }
        }
    }
}

@keyframes slide {
    18% {
        margin-left: 0vw;
    }

    20% {
        margin-left: -100vw;
    }

    38% {
        margin-left: -100vw;
    }

    40% {
        margin-left: -200vw;
    }

    58% {
        margin-left: -200vw;
    }

    60% {
        margin-left: -300vw;
    }

    78% {
        margin-left: -300vw;
    }

    80% {
        margin-left: -400vw;
    }

    100% {
        margin-left: -400vw;
    }
}

@keyframes bounce {
    0% {
        margin-bottom: 20px;
    }

    50% {
        margin-bottom: 40px;
    }

    100% {
        margin-bottom: 20px;
    }
}

.animation-two{
    transition: all .2s ease-in-out;
}

.animation-three{
    transition: all .3s ease-in-out;
}

.animation-five{
    transition: all .5s ease-in-out;
}

.animation-ten{
    transition: all 1s ease-in-out;
}


/*test part*/

.slides {
    position: absolute;
    height: 80vh;
    width: 95vw;
    display: flex;
    flex-direction: row;
    margin-top: 17.1vh;
    margin-left: 3.7vw;

    & > .section-1 {
        height: 82.2vh;
        width: 30.63vw;
        
        background-color: #EB4019;

        & > .slide-text {
            display: flex;
            flex-direction: column;
            padding: 12.85vh 3.75vw;

            & > .slide-text-title {
                    text-transform: uppercase;
                    font-family: "Oswald";
                    color: rgb(255, 255, 255);
                    text-decoration: none;
                    white-space: normal;
                    text-align: left;
                    line-height: 100px;
                    letter-spacing: 0px;
                    font-weight: 600;
                    font-size: 100px;
                    backdrop-filter: none;
                    filter: none;
                    margin-bottom: 1.05vh;
            }

            & > p {
                font-family: "Plus Jakarta Sans";
                color: rgb(255, 255, 255);
                text-decoration: none;
                white-space: nowrap;
                min-height: 0px;
                min-width: 0px;
                max-height: none;
                max-width: none;
                text-align: left;
                line-height: 24px;
                letter-spacing: 0px;
                font-weight: 400;
                font-size: 20px;
                backdrop-filter: none;
                filter: none;
                margin-bottom: 3.9vh;
            }

            & > button {
                background-color: rgb(255, 255, 255);
                font-family: "Plus Jakarta Sans";
                color: rgb(0, 0, 0);
                text-decoration: none;
                white-space: nowrap;
                width: 37.7%;
                text-align: left;
                line-height: 44px;
                letter-spacing: 0px;
                font-weight: 500;
                font-size: 16px;
                border-color: rgb(255, 255, 255);
                border-style: solid;
                border-width: 1px;
                padding-left: 40px;
                padding-right: 40px;
                backdrop-filter: none;
                filter: none;
            }
        }
    }

    & > .section-2 {
        height: 82.2vh;
        width: 61.17vw;
        overflow: hidden;
        display: flex;
        align-items: center;

        & img {
            width: 100%;
        }

        & > .testtestasd {
            position: absolute;
            z-index: 20;
            margin-top: 600px;
            transform: translateX(50%);
            font-family: "Plus Jakarta Sans";
            background-color: #EB4019;
            border-radius: 8px;
            padding: 20px;
            color: #fff;
            text-decoration: none;
            white-space: nowrap;
            min-height: 0px;
            min-width: 0px;
            max-height: none;
            max-width: none;
            text-align: left;
            line-height: 40px;
            letter-spacing: 0px;
            font-weight: 600;
            font-size: 32px;
            backdrop-filter: none;
            filter: none;

            & > .testbaslik {
                text-transform: uppercase;
                font-family: "Oswald";
                color: rgb(255, 255, 255);
                text-decoration: none;
                white-space: normal;
                text-align: left;
                line-height: 30px;
                letter-spacing: 0px;
                font-weight: 600;
                font-size: 32px;
                backdrop-filter: none;
                filter: none;
            }
        }
    }
}

/*store*/

.store-list {
    display: flex;
    flex-direction: row;
    width: 86%;
    height: 100%;
    margin-top: 150px;
    margin-left: 7%;
    margin-right: 7%;

    & > .side-filter {
        height: 100%;
        flex-basis: 25%;

        & > .sidefilter-top {
            width: 86%;
            height: 10%;
            margin: 2%;
            margin-bottom: 5%;
            padding: 5%;
            background-color: #fff;
            border-radius: 5px;
            font-size: 20px;
            font-weight: 600;
            border: 1px solid #E31E24;

            & > ul {
                padding: 0px;
                margin: 0px;
                margin-top: 20px;
                list-style-type: none;

                & > li {
                    margin-top: 10px;
                    font-size: 16px;
                    font-weight: 400;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 10px;
                    cursor: default;

                    & > .triangle-right {
                        width: 0;
                        height: 0;
                        border-top: 6px solid transparent;
                        border-left: 8px solid #555;
                        border-bottom: 6px solid transparent;
                    }

                    &:hover {
                        color: #E31E24;
                        
                        & > .triangle-right {
                            border-left: 8px solid #E31E24;
                        }
                    }

                    &:active {
                        color: #E31E24;
                        
                        & > .triangle-right {
                            border-left: 8px solid #E31E24;
                        }
                    }

                    &:focus {
                        color: #E31E24;
                        
                        & > .triangle-right {
                            border-left: 8px solid #E31E24;
                        }
                    }
                }
            }
        }

        & > .sidefilter-field {
            width: 86%;
            height: 10%;
            margin: 2%;
            padding: 5%;
            background-color: #fff;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            border: 1px solid #E31E24;

            & > a {
                font-size: 20px;
                font-weight: 600;
            }

            & > input[type=text] {
                width: inherit;
                margin-top: 15px;
                padding: 9px 16px 9px 16px;
                font-size: 17px;
                border: 1px solid #ddd;
                border-radius: 4px;

                &:focus-visible {
                    outline: none;
                }
            }

            & > ul {
                padding: 0px;
                margin: 0px;
                margin-top: 10px;
                list-style-type: none;

                & > li {
                    margin-top: 10px;
                    font-size: 16px;
                    font-weight: 400;
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 10px;

                    > .triangle-right {
                        width: 0;
                        height: 0;
                        border-top: 6px solid transparent;
                        border-left: 8px solid #555;
                        border-bottom: 6px solid transparent;
                    }
                }
            }
        }
    }

    & > .main-list {
        height: 100%;
        padding-left: 2%;
        flex-basis: 75%;

        & > .list-header {
            background-color: #fff;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 17px;
            border-radius: 4px;
            border: 1px solid #E31E24;
            
            & > .filter {
                display: inline-flex;
                flex-wrap: nowrap;
                justify-content: space-around;
                align-items: center;
                padding-left: 0;
                margin-bottom: 0;
                list-style: none;

                & > .filter-field {
                    font-size: 12px;
                    line-height: 1;
                    font-weight: 600;
                    color: #000;
                    border-radius: 4px;
                    padding: 10px 15px;
                    margin-right: 10px;
                    text-decoration: none;
                    cursor: default;

                    &.active {
                        background-color: #cc1b20;
                        color: #fff;
                    }

                    &:hover {
                        background-color: #cc1b20;
                        color: #fff;
                    }
                }
            }
        }

        & > .product-list {
            display: flex;
            flex-direction: column;
            margin-top: 20px;
            gap: 2%;

            & > .row {
                width: 100%;
                display: flex;
                justify-content: flex-start;
                gap: 2%;
                margin-bottom: 2%;

                & > .product-frame {
                    flex-basis: 23.5%;

                    & > .product {
                        border: 1px solid #eee;
                        transition: .3s cubic-bezier(.25, .8, .25, 1);
                        min-height: 450px;
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        padding: 20px;
                        text-align: center;
                        border-radius: 4px;

                        & > .price {
                            & > p {

                            }
                        }
                    }
                }
            }
        }
    }
}

/*headers*/

h1 {
    line-height: 1.2;
    font-size: 32px;
    font-weight: 600;
    color: #272727;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #838383!important;
}

/*checkbox*/

.checkbox-wrapper-4 * {
    box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
}

/*.checkbox-wrapper-4 .cbx:hover {
    background: #d6d6d6;
}*/

.checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 2px solid #E31E24;
    transition: all 0.2s ease;
    background-color: #FFF;
}

.checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 2px;
    left: 1px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #E31E24;
}

.checkbox-wrapper-4 .cbx:hover span:last-child {
    color: #E31E24;
}

.checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: #E31E24;
    border-color: #E31E24;
    animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:last-child {
    color: #E31E24;
    animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
        width: 100%;
        display: inline-block;
    }
}
@-moz-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}
@-webkit-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}
@-o-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}
@keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}