

.delivery-list {
	display: flex;
	flex-direction: column;
	gap: 34px;
}


.delivery-item {
	display: flex;
	gap: 20px;
	font-family: 'Circe';
}

.delivery-item__img {
	min-width: 60px;
	min-height: 60px;
	max-height: 60px;
	max-width: 60px;
	border: 2px solid #D85D2B;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;

}

.delivery-item__img img {
	width: 26px;
}

.delivery-item__header {
	color: #253662;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 4px;
}
.delivery-item__term {
	font-weight: 350;
	font-size: 14px;
	color: #292D42;
	line-height: 21px;
}
.delivery-item__price {
	color: #D85D2B;
	font-weight: 700;
	font-size: 14px;
	line-height: 21px;
}
.delivery-item__body {
	color: #253662;
	font-size: 14px;
	font-weight: 350;
	line-height: 21px;
}

.nbutton-invert {
    font-size: 14px;
    font-weight: 400;
    color: #D85D2B;
    border-radius: 8px;
    padding: 10px 30px 10px 30px;
    cursor: pointer;
    transition-duration: .2s;
    display: inline-block;
    width: max-content;
    border: 1px solid #D85D2B;
    text-align: center;
}
.nbutton-invert:hover {
    background: #D85D2B;
    color: white;
}


.product-detail {
    font-family: Circe;
    margin-bottom: 80px;
}
.product-detail__top {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}
.product-detail__name h1 {
    color: #000000;
    margin: 0;
    font-family: Circe;
    font-weight: 700;
    font-size: 21px;
    line-height: 31px;
    padding-bottom: 10px;
}
.product-detail__header {
    display: flex;
    justify-content: space-between;
}
.product-detail__info {
    min-width: 320px;
}
.product-detail__rating .hits{
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
.product-detail__code {
    text-transform: uppercase;
    font-weight: 350;
    font-size: 12px;
    line-height: 18px;
}
.product-detail__numbers {
    padding: 15px 0 23px;
    color: #253662;
    font-size: 14px;
    line-height: 21px;
    font-weight: 350;
}
.product-detail__count {
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    position: relative;
}
.product-detail__count::before {
    position: absolute;
    content: '';
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    background: url(/images/icons/tick.svg);
    background-size: contain;
}
.product-detail__price {
    padding-top: 23px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.product-detail__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 16px;
}
.product-detail__buttons .order-button,
.product-detail__buttons .quick-order {
    min-width: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    line-height: 1;
    padding: 0;
}
.product-detail__additional-buttons {
    display: flex;
    gap: 15px;
}
.add-favorite,
.add-compare {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.add-compare.in-compare,
.add-favorite.in-favorite {
    background: #D85D2B;
}


.add-compare.in-compare img,
.add-favorite.in-favorite img,
.add-favorite:hover img,
.add-compare:hover img {
    filter: grayscale(1) brightness(1000%);
}
.product-detail__bottom {
    padding-top: 60px;
}
.product-detail__tabs-headers {
    display: flex;
    overflow: scroll;
}
.product-detail__tabs-header {
    flex: 1;
    font-size: 16px;
    text-transform: uppercase;
    color: #BCBCBC;
    line-height: 24px;
    text-align: center;
    padding: 10px 18px;
    transition-duration: .2s;
    border-bottom: solid 1px #bcbcbc;
    cursor: pointer;
    min-width: 150px;
}

.product-detail__tabs-header.active {
    border-bottom-color: #D85D2B;
    color: #253662;
}
.product-detail__tabs-content {
    padding-top: 23px;
    display: none;
    grid-template-columns: 1fr 1fr;
}
.product-detail__tabs-content.content-grid.active {
    display: grid;
}
.product-detail__tabs-content.content-design.active {
    display: flex;
}
.product-detail__tabs-content.active {
    display: block;
}
.product-detail__table {
    max-width: 380px;
}
.product-detail__table-item {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 6px 0;
    border-top: dashed 1px #ECECEC;
    border-bottom: dashed 1px #ECECEC;
}
.product-detail__table-item:first-child {
    border-top: none;
}
.product-detail__table-item:last-child {
    border-bottom: none;
}

.product-detail__table-item > div {
    flex: 1;
    text-align: left;
}
.product-detail__table-header {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    padding-bottom: 11px;

}
.product-detail__item-name {
    font-weight: 350;
    font-size: 14px;
    line-height: 21px;
}
.product-detail__item-value {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}
.product-detail__tabs-content.content-design .row-fluid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-detail__tabs-content.content-design a {
    color: #D85D2B;
    border-color: #D85D2B;
    width: unset;
    padding: 10px 20px;
}
.product-detail__tabs-content.content-design a br {
    display: none;
}
.new-h2 {
    font-size: 18px;
    color: #253662;
    font-family: Circe;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    padding: 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: Circe;
}
.faq-item {
    border: solid 1px #F5F5F5;
    border-radius: 10px;
    padding: 0 30px;
}
.faq-item.opened {
    background: #F5F5F5;
}
.faq-item__header {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    padding: 22px 0;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}
.faq-item__header::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-bottom: solid 1.5px #BCBCBC;
    border-left: solid 1.5px #BCBCBC;
    transition-duration: .2s;
    right: 12px;
    top: 29px;
    transform: rotate(-45deg);
}
.faq-item__header::before {
    content: '';
    position: absolute;
    right: 0;
    top: 19px;
    width: 32px;
    height: 32px;
    background: #F5F5F5;
    border-radius: 4px;
    transition-duration: .2s;
    
}
.faq-item.opened .faq-item__header::before {
    background: #fff;
}
.faq-item.opened .faq-item__header::after {
    transform: rotate(-225deg);
    top: 33px;
}
.faq-item__body {
    max-height: 0;
    overflow: hidden;
    
    font-size: 18px;
    opacity: 0;
    line-height: 26px;
    transition-duration: .2s;
}

.faq-item.opened .faq-item__body {
    padding-bottom: 22px;
    max-height: 1000px;
    opacity: 1;
}
.faq-list {
    padding-bottom: 30px;
}