.catalog_page > h1, .catalog_page > h2 {
    text-align: center;
    color: #FFFFFF;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    padding: 25px;
    background-color: #EC4100;
    font-size: 25px;
    letter-spacing: 2px;
}

.container_product {
    min-height: 50vh;
    position: relative;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card_product {
    background: white;
    box-sizing: border-box;
    box-shadow: 1px 1px 7px 4px #ccc;
    min-height: 310px;
    position: relative;
    margin: 35px;
    flex-grow: 1;
    min-width: 304px;
}

.card_product > h4 {
    margin: 0;
    letter-spacing: 1px;
    width: 100%;
    background-color: #242423;
    color: #fff;
    padding: 15px 15px;
    box-sizing: border-box;
}

.card_category {
    z-index: 1;
    right: 15px;
    top: 17px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #aca7c7;
}

.card_body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card_product .img_ava {
    position: relative;
    max-width: 270px;
    border-radius: 0 0px 45px 0;
    overflow: hidden;
    left: 0;
    flex-grow: 1;
}

.card_product .img_ava img {
    width: 100%;
    border-radius: inherit;
}

.prices_card {
    align-self: stretch;
    padding: 15px 20px 15px 15px;
    box-sizing: border-box;
    text-align: right;
    flex-grow: 1;
}

.price_product {
    font-size: 22px;
    white-space: nowrap;
    margin: 15px 0;
}

.old_price_product {
    font-size: 13px;
    color: #aca7c7;
    letter-spacing: 1px;
    white-space: nowrap;
}

p.mini_descript {
    letter-spacing: 1px;
    color: #aca7c7;
    font-size: 15px;
}

p.mini_descript span {
    color: #ec4100;
}

.more_product {
    margin: 20px 0;
    padding: 10px 30px;
    background-color: #ec4100;
    border: 2px solid #ec4100;
    color: #fff;
    display: inline-block;
    box-sizing: border-box;
    max-width: 165px;
    text-decoration: none;
}

/* modal window */
.form_description_product {
    position: fixed;
    top: 35%;
    left: -50%;
    margin: auto;
    display: none;
    opacity: 1;
    z-index: 99999999;
    min-width: 225px;
    transform: translate(-50%, -35%);
    background-color: #ffffff;
    box-sizing: border-box;
    width: 90%;
    max-width: 1200px;
    min-height: 600px;
    transition: 0.5s;
    transition-property: width, height;
}

.description_close {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 20px;
    height: 20px;
    z-index: 10001;
    cursor: pointer;
    z-index: 99999999999999999;
}

.description_body {
    height: 100%;
}

.description_close span {
    position: absolute;
    display: block;
    top: 9px;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    left: 0;
    background-color: #fff;
    transition: all 0.3s;
}

.description_close span:nth-child(1) {
    transform: rotate(135deg);
}

.description_close span:nth-child(2) {
    transform: rotate(-135deg);
}

.description_close:hover {
    opacity: 0.5;
    transition: 0.5s;
    color: rgba(0, 0, 0, 0.7);
}

.description_overlay {
    z-index: 1000050;
    position: fixed;
    background-color: rgba(26, 27, 32, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

.description_title {
    margin: 0;
    letter-spacing: 1px;
    width: 100%;
    background-color: #EC4100;
    color: #fff;
    padding: 15px 25px;
    box-sizing: border-box;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container_descript {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.container_info {
    flex-grow: 1;
    flex-basis: 50%;
    padding: 50px;
    box-sizing: border-box;
    text-align: left;
    background-color: rgba(236, 65, 0, 0.04);
}

.container_info > p {
    font-size: 19px;
    letter-spacing: 1px;
    filter: blur(0px);
    margin: 10px 0;
    font-size: 20px;
    color: #aca7c7;
}

.container_info p span {
    color: #ec4100;
    font-size: 20px;
}

.description_full {
    line-height: 35px;
    color: #000;
    filter: blur(0px);
    letter-spacing: 1px;
    border: 1px solid #ec4100;
    padding: 15px 0;
    box-sizing: border-box;
    border-width: 1px 0 1px 0;
}

.description_full b {
    color: #aca7c7;
}

p.description_price {
    font-size: 25px;
    color: #aca7c7;
}

p.description_price span {
    color: #ec4100;
    font-size: 30px;
}

p.description_old_price {
    font-size: 15px;
    color: #aca7c7;
    margin-bottom: 5px;
}

p.description_old_price span {
    color: #ec4100;
    font-size: 20px;
    text-decoration: line-through;
    text-decoration-color: rgba(1, 1, 1, 0.42);
    text-decoration-style: solid;
}

.container_info h6 {
    margin: 5px 0;
    font-size: 13px;
    line-height: 25px;
    border-top: 1px solid #ec4100;
    padding: 10px 0;
    font-weight: bold;
    width: 100%;
}

.description_inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.description_inputs input {
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 100%;
    border: 1px solid #ec4100;
    margin: 0;
    width: 55%;
}

.description_inputs > button {
    margin: 20px 0;
}

.description_slider {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    flex-basis: 50%;
    margin-bottom: 35px;
    padding: 30px;
    box-sizing: border-box;
    min-width: 320px;
    max-width: 500px;
}

.description_slider>ul {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: inherit;
    height: inherit;
    padding: 0;
    margin: 0;
    list-style: none;
}

.description_slider>ul li {
    position: relative;
    width: 100%;
    height: 40vh;
    display: none;
    opacity: 0;
    transition: 0.5s;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.description_slider>ul li.active_slide {
    display: block;
    opacity: 1;
}

.description_slider>ul li img {
    width: 100%;
    border-radius: inherit;
}

.description_slider>nav {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 10px 0;
    box-sizing: border-box;
}

.description_slider>nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.description_slider>nav ul li {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px;
    height: 6vh;
    width: 6vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    outline: 2px solid #EC4100;
    outline-offset: 3px;
    margin: 15px;
}

.description_slider>nav ul li img {
    position: relative;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.description_slider > small {
    letter-spacing: 1px;
    font-size: 12px;
    color: #909090;
}

@media (max-width: 900px) {
    .form_description_product {
        width: 100%;
        height: 100%;
        bottom: 0;
        top: 0;
        transform: translateX(-50%);
    }

    .container_descript {
        overflow-y: scroll;
    }

    .description_inputs {
        margin-bottom: 65px;
    }

    .description_close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 500px) {
    .container_product {
        padding: 40px 10px;
    }

    .card_product {
        margin: 15px;
    }
}
