@font-face {
    font-family: 'Tungsten-Extra-Light';
    src: url('../fonts/Tungsten-ExtraLight.woff2') format('woff2'),
    url('../fonts/Tungsten-ExtraLight.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Tungsten-Book';
    src: url('../fonts/Tungsten-Book.woff2') format('woff2'),
    url('../fonts/Tungsten-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
    color: #0a0a0a;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
    background-color: #2a2a2a;
    color: #dedede;
    padding: 7px;
}

h1 {
    text-align: center;
    font-weight: 500;
    font-family: "Tungsten-Book", sans-serif;
    letter-spacing: 2px;
}

h1.boldH1 {
    font-weight: 400;
    font-family: "DM Serif Display", serif;
    letter-spacing: 0;
    margin-top: 0;
    font-size: 26px;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 22px;
}

h2.boldH2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    font-family: "DM Serif Display", serif;
    letter-spacing: 0;
}

.h2div {
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 22px;
}

h3 {
    text-align: center;
    text-transform: uppercase;
}

img {
    max-width: 100%;
    height: auto;
}

.logo {
    margin: 10px 5px;
}

.offer {
    padding: 2px 10px 2px 50px;
    min-height: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: #2a2a2a;
    text-align: center;
    position: relative;
    color: white;
}

.allCountries {
    display: none;
    position: absolute;
    left: 0;
    padding-top: 10px;
    z-index: 1;
}

.allCountries img {
    margin-bottom: 5px;
}

.country:hover .allCountries {display: block;}

header {
    display: grid;
    grid-template-columns: 250px 1fr auto 170px;
    align-items: center;
    min-height: 70px;
    padding-left: 50px;
    padding-right: 50px;
    justify-items: center;
    gap: 30px;
}

.cardAndFav {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

nav {
    position: relative;
    border-top: 1px solid rgb(237, 237, 237);
    border-bottom: 1px solid rgb(237, 237, 237);
    text-align: center;
    margin-bottom: 5px;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 22px;
    color: inherit;
    font-family: "Tungsten-Book", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subMenu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    padding: 15px 30px 30px;
    background-color: white;
    border: 1px solid rgb(237, 237, 237);
    grid-template-columns: repeat(4, 1fr);
    width: 1120px;
    margin: 0 auto;
    gap: 30px;
    z-index: 3;
}

.mainItemMenu {
    display: inline-block;
}

.mainItemMenu:hover .subMenu {display: grid;}

.subMenuBlock {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.colors {
    grid-area: span 1 / span 4;
    text-align: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-top: 1px solid rgb(237, 237, 237);
    padding-top: 15px;
}

.colors a {
    width: 24px;
    height: 24px;
    display: block;
    margin: 5px;
    position: relative;
    float: left;
    border-radius: 50%;
    padding: 0;
}

@media (max-width: 414px) {
    .subMenu {
        grid-template-columns: 1fr;
        width: 100%;
        position: relative;
        padding: 0;
        background-color: #f3faf3;
        gap: 0;
        border: none;
    }

    .mainItemMenu {
        display: block;
        width: 100%;
    }

    .mainItemMenu a {
        display: block;
    }

    .subMenuBlock {
        text-align: center;
    }

    .colors {
        grid-area: span 1 / span 1;
    }
}

.copyright {
    text-align: center;
    margin-bottom: 20px;
}

.copyright a {
    color: #dedede;
    text-decoration: none;
}

.textBlock {
    padding-left: 20px;
    padding-right: 20px;
}

.slider {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.sliderPicture {
    position: relative;
}

.oneImg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
}

.oneImgBg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.oneImgText {
    border: 1px solid rgb(237, 237, 237);
    padding: 10px 30px;
}

@media (max-width: 1000px) {
    .oneImg {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 30px;
        align-items: center;
        margin-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .oneImgBg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: auto;
        height: 450px;
    }
}

.twoImgPicture {
    position: relative;
}

.twoImg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-items: center;
    margin-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

.twoImg > div {
    text-align: center;
}

.treeImg {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    max-width: 1280px;
    margin: 0 auto 70px;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.treeImg img {
    min-width: 250px;
}

.adminButtons {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.adminButton {
    text-align: center;
}

.adminButton a {
    display: inline-block;
    padding: 10px;
    border: 1px solid #454545;
    color: inherit;
    margin: 10px;
    text-decoration: none;
}

.muralDetails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
    margin-top: 30px;
}

/* Form */

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=file] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=tel], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=number], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=email], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formBlock input[type=file] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formBlock select option {
    font-weight: normal;
    display: block;
    white-space: pre;
    min-height: 1.2em;
    padding: 4px 2px 5px;
    cursor: pointer;
}

textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-default {
    background-color: #333;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

.formBlock {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}

/* Search */

.site-search {
    margin: 0 12px 12px;
    width: 417px;
}

.search-group {
    display: flex;
    width: 100%;
    border: 1px solid #000000;
}
.search-block {
    flex: 1;
}
input.search-input {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 0;
    font-size: 18px;
    padding: 12px 10px 12px 18px;
    outline: none;
    font-family: inherit;
}
.search-button {
    font-size: 24px;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    border: none;
    background: url("https://cdn.iwallmurals.com/img/search-icon.webp") center center no-repeat, #454545;
}

.search-button:hover {
    background: url("https://cdn.iwallmurals.com/img/search-icon.webp") center center no-repeat, #2a2a2a;
}

/* End Search */

.whatsapp {
    bottom: 30px;
    position: fixed;
    right: 20px;
}

.muralGrid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    grid-auto-flow: dense;
    margin-bottom: 30px;
}

.muralItem {
    position: relative;
}

@media (max-width: 1180px) {
    .muralGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .muralGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 474px) {
    .muralGrid {
        grid-template-columns: 1fr;
    }
}

.muralGrid img {
    /*vertical-align: bottom;*/
    display: block;
}

/* Materials */

.material-200-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}
.material-scroll-box {
    border: 1px solid #afafaf;
    padding: 3px;
}
.material-padding {
    padding: 3px;
}

.none-radio {
    visibility: hidden;
    position: absolute;
}

.none-radio + img {
    cursor: pointer;
    border: 2px solid transparent;
}

.none-radio:checked + img {
    border: 2px solid #519935;
}

.saleInfo {
    margin: 20px auto;
    font-size: 22px;
}

/* Mobile Menu */

.closeButton {
    display: none;
}

.mobileMenu {
    display: none;
}

@media (max-width: 1138px) {
    .site-search {
        width: auto;
    }
}

@media (max-width: 1121px) {
    header {
        grid-template-columns: 42px 250px auto 1fr 163px;
    }

    .mobileHidden {
        display:none;
    }

    .trust {
        order: 5;
    }

    .phoneBlockTop {
        order: 5;
        grid-column: 1 / 4;
        margin-bottom: 10px;
    }

    .site-search {
        order: 3;
    }

    .cardAndFav {
        order: 4;
    }

    .logo {
        order: 2;
    }

    .mobileMenu {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-bottom: 5px;
        padding: 5px;
        cursor: pointer;
        user-select: none;
        order: 1;
    }

    .navContainer {
        background: white;
        border-right: 10px solid #192545;
        height: 100vh;
        left: -295px;
        position: fixed;
        top: 0;
        width: 285px;
        z-index: 99;
        transition: left .7s;
        overflow-y: scroll;
    }

    nav {
        display: flex;
        align-items: stretch;
        flex-flow: column wrap;
        padding-top: 50px
    }

    nav > a:first-child {
        border-top: 1px solid #dcdcdc
    }

    nav a {
        border-bottom: 1px solid #dcdcdc;
        color: #0a0a0a;
        padding: 10px;
    }

    nav a:hover {
        background-color: unset
    }

    .closeButton {
        color: #111;
        cursor: pointer;
        display: unset;
        font-size: 2.8em;
        line-height: 35px;
        position: absolute;
        right: 25px;
        top: 5px;
        z-index: 10
    }
}

@media (max-width: 1083px) {
    header {
        grid-template-columns: 42px 250px 1fr auto;
    }
    .trust {
        display: none;
    }
}

@media (max-width: 894px) {
    header {
        grid-template-columns: 38px 1fr auto;
        padding-left: 15px;
        padding-right: 15px;
        grid-gap: 10px;
    }
    .site-search {
        order: 4;
        grid-column: 1 / 4;
        width: 100%;
    }

    .cardAndFav {
        order: 3;
    }
}

