﻿.page-background .page-content-area {
    margin: 0;
}

.page-background .page-container {
    max-width: 100%;
    padding: 0 48px;
}

.colors-and-surfaces-area {
    padding-top: 34px;
    padding-bottom: 45px;
    display: flex;
    flex-direction: column;
    row-gap: 34px;
}

.page-search {
    width: 535px;
    margin: auto;
    max-width: calc(100% - 20px);
    position: relative;
    background: #fff;
}

    .page-search .input-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translate(0, -50%);
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .page-search input {
        padding: 14px;
        width: 100%;
        padding-left: 54px;
        font-family: Inter;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        border: none;
        outline: none;
        box-shadow: none;
    }

        .page-search input::placeholder {
            font-family: Inter;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            color: #4444446B;
        }


.colors-list {
    background: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    padding: 40px 24px;
    width: 280px;
    max-width: 100%;
}

    .colors-list ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        row-gap: 33px;
    }

        .colors-list ul li a {
            font-family: Open Sans;
            font-weight: 600;
            font-size: 15px;
            line-height: 23px;
            color: #000;
            text-decoration: none;
        }

            .colors-list ul li a.active {
                color: #D1000F;
            }

.colors-list-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #000;
}

.color-detail-area {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    padding: 24px;
    background: #fff;
    visibility: visible;
    opacity: 1;
    transition: .4s;
}
.color-detail-area.hidden
{
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}


.color-specifications {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

    .color-specifications .color-specification {
        display: flex;
        align-items: center;
        column-gap: 20px;
    }

.color-detail-right {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    position: relative;
}

.color-detail-titles {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.color-detail-title-and-description {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid #E0E0E0;
}

.color-detail-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    text-transform: capitalize;
    color: #000000;
    padding-right: 32px;
}

.color-detail-subtitle {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #6D7175;
}

.color-detail-description {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    color: #D1000F;
}

.color-specifications-area {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.color-specifications-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

.color-specification-title {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #444444;
}

.color-specification-value {
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #000;
}

.color-detail-buttons {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

    .color-detail-buttons button {
        padding: 10px 20px;
        width: 100%;
        display: flex;
        align-items: center;
        column-gap: 10px;
        justify-content: center;
    }

    .color-detail-buttons .download-catalog-button {
        background: #fff;
        border: 1px solid #D1000F;
        font-family: Inter;
        font-weight: 700;
        font-size: 15px;
        line-height: 23px;
        color: #D1000F;
    }

    .color-detail-buttons .product-request-button {
        background: #D1000F;
        font-family: Inter;
        font-weight: 700;
        font-size: 15px;
        line-height: 23px;
        color: #fff;
        border: 1px solid #D1000F;
    }

.color-selection-area {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.color-selection-list {
    width: 100%;
    display: flex;
    align-items: center;
    background: #F9F9F9;
    padding: 6px;
}

.color-selection {
    padding: 3px 2px;
    background: #fff;
}

.color-selection .color {
    width: 48px;
    height: 62px;
    border-radius: 20px;
}

.color-selection-prev, .color-selection-next {
    height: -webkit-fill-available;
    width: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .color-selection-prev button, .color-selection-next button {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        outline: none;
        box-shadow: none;
    }

.close-color-detail {
    position: absolute;
    top: 10px;
    right: 0;
}

    .close-color-detail button {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        border: none;
        outline: none;
        box-shadow: none;
        background: none;
    }