@media (max-width: 800px) {
    .slider {
        margin-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .treeImg {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 500px) {
    .twoImg {
        grid-template-columns: 1fr;
    }
}

.personalizationButton {
    display: inline-block;
    padding: 25px 5px;
    text-decoration: none;
    color: white;
    width: 340px;
    text-transform: uppercase;
    font-weight: 700;
    background: #519935;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    transition: background 800ms linear;
}

.personalizationButton:hover {
    background: #519935b5;
}

.consultationButton {
    display: inline-block;
    padding: 25px 5px;
    text-decoration: none;
    color: white;
    width: 340px;
    text-transform: uppercase;
    font-weight: 700;
    background: #519935;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    transition: background 800ms linear;
    font-family: "DM Sans", sans-serif;
    border: none;
    cursor: pointer;
    font-size: 16px;

}

.consultationButton:hover {
    background: #519935b5;
}


.sliderDetails {
    position: relative;
    width: 700px;
    margin-bottom: 40px;
    transition: transform .4s, height .4s;
}

.sliderDetails img {
    position: absolute;
}

.galleryBlock {
    position: relative;
    justify-self: end;
}

.infoBlock {
    justify-self: start;
    max-width: 800px;
}

.sliderBlock {
    position: relative;
    overflow: hidden;
}

.icoImgBlock {
    position: absolute;
    top: 20px;
    left: -50px;
    background: white;
    border: 1px solid rgb(237, 237, 237);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    padding: 10px;

}

.icoImgBlock img {
    z-index: 1;
    position: relative;
    cursor: pointer;
    border: 2px solid white;
}

.icoImgBlock img:nth-child(1) {
    opacity: 0.5;
}

.cardPage {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 63% 35%;
    grid-gap: 2%;
}

.cardList {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.cardItem {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.cardItemImg {
    position: relative;
}

.removeCard {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    background-color: white;
    color: #2a2a2a;
    left: -12px;
    top: -12px;
}

.removeCard:hover {
    background-color: #2a2a2a;
    color: white;
}

input.quantity {
    width: 52px;
    height: 32px;
    font-size: 18px;
    padding: 0;
    text-align: center;
    border: none;
    outline:none;
}

.minusStep {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.05);
    color: #2a2a2a;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.plusStep {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.05);
    color: #2a2a2a;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.flexMinPlus {
    margin-top: 10px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: end;
}

.cardPriceBlock {
    text-align: right;
}

.cardPrice {
    font-size: 24px;
}

.cardPrice span {
    font-size: 16px;
}

.cardItemTitle {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 18px;
}

.cardItemName {
    margin-bottom: 10px;
}

.cardItemMk {
    margin-top: 10px;
}

.cardItemSmallText {
    font-size: 16px;
}

.cardTotalBlock {
    background-color: #f1f1f1;
    padding: 50px;
}

.subtotal {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
}

.subtotalPrice {
    font-size: 18px;
}

.subtotalPrice span {
    font-size: 24px;
}

.cardDelivery {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
}

.cardDeliveryPrice {
    font-size: 18px;
}

.cardDeliveryPrice span {
    font-size: 24px;
}

.discountDiv {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 20px;
}

.total {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 70px;
    font-weight: 700;
    font-size: 26px;
}

.totalPrice {
    font-size: 22px;
}

.totalPrice span {
    font-size: 30px;
}

.cardDelivery {
    padding-bottom: 30px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 4px solid #2a2a2a;
}

.continueShopping {
    text-align: right;
}

.continueShopping a {
    text-decoration: none;
    font-size: 20px;
    color: #2a2a2a;
}

.coupon {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.couponButton {
    padding: 12px 20px;
    border: none;
    color: white;
    background-color: #2a2a2a;
    text-transform: uppercase;
    cursor: pointer;
}

.coupon input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 0;
    box-sizing: border-box;
}

.cardLinks {
    padding: 0 50px;
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.cardLinks a {
    text-transform: uppercase;
    text-decoration: none;
    color: #2a2a2a;
}

.activeCardLink {
    font-weight: 700;
}

.confirmTwo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.confirmThree {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.billingAddress {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.informationConfirm label {
    font-weight: 700;
}

.informationConfirm input, .informationConfirm select {
    margin-bottom: 20px;
}

.freeShippingText {
    border: 2px solid #2a2a2a;
    display: inline-block;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.previousNavigation {
    background-color: #eaeaea;
    border: 1px solid #e7e7e7;
    text-decoration: none;
    text-transform: uppercase;
    color: #2a2a2a;
    padding: 20px 25px;
    font-size: 16px;
}

.nextNavigation {
    background-color: #519935;
    border: 3px solid #3e772b;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    padding: 20px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 800ms linear;
}

.nextNavigation:hover {
    background: #3e772b;
}

.navigation {
    display: flex;
    flex-flow: row wrap;
    justify-content: end;
    gap: 10px;
    margin-bottom: 50px;
    margin-top: 20px;
}

.confirmList {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.confirmLinkBlock {
    padding: 0 50px;
    margin-bottom: 100px;
    text-align: right;
}

.hidden {
    display: none !important;
}

.benefitInfo {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 30px;
    text-align: center;
}

.benefitInfo > div {
    padding: 2%;
    flex-basis: 20%;
}

.benefitInfo img {
    margin-bottom: 10px;
}

.listPrice {
    font-size: 18px;
    letter-spacing: 1px;
}

.adminButtonsCatalogList {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
}

.adminButtonsMainImage {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 130px;
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    z-index: 1;
}

.favoriteWhite img {
    cursor: pointer;
}

.materials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    grid-gap: 50px;
    padding: 0 50px;
    margin: 30px auto 50px;
    max-width: 1520px;
}

.materialItem {
    padding: 20px 40px;
    background: #fafafa;
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
    text-align: center;
}

.materialText {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}

.materialPrice {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
}

.materialWidth {
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
}

.bottomMenu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin: 30px 100px 30px;
    padding-bottom: 30px;
}

.bottomMenu > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-left: 1px solid #dedede;
    padding-left: 20px;
}

.bottomMenu a {
    text-decoration: none;
    color: #e3e3e3;
}

.bottomMenu a:hover {
    color: #bdbdbd;
}

.footerContent h2 {
    text-align: left;
    font-size: 20px;
    margin-top: 0;
}

.footerContact {
    margin: 20px 100px 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #434343;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footerPhone {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help {
    font-size: 24px;
}

.paymentMethods img {
    opacity: .7;
}

.mostPurchased {
    margin-bottom: 40px;
    margin-top: 40px;
}

.muralSliderTitle {
    margin-top: 10px;
    text-transform: uppercase;
    text-align: center;
}

.muralSliderPrice {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
}

@media (max-width: 1582px) and (min-width: 1262px) {
    .muralDetails {
        padding-left: 70px;
        padding-right: 50px;
    }
}

@media (max-width: 1262px) {
    .muralDetails {
        grid-template-columns: 1fr;
    }
    .galleryBlock {
        position: relative;
        justify-self: center;
    }
    .infoBlock {
        justify-self: center;
        max-width: 800px;
    }
}

@media (max-width: 1078px) {
    .bottomMenu {
        margin: 30px;
    }

    .footerContact {
        margin: 20px 30px 30px;
        justify-content: space-around;
    }
}

@media (max-width: 805px) {
    .sliderDetails {
        width: 100%;
    }
}

@media (max-width: 672px) {
    .bottomMenu {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 630px) {
    .materials {
        grid-template-columns: 1fr;
    }
    .benefitInfo > div {
        padding: 5%;
        flex-basis: 90%;
    }
}

@media (max-width: 471px) {
    .materials {
        padding: 0 30px;
    }
    .icoImgBlock {
        position: relative;
        top: unset;
        left: unset;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .sliderDetails {
        margin-bottom: 10px;
    }
}

@media (max-width: 420px) {
    .bottomMenu {
        grid-template-columns: 1fr;
    }

    .materialItem {
        padding: 10px 20px 20px;
    }
}

iframe[name=challengeIframe] {
    width: 700px;
    height: 400px;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -350px;
    position: fixed;
    color: white;
    border: none;
}

.cardImg {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.cardCount {
    margin-left: 7px;
    margin-right: 10px;
}

.favoriteCount {
    margin-left: 7px;
    margin-right: 10px;
}

.cardLink {
    text-decoration: none;
    color: #2a2a2a;
}

.categories {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px;
}

.categoryItem a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 20px;
}

/*////////////////////////////////// switch button /////////////////////////////////////*/

.toggle-switch {
    position: relative;
    width: 60px;
    height: 25px;
}

.toggle-switch input {
    display: none;
}

.toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #2e2e2e, #4a4a4a);
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch input:checked {
    background: linear-gradient(to right, #66bb6a, #43a047);
}

.toggle-switch label:before {
    content: "";
    position: absolute;
    height: 21px;
    width: 21px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.toggle-switch input:checked + label:before {
    transform: translateX(35px);
    background-color: #66bb6a;
}


/*////////////////////////////////// switch button end /////////////////////////////////////*/

#iProfessional {
    cursor: pointer;
    user-select: none;
}

#identicalAddress {
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1025px) {
    .confirmTwo {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .confirmThree {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .confirmList {
        padding: 0 30px;
    }

    .cardTotalBlock {
        padding: 30px;
    }
}

@media (max-width: 810px) {
    .cardPage {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

@media (max-width: 520px) {
    .cardItem {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }

    .cardItemImg {
        grid-row: 1 / 3;
    }
}

/***************************************** Trustpilot **********************************************/

.tp-widget-wrapper {
    height: 100%;
    margin: 0 auto;
    max-width: 750px;
    position: relative
}

.tp-stars .tp-star__canvas,.tp-stars .tp-star__canvas--half {
    fill: #dcdce6
}

.tp-stars .tp-star__shape {
    fill: #fff
}

.tp-stars--1 .tp-star:nth-of-type(-n+1) .tp-star__canvas,.tp-stars--1 .tp-star:nth-of-type(-n+1) .tp-star__canvas--half {
    fill: #ff3722
}

.tp-stars--2 .tp-star:nth-of-type(-n+2) .tp-star__canvas,.tp-stars--2 .tp-star:nth-of-type(-n+2) .tp-star__canvas--half {
    fill: #ff8622
}

.tp-stars--3 .tp-star:nth-of-type(-n+3) .tp-star__canvas,.tp-stars--3 .tp-star:nth-of-type(-n+3) .tp-star__canvas--half {
    fill: #ffce00
}

.tp-stars--4 .tp-star:nth-of-type(-n+4) .tp-star__canvas,.tp-stars--4 .tp-star:nth-of-type(-n+4) .tp-star__canvas--half {
    fill: #73cf11
}

.tp-stars--5 .tp-star:nth-of-type(-n+5) .tp-star__canvas,.tp-stars--5 .tp-star:nth-of-type(-n+5) .tp-star__canvas--half {
    fill: #00b67a
}

.tp-stars--1--half .tp-star:nth-of-type(-n+2) .tp-star__canvas--half {
    fill: #ff3722
}

.tp-stars--2--half .tp-star:nth-of-type(-n+3) .tp-star__canvas--half {
    fill: #ff8622
}

.tp-stars--3--half .tp-star:nth-of-type(-n+4) .tp-star__canvas--half {
    fill: #ffce00
}

.tp-stars--4--half .tp-star:nth-of-type(-n+4) .tp-star__canvas,.tp-stars--4--half .tp-star:nth-of-type(-n+4) .tp-star__canvas--half {
    fill: #00b67a
}

.tp-stars--4--half .tp-star:nth-of-type(-n+5) .tp-star__canvas--half {
    fill: #00b67a
}

.tp-widget-loader,.tp-widget-fallback {
    max-width: 50%;
    text-align: center;
    width: 400vh
}

.tp-widget-loader svg,.tp-widget-fallback svg {
    width: 100%
}

@media screen and (min-width: 400px) {
    .tp-widget-loader,.tp-widget-fallback {
        max-width:200px
    }
}

.tp-widget-loader--loaded {
    opacity: 0
}

.trustbox-mobile {
    display: none
}

.trustbox-mobile.shop {
    margin-bottom: 30px
}

@media screen and (max-width: 1024px) {
    .trustbox-mobile {
        display:block
    }
}

.trustbox-mini a,.trustbox-mini a:hover,.trustbox-mini a:focus,.trustbox-mini a:active {
    text-decoration: none;
    color: inherit
}

.trustbox-mini-item {
    margin: 4px 0
}

.trustbox-mini-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    max-width: 150px;
    min-width: 70px
}

.trustbox-mini-logo {
    display: block;
    width: 57%
}

.trustbox-mini-meta {
    font-family: helvetica neue,helvetica,arial,"sans-serif";
    font-size: 9px
}

.trustbox-microstar a,.trustbox-microstar a:hover,.trustbox-microstar a:focus,.trustbox-microstar a:active {
    text-decoration: none;
    color: inherit
}

.trustbox-microstar-item {
    padding: 5px
}

.trustbox-microstar-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: auto
}

.trustbox-microstar-note {
    font-family: segoe ui
}

.trustbox-microstar-score {
    flex-basis: 100px;
    flex-grow: 1
}

.trustbox-microstar-logo {
    width: 70px
}

/***************************************** Trustpilot End **********************************************/

.mainImageText {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: white;
    font-size: 58px;
    font-weight: bold;
    padding: 5px;
    border-radius: 10px;
    text-shadow: #000000 1px 1px 40px;
}

.mainImageButton {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.mainImageButton a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    font-weight: bold;
    border: 4px solid white;
    text-shadow: #000000 1px 1px 40px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 996px) {
    .mainImageText {
        top: 30%;
        font-size: 38px;
    }
    .mainImageButton {
        top: 70%;
    }
    .mainImageButton a {
        font-size: 20px;
    }
}

.blockContent {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blockContent label {
    font-weight: 700;
}

.collaborationButton {
    background: #2a2a2a;
    color: white;
    border: none;
    margin-bottom: 30px;
    width: 280px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
}

.successMessage {
    color: green;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700;
}

.errorMessage {
    color: red;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700;
}

.pagination-center {
    text-align: center;
}

/* Pagination */

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2), 0 6px 20px 0 rgba(0,0,0,.19);
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #333;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #dddddd;
    margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #ffffff;
    background-color: rgb(42 42 42 / 87%);
    border-color: rgb(42 42 42 / 87%);
    cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777777;
    background-color: #ffffff;
    border-color: #dddddd;
    cursor: not-allowed;
}

/**************************** End Pagination *********************************/

.cardAdditionalItems {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
    padding: 0 50px;
}

.cardAdditionalItem {
    display: grid;
    grid-template-columns: 145px 1fr 50px 160px;
    padding: 10px;
    border: 1px solid rgb(237, 237, 237);
    align-items: center;
    grid-gap: 30px;
}

.cardAdditionalText {
    font-size: 14px;
}

.cardAdditionalHeader {
    color: #2a2a2a;
    font-size: 18px;
    margin-bottom: 5px;
}

.cardAdditionalPrice {
    font-size: 24px;
    text-align: center;
}

.cardAdditionalPrice span {
    font-size: 16px;
}

.cardAdditionalButton {
    border: 2px solid #2a2a2a;
    width: 160px;
    height: 50px;
    background: white;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
}

.cardAdditionalButton:hover {
    background: #2a2a2a;
    color: white;
}

.cardAdditionalImg {
    text-align: center;
}

.cardAdditionalButtonBlock {
    text-align: center;
}

@media (max-width: 1104px) {
    .cardAdditionalItem {
        grid-template-columns: 145px 1fr;
    }
}

@media (max-width: 460px) {
    .cardAdditionalItem {
        grid-template-columns: 1fr;
    }
}

.cutPriceBlock {
    margin-top: 30px;
}

.cutPriceTotal {
    font-size: 20px;
    font-weight: 700;
}

.cutPriceNumbers {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.cutPrice {
    font-size: 30px;
    font-weight: 700;
}

.orderList {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.orderItem {
    padding: 10px;
    border: 1px solid rgb(237, 237, 237);
}

.promoCodeList {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promoCodeItem {
    padding: 10px;
    border: 1px solid rgb(237, 237, 237);
}

.cardItems {
    margin-bottom: 50px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cardProduct {
    padding: 20px;
    border: 1px solid rgb(189, 189, 189);
}

.orderDetail {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid rgb(189, 189, 189);
}

.noteHeader {
    cursor: pointer;
    user-select: none;
}

.noteText {
    font-size: 14px;
    color: #575757;
}

.removeFavorite {
    cursor: pointer;
}

.phoneBlock {
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99,99,99,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    z-index: 1040;
}

.phoneWindow {
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.2),0 4px 15px 0 rgba(0,0,0,.1);
    border-radius: 10px;
    background: url("https://cdn.iwallmurals.com/img/bgWindow.png") 50% repeat;
    word-break: break-word;
    padding: 25px;
}

.phoneWindow input {
    max-width: 340px;
    margin: auto;
    font-family: pfhighway,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 300;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 20px;
    width: 100%;
}

.close-modal {
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 20px;
}

.callHeader {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.formButton {
    padding: 30px;
    color: #8d5800;
    font-size: 18px;
    width: 340px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 13px;
    background-image: linear-gradient(0turn,rgba(255,202,40,1) 0%,rgba(255,232,141,1) 100%);
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    box-shadow: 0 0 10px 0 rgba(234,184,0,0.4);
    margin-top: 20px;
    cursor: pointer;
    box-sizing: border-box;
}

.phoneBlockTop a {
    color: inherit;
    text-decoration: none;
}