@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0px auto;
}

.container-xs {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0px auto;
}

.container-xl {
    width: 100%;
    height: auto;
    margin: 0px auto;
    width: 100%;
}

a {
    text-decoration: none;
}

.header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    overflow: hidden;
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 99;
    border-bottom: 1px solid #d7d7d7;
}
.header .header__block {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header__block .header__logo,
.header .header__block .header__search,
.header .header__block .header__actions {
    width: 33.33%;
}
.header .header__block .header__logo img {
    height: 50px;
    object-fit: contain;
}
.header .header__block .header__search {
    position: relative;
}
.header .header__block .header__search .search__box {
    width: 100%;
    height: 50px;
    position: relative;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
}
.header .header__block .header__search .search__box input {
    width: 100%;
    height: 46px;
    background-color: transparent;
    border: 0px;
    outline: none;
    padding-left: 15px;
}
.header .header__block .header__search .search__box button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: transparent;
    border: 0px;
}
.header .header__block .header__search .search__box button img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}
.header .header__block .header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .header__block .header__actions ul li {
    display: inline-flex;
    margin: 0px 5px;
}
.header .header__block .header__actions ul li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.header .header__block .header__actions ul li svg {
    width: 24px;
    height: 24px;
    padding-top: 2px;
    object-fit: contain;
    display: none;
}

.nav {
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #fff;
    position: sticky;
    top: 100px;
    left: 0px;
    z-index: 99;
}
.nav .nav__block {
    width: 100%;
    height: auto;
    min-height: 50px;
}
.nav .nav__block ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.nav .nav__block ul li {
    list-style: none;
    padding: 5px 25px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.nav .nav__block ul li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.nav .nav__block ul li a {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
@media screen and (min-width: 960px) {
    .nav .nav__block ul li:hover .subnav {
        display: flex;
    }
}
.nav .nav__block ul li .subnav {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    z-index: 99;
    border-top: 1px solid #d7d7d7;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid #d7d7d7;
    display: none;
}
.nav .nav__block ul li .subnav ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    border: 0px;
    margin-right: 50px;
}
.nav .nav__block ul li .subnav ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    border: 0px;
    text-align: left;
    padding: 10px 0px;
    height: auto;
}
.nav .nav__block ul li .subnav ul li h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1a4795;
}
.nav .nav__block ul li .subnav .mark_bann {
    width: 280px;
    height: 450px;
    border: 1px solid #1a4795;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.nav .nav__block ul li .subnav .mark_bann img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav .nav__block ul li .subnav .mark_bann h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 10px 10px;
    height: auto;
    background-color: #1a4795;
}

.hero {
    width: 100%;
    height: auto;
}
.hero .hero__block {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d7d7d7;
}
.hero .hero__block .hero__slider {
    width: 100%;
    height: 500px;
    position: relative;
}
.hero .hero__block .hero__slider .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    align-items: center;
}
.hero .hero__block .hero__slider .slick-dots li {
    list-style: none;
    display: inline-flex;
}
.hero .hero__block .hero__slider .slick-dots li button {
    text-indent: -999999px;
    width: 20px;
    height: 20px;
    transform: skew(-0deg);
    border: 0px;
    background-color: #d2d2d2;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 0;
}
.hero .hero__block .hero__slider .slick-dots li.slick-active button {
    background-color: #1a4795;
}
.hero .hero__block .hero__slider .slick-dots li:hover button {
    border: 1px solid #1a4795;
}
.hero .hero__block .hero__slider .slider__item {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.partners {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.partners {
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.partners-prev,
.partners-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    color: black;
    background-color: #fff;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.partners-prev:hover,
.partners-next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.partners-prev {
    left: 10px;
}

.partners-next {
    right: 10px;
}

.partners .partners__list {
    width: 100%;
    height: auto;
    display: flex;
    max-width: 100% !important;
    align-items: center;
}
.partners .partners__list .partners__item {
    width: 20%;
    height: 80px;
    padding: 10px 20px;
    cursor: pointer;
}
.partners .partners__list .partners__item img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    filter: grayscale(1);
}
.partners .partners__list .partners__item:hover img {
    filter: grayscale(0);
}
.hero .hero__block .hero__slider .slider__item .slider__box {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero .hero__block .hero__slider .slider__item .slider__box .slider__image {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0px;
   
    /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); */
}
.hero .hero__block .hero__slider .slider__item .slider__box .slider__content {
    width: 35%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}
.hero
    .hero__block
    .hero__slider
    .slider__item
    .slider__box
    .slider__content
    h4 {
    font-size: 46px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
}
.hero .hero__block .hero__slider .slider__item .slider__box .slider__content p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 20px 0px;
}
.hero .hero__block .hero__slider .slider__item .slider__box .slider__content h4 {
    color: #fff !important;
}
.hero .hero__block .hero__slider .slider__item .slider__box .slider__content a {
    padding: 7px 20px;
    border: 2px solid #1a4795;
    font-size: 16px;
    background-color: #1a4795;
    font-weight: 400;
    color: #fff;
    display: inline-flex;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
border-radius: 0;
}
.hero
    .hero__block
    .hero__slider
    .slider__item
    .slider__box
    .slider__content
    a:hover {
    color: #000;
    background-color: transparent;
}

.featured {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.featured .featured__top {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.featured .featured__top h4 {
    font-size: 46px;
    color: #1a4795;
    font-weight: 700;
}
.featured .featured__top p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    max-width: 720px;
}
.featured .featured__top hr {
    width: 220px;
    height: 5px;
    background-color: #000;
    border: 0px;
    margin-bottom: 15px;
    border-radius: 3px;
}
.featured .featured__box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}
.featured .featured__box .featured__item {
    width: calc(33.33% - 20px);
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid #1a4795;
    border-radius: 4px;
}
.featured .featured__box .featured__item .featured__image {
    width: 100%;
    height: 500px;
}
.featured .featured__box .featured__item .featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured .featured__box .featured__item:hover .featured__content {
    bottom: 0px;
}
.featured .featured__box .featured__item .featured__content {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 5%,
        rgba(26, 71, 149, 0.5) 38%,
        rgba(26, 71, 149) 100%
    );
    background: -webkit-linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 5%,
        rgba(26, 71, 149, 0.5) 38%,
        rgba(26, 71, 149) 100%
    );
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 5%,
        rgba(26, 71, 149, 0.5) 38%,
        rgba(26, 71, 149) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#1a4795",GradientType=1);
    position: absolute;
    left: 0px;
    bottom: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: bottom 0.5s;
}
.featured .featured__box .featured__item .featured__content h5 {
    color: #dfdfdf;
    font-size: 20px;
    font-weight: 500;
}
.featured .featured__box .featured__item .featured__content h4 {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 36px;
    padding-bottom: 10px;
}
.featured .featured__box .featured__item .featured__content p {
    font-size: 16px;
    color: #dfdfdf;
    font-weight: 400;
}
.featured .featured__box .featured__item .featured__content a {
    display: flex;
    width: 200px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    margin-top: 20px;
}
.featured .featured__box .featured__item .featured__content a:hover {
    background-color: #fff;
    color: #000;
}

.features {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    padding-top: 60px;
}
.features .features__box {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.features .features__box .features__item {
    width: calc(25% - 20px);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    height: 250px;
    align-items: center;
    text-align: center;
    background-color: #1a4795;
}
.features .features__box .features__item img {
    width: 100px;
    height: 100px;
    
    object-fit: contain;
    filter: invert(1);
}
.features .features__box .features__item h5 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
}
.features .features__box .features__item p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}

.choosen {
    width: 100%;
    height: auto;
    margin-top: 50px;
    position: relative;
}
.choosen .choosen__box {
    width: 100%;
    height: auto;
    border: 1px solid #1a4795;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.choosen .choosen__box .box__top {
    width: 100%;
    height: 320px;
    position: relative;
}
.choosen .choosen__box .box__top img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom: 1px solid #1a4795;
}
.choosen .choosen__box .box__top h4 {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 32px;
    font-weight: 700;
    
    color: #fff;
    padding: 10px 20px;
    background-color: #000;
    width: 100%;
}
.choosen .choosen__box .box__arrows img {
    position: absolute;
    left: 20px;
    bottom: 150px;
    z-index: 9;
    width: 50px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
}
.choosen .choosen__box .box__arrows img.bnext {
    left: auto;
    right: 20px;
}
.choosen .choosen__box .box__arrows img:hover {
    filter: invert(22%) sepia(18%) saturate(7006%) hue-rotate(203deg)
        brightness(91%) contrast(89%);
}
.choosen .choosen__box .box__list {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px 80px;
}
.choosen .choosen__box .box__list .bl__item {
    width: calc(20% - 20px);
    height: 100%;
    padding: 10px;
    border: 1px solid #d7d7d7;
    margin: 10px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.choosen .choosen__box .box__list .bl__item:hover {
    border: 1px solid #1a4795;
}
.choosen .choosen__box .box__list .bl__item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.choosen .choosen__box .box__list .bl__item h4 {
    font-size: 16px;
    line-height: 1.3;
    min-height: 62px;
    margin-top: 12px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}
.choosen .choosen__box .box__list .bl__item p {
    font-size: 18px;
    font-weight: 800;
    color: #1a4795;
    text-align: right;
    margin-top: auto;
    padding-top: 12px;
    white-space: nowrap;
}

.confs {
    width: 100%;
    height: auto;
    padding-top: 80px;
}
.confs .confs__top {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.confs .confs__top h4 {
    font-size: 46px;
    color: #1a4795;
    font-weight: 700;
}
.confs .confs__top hr {
    width: 220px;
    height: 5px;
    background-color: #000;
    border: 0px;
    margin-bottom: 15px;
    border-radius: 3px;
}
.confs .confs__block {
    width: 100%;
    height: 500px;
    height: auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, calc(25% - 15px));
    grid-template-rows: repeat(3, 250px);
    justify-content: center;
    align-content: end;
}
.confs .confs__block .confs__item {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -o-perspective: 1000;
    perspective: 1000;
    overflow: hidden;
    border: 1px solid #1a4795;
    border-radius: 4px;
}
.confs .confs__block .confs__item:hover .confs__inside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.confs .confs__block .confs__item .confs__inside {
    -webkit-transition: 0.6s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 0.6s;
    -moz-transform-style: preserve-3d;
    -o-transition: 0.6s;
    -o-transform-style: preserve-3d;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.confs .confs__block .confs__item .confs__inside .front,
.confs .confs__block .confs__item .confs__inside .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.confs .confs__block .confs__item .confs__inside .front {
    width: 100%;
    height: 100%;
}
.confs .confs__block .confs__item .confs__inside .front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.confs .confs__block .confs__item .confs__inside .back {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background: #f8f8f8;
    width: 100%;
    height: 100%;
    background-color: #1a4795;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
}
.confs .confs__block .confs__item .confs__inside .back h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.confs .confs__block .confs__item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
}
.confs .confs__block .confs__item:nth-child(2) {
    grid-column: 3/5;
}

.news {
    width: 100%;
    height: auto;
    margin-top: -150px;
}
.news.nmt {
    margin-top: 0px;
    padding-top: 50px;
}
.news.nmt .news__arrows {
    display: none;
}
.news .news__top {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.news .news__top h4 {
    font-size: 46px;
    color: #1a4795;
    font-weight: 700;
}
.news .news__top hr {
    width: 120px;
    height: 5px;
    background-color: #000;
    border: 0px;
    margin-bottom: 15px;
    border-radius: 3px;
}
.news .news__top .news__arrows img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(1);
    margin-left: 15px;
    cursor: pointer;
}
.news .news__top .news__arrows img:hover {
    filter: invert(29%) sepia(97%) saturate(1983%) hue-rotate(326deg)
        brightness(100%) contrast(101%);
}
.news .news__block {
    width: 100%;
    height: auto;
}
.news .news__block.news__page {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.news .news__block.news__page .news__item {
    width: calc(33.33% - 20px);
    margin: 0px;
    margin: 20px 10px;
}
.news .news__block .news__item {
    width: calc(33.33% - 0px);
    margin-right: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    /* background: rgba(0, 0, 0, 0.04); */
    border-radius: 0;
    align-items: flex-end;
}
.news .news__block .news__item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 0;
}
.news .news__block .news__item h4 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
.news .news__block .news__item p {
    padding-top: 5px;
    font-size: 14px;
    font-weight: 300;
    color: #2d2d2d;
}
.news .news__block .news__item a {
    display: inline-flex;
    align-self: flex-end;
    width: 140px;
    height: 50px;
    border: 0;
    color: #fff;
    background-color: #1a4795;
    font-size: 16px;
    font-weight: 600;

    justify-content: center;
    align-items: center;
    margin-top: 15px;
    border-radius: 0;
}
.news .news__block .news__item a:hover {
    background-color: #1a4795;
    color: #fff;
}


.footer {
    width: 100%;
    height: auto;
    background-color: #000;
    margin-top: 50px;
    padding: 50px 0px;
    padding-bottom: 0px;
}
.footer .footer__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .footer__block .footer__info,
.footer .footer__block .footer__payment {
    width: calc(30% - 20px);
}
.footer .footer__block .footer__info button {
    background-color: transparent;
    color: #4baedf;
    font-size: 14px;
    border: 0;
    cursor: pointer;
   }
   .footer .footer__block .footer__info p {
        height: 100px;
        overflow: hidden;
   }
   .footer .footer__block .footer__info .active {
    height: auto;
   }
.footer .footer__block .footer__nav {
    width: calc(20% - 20px);
}
.footer .footer__block .footer__info img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.footer .footer__block .footer__info h4 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
}
.footer .footer__block .footer__info p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}
.footer .footer__block .footer__nav h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.footer .footer__block .footer__nav ul li {
    list-style: none;
    padding: 5px 0px;
}
.footer .footer__block .footer__nav ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.footer .footer__block .footer__payment h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.footer .footer__block .footer__payment .footer__cards {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.footer .footer__block .footer__payment .footer__cards a img {
    height: 50px;
    object-fit: contain;
    margin-right: 20px;
    margin-bottom: 10px;
}
.footer .footer__block .footer__payment .pmonri img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    margin-left: -5px;
}
.footer .copyright {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
}
.footer .copyright p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.footer .copyright p a {
    color: #1a4795;
}

.products {
    width: 100%;
    height: auto;
    background-color: #fff;
}
.products.page .products__top .ptop__inside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.products.page .products__top .ptop__inside ul li:last-child {
    padding: 0px;
}
.products .products__top {
    width: 100%;
    height: auto;
    padding: 30px 0px;
    background-color: #fff;
}
.products .products__top .ptop__inside {
    width: 100%;
    height: auto;
}
.products .products__top .ptop__inside img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
    border: 1px solid #1a4795;
    border-radius: 8px;
}
.products .products__top .ptop__inside h3 {
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.products .products__top .ptop__inside h3 span {
    font-size: 30px;
    font-weight: 400;
}
.products .products__top .ptop__inside ul {
    margin-top: 10px;
}
.products .products__top .ptop__inside ul li {
    list-style: none;
    display: inline-flex;
    position: relative;
    padding-right: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.products .products__top .ptop__inside ul li::after {
    content: "";
    background-image: url("../img/next.svg");
    width: 13px;
    height: 13px;
    background-size: contain;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    filter: invert(1);
}
.products .products__top .ptop__inside ul li:last-child {
    color: #1a4795;
}
.products .products__top .ptop__inside ul li:last-child::after {
    display: none;
}
.products .products__block {
    width: 100%;
    height: auto;
}
.products .products__block .products__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.products .products__block .products__list .p__filters {
    width: 300px;
    height: auto;
    min-width: 300px;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    position: sticky;
    top: 0px;
    left: 0px;
    max-height: 100vh;
    height: 100vh;
    overflow-y: scroll;
}
.products .products__block .products__list .p__filters .filter__title {
    width: 100%;
    height: auto;
    padding: 20px;
    padding-left: 0;
    margin-top: 30px;
}
.products .products__block .products__list .p__filters .filter__title h4 {
    font-size: 26px;
    font-weight: 400;
    color: #000;
}
.products .products__block .products__list .p__filters .filter__box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border: 0;
}
.products .products__block .products__list .p__filters .filter__box :last-child {
    margin-bottom: 0;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box.active
    .fb__title
    .fb__arrow
    img {
    transform: rotate(90deg);
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box.active
    .fb__content {
    display: block;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box:nth-child(2)
    .fb__title {
    border-top: 1px solid #d7d7d7;
}
.products .products__block .products__list .p__filters .filter__box .fb__title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    border-bottom: 1px solid #d7d7d7;
    cursor: pointer;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__title:hover {
    background-color: #1a4795;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__title:hover
    h4 {
    color: #fff;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__title
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__title
    .fb__arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a4795;
    border-radius: 4px;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__title
    .fb__arrow
    img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    filter: invert(1);
    transform: rotate(0deg);
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content {
    width: 100%;
    height: auto;
    padding: 20px;
    display: none;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content
    ul
    li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content
    ul
    li:last-child {
    padding: 0px;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content
    ul
    li
    .fbc__left {
    display: inline-flex;
    align-items: center;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content
    ul
    li
    .fbc__left
    input {
    width: 20px;
    height: 20px;
    border: 1px solid #d7d7d7;
    margin-right: 10px;
    cursor: pointer;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .fb__content
    ul
    li
    span {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.products .products__block .products__list .p__items {
    width: 100%;
    border-right: 1px solid #d7d7d7;
}
.products .products__block .products__list .p__items .p__items-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 28px 40px;
}
.products .products__block .products__list .p__items .p__items-top.p__navi {
    justify-content: flex-end;
    margin-top: -100px;
}
.products .products__block .products__list .p__items .p__items-top .p__sort {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.products .products__block .products__list .p__filters .filter__box .fb__title h4 {
    color: #fff ;
}
.products .products__block .products__list .p__filters {
    border: 0 ;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__sort
    .p__fg {
    width: 250px;
    height: auto;
    margin-right: 20px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__sort
    .p__fg
    label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__sort
    .p__fg
    select {
    width: 100%;
    height: 40px;
    border: 0;
    border-bottom: 1px solid #d2d2d2;
    padding-left: 10px;
    margin-top: 5px;
    border-radius: 0;
}
.products .products__block .products__list .p__items .p__items-top .p__nav {
    display: flex;
    align-items: flex-end;
    min-width: 30%;
    justify-content: flex-end;
}
.products .products__block .products__list .p__items .p__items-top .p__nav p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-right: 20px;
}
.products .products__block .products__list .p__items .p__items-top .p__nav ul {
    display: flex;
    align-items: center;
}

.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__nav
    ul
    li {
    list-style: none;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__nav
    ul
    li
    span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 5px;
    border: 1px solid #d7d7d7;
    font-size: 16px;
    font-weight: 400;
    color: #000;

    border-radius: 50px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-top
    .p__nav
    ul
    li
    span.active {
    border: 1px solid #1a4795;
    background-color: #1a4795;
    color: #fff;
    font-weight: 400;
    border-radius: 50px;
}
.products .products__block .products__list .p__items .p__items-list {
    padding: 0px 30px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.products .products__block .products__list .p__items .p__items-list.pl-second {
    padding: 0px 0px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item {
    width: calc(33.33% - 20px);
    height: 590px;
    border: 0px solid #d7d7d7;
    margin: 10px;
    border-radius: 0;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__image {
    width: 100%;
    height: 301px;
    padding: 20px;
    border-bottom: 1px solid #d7d7d7;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content {
    width: 100%;
    height: auto;

        padding: 10px;
        padding-bottom: 30px;
        box-sizing: border-box;

    padding-top: 3px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    h4 {
    font-size: 16px;
    font-weight: 400;
    height: 58px;
    overflow-y: hidden;
    padding: 20px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul {
    width: 100%;
    /* height: auto; */
    margin-top: 0;
    padding: 10px 20px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li {
    width: 100%;
    padding-bottom: 10px;
    height: auto;
    list-style: none;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    justify-content: space-between;
    border-top: 0px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li:first-child {
    border-top: 0 solid #d7d7d7;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    div {
    display: flex;
    align-items: center;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    div
    img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    div
    span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    em {
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #fff;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__price {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding: 10px 20px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__price
    .price__old {
    font-size: 18px;
    text-decoration: line-through;
    font-weight: 400;
    color: #000;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__price
    .price__new {
    font-size: 22px;
    font-weight: 700;
    color: #1a4795;
    margin-left: 10px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions {
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 10px 20px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions
    a {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #1a4795;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: 60px;
    border-radius: 4px;
    overflow: hidden;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions
    a
    button {
    position: absolute;
    width: 60px;
    height: 50px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0px;
    border-left: 1px solid #fff;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions
    a
    button:hover {
    background-color: #fff;
    border-top: 1px solid #1a4795;
    border-bottom: 1px solid #1a4795;
    border-right: 1px solid #1a4795;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions
    a
    button:hover
    img {
    filter: invert(0);
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi__actions
    a
    button
    img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: invert(1);
}

.single__product {
    width: 100%;
    height: auto;
    padding-top: 40px;
    background-color: #fff;
}
.single__product .product__block {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.single__product .product__block .product__images {
    width: 100%;
    height: auto;
    padding: 0px 150px;
    padding-bottom: 50px;
    position: relative;
}
.single__product .product__block .product__images .main__images-arrows img {
    position: absolute;
    top: 170px;
    left: 0px;
    width: 50px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
}
.single__product
    .product__block
    .product__images
    .main__images-arrows
    img:hover {
    filter: invert(29%) sepia(97%) saturate(1983%) hue-rotate(326deg)
        brightness(100%) contrast(101%);
}
.single__product
    .product__block
    .product__images
    .main__images-arrows
    img.minext {
    left: auto;
    right: 0px;
}
.single__product .product__block .product__images .main__images {
    width: 100%;
    height: auto;
}
.single__product .product__block .product__images .main__images .main__image {
    width: 420px;
    height: 420px !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single__product
    .product__block
    .product__images
    .main__images
    .main__image
    img {
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
}
.single__product
    .product__block
    .product__images
    .main__images
    .main__image.slick-slide
    img {
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    object-fit: contain;
    transition: transform 0.5s ease-in-out;
}
.single__product
    .product__block
    .product__images
    .main__images
    .main__image.slick-center
    img {
    transform: scale(1);
}
.single__product .product__block .product__images .nav__images {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single__product .product__block .product__images .nav__images .ni__slider {
    width: 100%;
    max-width: 480px;
    height: auto;
}
.single__product
    .product__block
    .product__images
    .nav__images
    .ni__slider
    .nav__image {
    min-width: 100px;
    height: 100px;
    padding: 10px;
    margin: 0px 5px;
    border: 1px solid #d7d7d7;
    cursor: pointer;
    border-radius: 4px;
}
.single__product
    .product__block
    .product__images
    .nav__images
    .ni__slider
    .nav__image.slick-current {
    border: 1px solid #1a4795;
}
.single__product
    .product__block
    .product__images
    .nav__images
    .ni__slider
    .nav__image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.single__product .product__block .product__left {
    width: calc(100% - 420px);
    height: auto;
    margin-right: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
}
.single__product .product__block .product__left .product__content {
    width: 100%;
    height: auto;
    padding: 30px;
}
.single__product .product__block .product__left .product__content h3 {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.single__product .product__block .product__short .ps__inside {
    border: 1px solid #fff !important;
}
.single__product .product__block .product__short .ps__inside .ps__action .action__qty {
    border-right: 1px solid #fff !important;
}
.single__product .product__block .product__short .ps__inside .ps__cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.single__product .product__block .product__short .ps__inside .ps__cont .ps__code {
    width: 50%;
    justify-content: center;
}
.single__product .product__block .product__short .ps__inside .ps__cont .ps__code em {
    background-color: #1a4795;
    color: #fff;
    padding: 5px 10px;
    box-sizing: border-box;
}

.single__product
    .product__block
    .product__left
    .product__content
    .product__pictograms {
    width: 100%;
    height: auto;
    margin-top: 15px;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__pictograms
    ul {
    display: flex;
    align-items: center;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__pictograms
    ul
    li {
    list-style: none;
    width: 70px;
    height: 70px;
    margin-right: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__pictograms
    ul
    li
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__list {
    width: 100%;
    height: auto;
    margin: 10px 0px;
    padding: 10px 0px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__list
    ul
    li {
    list-style: none;
    padding: 6px 0px;
    display: flex;
    align-items: center;
}
.single__product
    .product__block
    .product__left
    .product__content
    .product__list
    ul
    li
    b {
    display: block;
    width: 220px;
}
.single__product .product__block .product__left .product__tabs {
    width: 100%;
    height: auto;
    padding: 0px 20px;
}
.single__product .product__block .product__left .product__tabs .tabs {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
}
.single__product .product__block .product__left .product__tabs .tabs .tab {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #d7d7d7;
    border-right: 0px;
    border-bottom: 5px solid #d7d7d7;
    cursor: pointer;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tabs
    .tab:last-child {
    border-right: 1px solid #d7d7d7;
    border-top-right-radius: 4px;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tabs
    .tab.active {
    border-bottom: 0 solid #1a4795;
    color: #fff;
    background-color: #1a4795;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tabs
    .tab:hover {
    background-color: #d7d7d7;
}
.single__product .product__block .product__left .product__tabs .tab__content {
    width: 100%;
    height: auto;
    padding: 30px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    margin-bottom: 20px;
    border-top-left-radius: 0px;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul {
    border-radius: 4px;
    overflow: hidden;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li {
    list-style: none;
    display: flex;
    width: 100%;
    height: auto;
    min-height: 50px;
    align-items: center;
   
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #d7d7d7;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li:nth-child(odd) {
    background-color: #fff;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li:nth-child(odd)
    b {
    border-right: 1px solid #ffff;
    background-color: #1a4795;
    color: #fff;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li:last-child {
    border-bottom: 1px solid #fff;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li
    b {
    width: 300px;
    height: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
    background-color: #d2d2d236;
    border-right: 1px solid #fff;
}
.single__product
    .product__block
    .product__left
    .product__tabs
    .tab__content
    ul
    li
    span {
    padding: 0px 15px;
}
.single__product .product__block .product__short {
    width: 400px;
    height: 100%;
    position: sticky;
    top: 20px;
    right: 0px;
}
.single__product .product__block .product__short .ps__inside {
    width: 400px;
    height: auto;
    min-height: 400px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
}
.single__product .product__block .product__short .ps__inside .ps__logo {
    width: 100%;
    height: auto;
    padding: 20px 20px;
    border-bottom: 1px solid #d7d7d7;
}
.single__product .product__block .product__short .ps__inside .ps__logo img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}
.single__product .product__block .product__short .ps__inside .ps__cont {
    width: 100%;
    height: auto;
    padding: 20px;
    border-bottom: 1px solid #d7d7d7;
}
.single__product .product__block .product__short .ps__inside .ps__list {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    border-bottom: 1px solid #d7d7d7;
}
.single__product .product__block .product__short .ps__inside .ps__list ul li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    justify-content: space-between;
    padding: 5px 0px;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__list
    ul
    li:first-child {
    font-size: 22px;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__list
    ul
    li:first-child
    b {
    color: #1a4795;
}
.single__product .product__block .product__short .ps__inside .ps__action {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty {
    width: 50%;
    height: auto;
    padding: 10px 20px;
    border-right: 1px solid #d7d7d7;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    h5 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty {
    height: auto;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d7d7d7;
    border-radius: 0;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__action {
    width: 30px;
    height: 40px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a4795;
    color: #fff;
    cursor: pointer;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__action:hover {
    background-color: #1a4795;
    color: #fff;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__action:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__action:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__input {
    width: 40px;
    height: 40px;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__qty
    .qty
    .qty__input
    input {
    border: 0px;
    width: 100%;
    height: 40px;
    background-color: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__button {
    width: calc(100% - 110px);
    padding: 10px 0;
    display: flex;
    padding-right: 20px;
    align-items: center;
    justify-content: center;
}
.single__product
    .product__block
    .product__short
    .ps__inside
    .ps__action
    .action__button
    button {
    width: 100%;
    height: 40px;
    border: 0px;
    background-color: #1a4795;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.cart {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    background-color: #fff;
}
.cart .cart__top {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.cart .cart__top h4 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
}
.cart .cart__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.cart .cart__block .cart__items {
    width: 65%;
    height: auto;
    padding-right: 20px;
}
.cart .cart__block .cart__items .cart__item {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart .cart__block .cart__items .cart__item .ci__left {
    display: flex;
    align-items: center;
    max-width: 60%;
}
.cart .cart__block .cart__items .cart__item .ci__left img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    margin-right: 20px;
}
.cart .cart__block .cart__items .cart__item .ci__left h4 {
    font-size: 16px;
    font-weight: 500;
    max-width: 380px;
    color: #000;
}
.cart .cart__block .cart__items .cart__item .ci__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 380px;
    width: 100%;
}
.cart .cart__block .cart__items .cart__item .ci__right .ci__qty {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    overflow: hidden;
}
.cart .cart__block .cart__items .cart__item .ci__right .ci__qty .ciq {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}
.cart .cart__block .cart__items .cart__item .ci__right .ci__qty .ciq input {
    width: 40px;
    height: 40px;
    border: 1px solid #d7d7d7;
    background-color: #fff;
    outline: none;
    text-align: center;
}
.cart
    .cart__block
    .cart__items
    .cart__item
    .ci__right
    .ci__qty
    .ciq.ciq__minus:hover,
.cart
    .cart__block
    .cart__items
    .cart__item
    .ci__right
    .ci__qty
    .ciq.ciq__plus:hover {
    background-color: #1a4795;
    color: #fff;
}
.cart .cart__block .cart__items .cart__item .ci__right span {
    font-size: 15px;
    font-weight: 500;
    padding: 0px 20px;
    color: #333;
}
.cart .cart__block .cart__items .cart__item .ci__right .ci__delete {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: red;
    border: 1px solid red;
    cursor: pointer;
}
.cart .cart__block .cart__items .cart__item .ci__right .ci__delete:hover {
    background-color: red;
    color: #fff;
}
.cart .cart__block .cart__info {
    width: 35%;
    height: auto;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}
.cart .cart__block .cart__info h4 {
    font-size: 26px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}
.cart .cart__block .cart__info ul li {
    list-style: none;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    border-bottom: 1px solid #d7d7d7;
}
.cart .cart__block .cart__info ul li:first-child {
    border-top: 1px solid #d7d7d7;
}
.cart .cart__block .cart__info ul li b {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.cart .cart__block .cart__info ul li span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.cart .cart__block .cart__info ul li.big {
    border: 0px;
}
.cart .cart__block .cart__info ul li.big b {
    font-size: 26px;
}
.cart .cart__block .cart__info ul li.big span {
    font-size: 26px;
    color: #1a4795;
    font-weight: 700;
}
.cart .cart__block .cart__info .cart__pay {
    margin-top: 20px;
}
.cart .cart__block .cart__info .cart__pay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border-radius: 4px;
    background-color: #1a4795;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.cart .cart__block .cart__info .cart__pay a:hover {
    background-color: #4baedf;
}

.checkout__block {
    width: 100%;
    height: auto;
}
.checkout__block .checkout {
    width: 100%;
    height: auto;
}
.checkout__block .checkout .checkout__full {
    width: 100%;
    height: auto;
}
.checkout__block .checkout .checkout__input {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.checkout__block .checkout .checkout__input label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: flex;
}
.checkout__block .checkout .checkout__input label span {
    color: red;
}
.checkout__block .checkout .checkout__input input,
.checkout__block .checkout .checkout__input select {
    width: 100%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
}
.checkout__block .checkout .checkout__sides {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #d7d7d7;
    padding: 0px 0px;
    margin-top: 20px;
    border-radius: 4px;
}
.checkout__block .checkout .checkout__sides .checkout__side {
    width: 50%;
    height: auto;
    padding: 20px 20px;
}
.checkout__block .checkout .checkout__sides .checkout__side:first-child {
    border-right: 1px solid #d7d7d7;
}
.checkout__block
    .checkout
    .checkout__sides
    .checkout__side
    .checkout__side-title {
    padding-bottom: 20px;
    position: relative;
    width: 100%;
    height: auto;
}
.checkout__block
    .checkout
    .checkout__sides
    .checkout__side
    .checkout__side-title
    h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.checkout__block
    .checkout
    .checkout__sides
    .checkout__side
    .checkout__side-title
    .copy__over {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 5px 10px;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}
.checkout__block
    .checkout
    .checkout__sides
    .checkout__side
    .checkout__side-title
    .copy__over:hover {
    background-color: #1a4795;
    color: #fff;
}
.checkout__block .checkout .checkout__sides .checkout__button {
    width: 100%;
    height: auto;
    padding: 20px;
    border-top: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.checkout__block .checkout .checkout__sides .checkout__button button {
    background-color: #1a4795;
    padding: 10px 45px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: 0px;
    cursor: pointer;
}
.checkout__block .checkout .checkout__sides .checkout__button button:hover {
    background-color: #000;
}

.payment {
    width: 100%;
    height: auto;
    padding-top: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.payment .payment__side {
    width: calc(50% - 15px);
    height: auto;
}

.payment .payment__side h4 {
    font-size: 20px;
    font-weight: 500;
    color: #494949;
}

.payment .payment__side .payment__options {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.payment .payment__side .payment__options li {
    list-style: none;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    align-items: flex-start;
}

.payment .payment__side .payment__options li.active .p-radio::after {
    width: 17px;
    height: 17px;
    background-color: #ed1b24;
    display: block;
    content: "";
    top: 3px;
    position: absolute;
    left: 3px;
    border-radius: 50%;
}

.payment .payment__side .payment__options li .p-radio {
    min-width: 25px;
    height: 25px;
    position: relative;
    border: 1px solid #d7d7d7;
    margin-right: 15px;
    border-radius: 50%;
    cursor: pointer;
}

.payment .payment__side .payment__options li .p-content {
    width: 100%;
    height: auto;
}

.payment .payment__side .payment__options li .p-content h5 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}

.payment .payment__side .payment__options li .p-content p {
    font-size: 16px;
    font-weight: 300;
    color: #191919;
    padding-top: 10px;
}

.payment .payment__side .payment__options li select {
    width: 200px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
}

.payment .payment__side .ps__cart {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.payment .payment__side .ps__cart .psc__item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment .payment__side .ps__cart .psc__item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.payment .payment__side .ps__cart .psc__item .psc__item-content {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.payment .payment__side .ps__cart .psc__item .psc__item-content a {
    font-size: 20px;
    font-weight: 600;
    color: #494949;
    color: #3965b2;
}

.payment .payment__side .ps__cart .psc__item .psc__item-content span {
    font-size: 18px;
    font-weight: 400;
    color: #ed1b24;
}

.payment .payment__side .ps__cart .psc__total {
    width: 100%;
    height: auto;
}

.payment .payment__side .ps__cart .psc__total ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.payment .payment__side .ps__cart .psc__total ul li {
    height: auto;
    padding-bottom: 10px;
    display: inline-flex;
}

.payment .payment__side .ps__cart .psc__total ul li b {
    width: 170px;
    height: auto;
    display: block;
    font-size: 16px;
}

.payment .payment__side .ps__cart .psc__total ul li em {
    text-align: right;
    font-style: normal;
    width: 200px;
    height: auto;
    display: block;
    font-size: 16px;
}

.payment .payment__side .ps__cart .psc__total ul li.big b {
    font-size: 30px;
}

.payment .payment__side .ps__cart .psc__total ul li.big em {
    font-size: 30px;
}

.payment .payment__button {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.payment .payment__button button {
    padding: 7px 20px;
    border-radius: 3px;
    background-color: #1a4795;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    border: 0px;
    cursor: pointer;
}

.payment .payment__button button:hover {
    background-color: #000;
}

.payment .payment__button form button {
    padding: 0px !important;
}

.payment .payment__button form button span {
    padding: 7px 20px !important;
    border-radius: 3px !important;
    background-color: #1a4795 !important;
    background: #1a4795 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #fff !important;
    border: 0px !important;
    cursor: pointer !important;
    height: auto !important;
    line-height: 18px !important;
}

.payment .payment__button form button span::after {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.complete__message {
    width: 100%;
    height: auto;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.complete__message .cm__image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.complete__message .cm__image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: none;
}

.complete__message .cm__text {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.complete__message .cm__text h4 {
    font-size: 42px;
    font-weight: 500;
    color: #282828;
}

.complete__message .cm__text p {
    font-size: 18px;
    font-weight: 400;
    color: #4d4d4d;
    padding-top: 15px;
}

.complete__message.cm--fail .cm__image .cm__fail {
    display: inline-flex;
    filter: invert(11%) sepia(99%) saturate(6521%) hue-rotate(9deg)
        brightness(97%) contrast(103%);
}

.complete__message.cm--success .cm__image .cm__succ {
    display: inline-flex;
    filter: invert(47%) sepia(79%) saturate(396%) hue-rotate(97deg)
        brightness(99%) contrast(89%);
}

.post__block {
    padding: 20px;
    width: 100%;
    max-width: 1080px;
    margin: 0px auto;
}
.post__block p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    padding-bottom: 20px;
}
.post__block img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.account {
    width: 100%;
    height: auto;
    padding-top: 20px;
    background-color: #fff;
}

.account .account__title {
    width: 100%;
    height: auto;
    padding-bottom: 25px;
}

.account .account__title h4 {
    font-size: 32px;
    font-weight: 600;
    color: #282828;
}

.account .account__block {
    width: 100%;
    height: auto;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
}

.account .account__block .account__sidebar {
    width: 100%;
    height: 100%;
    min-width: 250px;
    background-color: #f8f8f8;
    align-items: center;
    padding: 20px 0px;
    display: flex;
    flex-direction: row;
}

.account .account__block .account__content {
    width: 100%;
    height: auto;
    padding-left: 0;
}

.account .account__block .account__sidebar .account__menu {
    width: 100%;
    height: auto;
}

.account .account__block .account__sidebar .account__menu ul li a {
    display: inline-flex;
    align-items: center;
}

.account .account__block .account__sidebar .account__menu ul li a img {
    width: 20px;
}

.account .account__block .account__sidebar .account__avatar {
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.account .account__block .account__sidebar .account__avatar .avatar__round {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #282828; */
    border: 3px solid #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: none;
}

.account
    .account__block
    .account__sidebar
    .account__avatar
    .avatar__round
    span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.account .account__block .account__sidebar .account__avatar .avatar__round img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account .account__block .account__sidebar .account__avatar .aa__hi {
    width: 100%;
    height: auto;
    padding: 10px 20px;
}

.account .account__block .account__sidebar .account__avatar .aa__hi h4 {
    font-size: 14px;
    font-weight: 500;
    color: #282828;
}

.account .account__block .account__sidebar .account__avatar .aa__hi h4 b {
    display: flex;
}

.account .account__block .account__sidebar .account__menu {
    width: 100%;
    height: auto;
    padding: 0;
}

.account .account__block .account__sidebar .account__menu ul {
    flex-direction: row;
    align-items: center;
    display: flex;
}
.account .account__block .account__sidebar .account__menu ul li {
    width: 100%;
    height: auto;
    padding: 15px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    list-style: none;
    cursor: pointer;
}

.account .account__block .account__sidebar .account__menu ul li a {
    display: flex;
    align-items: center;
}

.account .account__block .account__sidebar .account__menu ul li a span {
    font-size: 18px;
    color: #282828;
    font-weight: 500;
    padding-left: 15px;
}

.account .account__block .account__sidebar .account__menu ul li:hover {
    background-color: #282828;
}

.account .account__block .account__sidebar .account__menu ul li:hover > a span {
    color: #fff;
}

.account .account__block .account__sidebar .account__menu ul li:hover > a img {
    filter: invert(96%) sepia(97%) saturate(12%) hue-rotate(237deg)
        brightness(103%) contrast(103%);
}

.account .account__block .account__sidebar .account__menu ul li.active {
    background-color: #4baedf;
}

.account .account__block .account__sidebar .account__menu ul li.active a span {
    color: #fff;
}

.account .account__block .account__sidebar .account__menu ul li.active a img {
    filter: invert(96%) sepia(97%) saturate(12%) hue-rotate(237deg)
        brightness(103%) contrast(103%);
}

.account .account__block .account__content .account__tab {
    width: 100%;
    margin-top: 30px;
    height: auto;
    display: none;
}

.account .account__block .account__content .account__tab .account__overview {
    width: 100%;
    height: auto;
}

.account .account__block .account__content .account__tab .account__overview h4 {
    font-size: 32px;
    color: #282828;
    font-weight: 700;
}

.account .account__block .account__content .account__tab .account__main-title {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    padding: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__main-title
    h4 {
    font-size: 26px;
    color: #282828;
    font-weight: 600;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__main-title
    p {
    padding-top: 10px;
}

.account .account__block .account__content .account__tab.active {
    display: block;
}

.account .account__block .account__content .account__tab .account__tab-content {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    margin-top: 20px;
    margin-bottom: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined {
    width: 100%;
    height: auto;
    display: inline-flex;
    padding: 0px 20px;
    margin-top: 0px;
    position: relative;
    z-index: 1;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit
    img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit:hover {
    background-color: #ec0d00;
    border: 1px solid #ec0d00;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit:hover
    > img {
    filter: invert(1);
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0px;
    position: relative;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul
    li {
    list-style: none;
    padding: 2px 0px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul
    li
    b {
    display: inline-flex;
    width: 130px;
    font-size: 500;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list {
    width: 100%;
    height: auto;
    display: flex;
    padding: 20px 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item {
    width: calc(25% - 10px);
    height: auto;
    height: 300px;
    min-width: 230px;
    margin: 0px 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 15px;
    background-color: #fff;
    border-bottom: 3px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new
    button {
    width: 120px;
    height: 40px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    border: 0px;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new
    button:hover {
    background-color: #29aa69;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new
    button {
    width: 150px;
    height: 40px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    border: 0px;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new
    button:hover {
    background-color: #29aa69;
}

.account .account__block .account__content .account__tab .account__logo {
    width: 100%;
    height: auto;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.account .account__block .account__content .account__tab .account__logo img {
    height: 60px;
    filter: invert(1) grayscale(1);
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    button {
    width: 50px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #ac0d02;
    color: #ac0d02;
    font-weight: 300;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    button:hover {
    background-color: #ac0d02;
    color: #fff;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -101%;
    width: 100%;
    height: 100%;
    background-color: #dcdcdc;
    z-index: 1;
    transition: 0.2s all;
}

span.required {
    color: red;
    font-size: 14px;
    font-weight: 300;
}

.swal2-styled.swal2-confirm {
    background-color: #ec0d00 !important;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item:hover::after {
    bottom: 0px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    h4 {
    font-size: 14px;
    color: #fff;
    background-color: #4baedf;
    font-weight: 600;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom {
    width: 100%;
    height: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    flex-direction: column;
    position: relative;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    span {
    font-size: 16px;
    color: #29aa69;
    margin-bottom: 7px;
    font-weight: 400;
    margin-top: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    em {
    font-style: normal;
    color: #000;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #282828;
    color: #fff;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details.not-active {
    display: none;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form {
    width: 100%;
    height: auto;
    padding: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    label {
    font-size: 18px;
    color: #4d4d4d;
    font-weight: 600;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    input,
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    select {
    width: 100%;
    height: 45px;
    border-radius: 50px;
    border: 2px solid transparent;
    color: #4baedf;
    margin-top: 4px;
    padding-left: 15px;
    outline: none;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button
    button {
    width: 100%;
    height: 45px;
    border: 0px;
    background-color: #d7d7d7;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button
    button:hover {
    background-color: #000;
    color: #fff;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list {
    width: 100%;
    height: auto;
    display: flex;
    padding: 20px 15px;
    flex-wrap: wrap;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item {
    width: 100%;
    height: auto;
    margin: 0px 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 15px;
    background-color: #fff;
    border-bottom: 3px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 35px;
    border-radius: 2px;
    background-color: #282828;
    color: #fff;
    border: 0px;
    cursor: pointer;
    z-index: 9;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    button:hover {
    background-color: #fff;
    color: #000;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -101%;
    width: 100%;
    height: 100%;
    background-color: #dcdcdc;
    z-index: 1;
    transition: 0.2s all;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item:hover::after {
    bottom: 0px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    h4 {
    font-size: 18px;
    color: #282828;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul
    li {
    list-style: none;
    padding: 3px 0px;
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 500;
    width: 50%;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul
    li
    p {
    font-size: 14px;
    color: #a8a8a8;
    font-weight: 400;
    padding-top: 10px;
}

.add__modal {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    display: none;
}

.swal2-container {
    z-index: 1000000000000000100000 !important;
}

.add__modal.active {
    display: flex;
}

.add__modal .am__box {
    width: 560px;
    height: auto;
    max-width: 100%;
    padding: 20px;
    border-radius: 3px;
    background-color: #fff;
    border: 3px solid #d7d7d7;
}

.add__modal .am__box .am__form {
    width: 100%;
    height: auto;
}

.add__modal .am__box .am__form form {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.add__modal .am__box .am__form form .am__group {
    width: calc(50% - 10px);
    height: auto;
    margin: 5px;
    display: flex;
    flex-direction: column;
}

.add__modal .am__box .am__form form .am__group.am__group--full {
    width: 100%;
    margin: 5px;
}

.add__modal .am__box .am__form form .am__group label {
    font-size: 16px;
    font-weight: 600;
    color: #282828;
}

.add__modal .am__box .am__form form .am__group input,
.add__modal .am__box .am__form form .am__group select,
.add__modal .am__box .am__form form .am__group textarea {
    width: 100%;
    height: 45px;
    padding-left: 15px;
    border: 2px solid #282828;
    margin-top: 6px;
}

.add__modal .am__box .am__form form .am__group textarea {
    height: 80px;
    resize: none;
}

.add__modal .am__box .am__form form .am__group input[type="file"] {
    border: 0px;
    border-bottom: 2px solid #282828;
}

.add__modal .am__box .am__form form .am__button {
    width: 100%;
    height: auto;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.add__modal .am__box .am__form form .am__button button {
    width: 200px;
    height: 45px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    font-size: 17px;
    border: 0px;
}

.add__modal .am__box .am__form form .am__button button:hover {
    background-color: #29aa69;
}

.pmodal {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

.pmodal.active {
    display: flex;
}

.pmodal .pmodal__box {
    width: 100%;
    height: auto;
    max-width: 620px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.pmodal .pmodal__box h3 {
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 4px;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 20px;
    width: 100%;
}

.pmodal .pmodal__box .pmb__top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.pmodal .pmodal__box .pmb__top span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-color: transparent;
    border: 2px solid #000;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    position: absolute;
    top: -10px;
    right: 10px;
}

.pmodal .pmodal__box .pmb__top span:hover {
    background-color: #000;
    color: #fff;
}

.pmodal .pmodal__box form {
    width: 100%;
    height: auto;
}

.pmodal .pmodal__box form .pmb__group {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}

.pmodal .pmodal__box form .pmb__group label {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    margin-bottom: 5px;
}

.pmodal .pmodal__box form .pmb__group input,
.pmodal .pmodal__box form .pmb__group textarea {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    padding: 15px;
}

.pmodal .pmodal__box form .pmb__group textarea {
    height: 100px;
}

.pmodal .pmodal__box form .pmb__button {
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.pmodal .pmodal__box form .pmb__button button {
    width: 150px;
    height: 40px;
    border-radius: 3px;
    background-color: #3965b2;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: 0px;
    cursor: pointer;
}

.pmodal .pmodal__box form .pmb__button button:hover {
    opacity: 0.9;
}

.calculator {
    width: 100%;
    height: auto;
    background-color: #1a4795;
}
.calculator .steps {
    width: 100%;
    height: 900px;
    overflow: hidden;
    position: relative;
}
.calculator .steps .step {
    width: 100%;
    height: 900px;
    position: absolute;
    top: -950px;
    left: 0px;
    padding: 50px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease-in-out;
}
.calculator .steps .step.active {
    top: 0px;
}
.calculator .steps .step.over {
    top: -950px;
}
.calculator .steps .step .step__content {
    width: 100%;
    height: auto;
}
.calculator .steps .step .step__content h3 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}
.calculator .steps .step .step__content ul {
    display: flex;
    align-items: center;
}
.calculator .steps .step .step__content ul li {
    list-style: none;
    padding: 15px 40px;
    border-radius: 5px;
    border: 2px solid #fff;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
}
.calculator .steps .step .step__content ul li:hover {
    background-color: #fff;
    color: #1a4795;
}
.calculator .steps .step .step__input {
    width: 100%;
    height: auto;
}
.calculator .steps .step .step__input h3 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}
.calculator .steps .step .step__input input {
    width: 100%;
    height: 80px;
    border: 0px;
    border-bottom: 2px;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    outline: none;
}
.calculator .steps .step .step__input button {
    width: 300px;
    height: 60px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    border: 0px;
}
.calculator .steps .step .step__input button:hover {
    background-color: #000;
    color: #fff;
}
.calculator .steps .step .step__form {
    width: 100%;
    height: auto;
}
.calculator .steps .step .step__form h3 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}
.calculator .steps .step .step__form .form__group {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.calculator .steps .step .step__form .form__group label {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.calculator .steps .step .step__form .form__group input,
.calculator .steps .step .step__form .form__group textarea {
    width: 100%;
    height: 50px;
    border: 0px;
    border-bottom: 2px solid #fff;
    font-size: 30px;
    color: #fff;
    background-color: transparent;
    outline: none;
}
.calculator .steps .step .step__form .form__group textarea {
    height: 120px;
    resize: none;
}
.calculator .steps .step .step__form .form__button {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}
.calculator .steps .step .step__form .form__button button {
    width: 300px;
    height: 60px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    border: 0px;
}
.calculator .steps .step .step__form .form__button button:hover {
    background-color: #000;
    color: #fff;
}
.products
    .products__block
    .products__list
    .p__filters
    .filter__box
    .noUi-connect {
    background-color: #3965b2 !important;
    background: #3965b2 !important;
}
.products {
    border-top: 1px solid #d7d7d7;
}

.switch:checked {
    background-color: #3965b2 !important;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi_actions
    .container
    a {
    background-color: #1a4795;
    border: 1px solid #1a4795;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    .pi_actions
    button {
    background-color: #1a4795;
    border: 1px solid #1a4795;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    div
    span {
    color: #000;
}
.products
    .products__block
    .products__list
    .p__items
    .p__items-list
    .product__item
    .pi__content
    ul
    li
    em {
    color: #000;
}
.products .products__top .ptop__inside h3 {
    color: #000;
}
.products .products__top .ptop__inside ul li a {
    color: #000 !important;
}
.products .products__top .ptop__inside ul li::after {
    color: #000;
    filter: invert(0);
}
.single__product .product__block .product__short .ps__inside .ps__list ul li {
    color: #000;
}
.single__product .product__block .product__left .product__content h3 {
    color: #000;
}
.single__product .product__block .product__left .product__tabs .tabs .tab {
    color: #000;
}
@media screen and (max-width: 1440px) {
    .container {
        padding: 0px 10px;
    }
}
@media screen and (max-width: 1200px) {
    .single__product .product__block .product__short .ps__inside .ps__cont p {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .products
        .products__block
        .products__list
        .p__items
        .p__items-list
        .product__item {
        width: calc(50% - 20px);
    }

    .products .products__block .products__list {
        position: relative;
    }
    .products .products__block .products__list .p__filters {
        position: fixed;
        background-color: #fff;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 99;
        display: none;
    }
    .products .products__block .products__list .p__filters.active {
        display: block;
    }
}
.nav .close_nav {
    display: none;
}
@media screen and (max-width: 1100px) {
    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul
        li
        b {
        min-width: 250px;
        width: 250px;
        font-size: 14px;
    }

    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul
        li
        span {
        font-size: 14px;
        padding: 0px 7px;
    }
}
@media screen and (max-width: 960px) {
    .cart .cart__block {
        flex-direction: column;
    }
    .cart .cart__block .cart__info {
        width: 100%;
    }
    .cart .cart__block .cart__items {
        width: 100%;
    }
    .nav {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 99;
        background-color: #fff;
        padding-top: 100px;
        display: none;
    }
    .header .header__block .header__actions ul li svg {
        display: inline-block;
    }
    .nav .close_nav {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background-color: #191919;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 500;
        color: #fff;
    }
    .nav.active {
        display: block;
        padding-top: 80px;
    }
    .nav .container {
        padding: 0px;
        align-items: flex-start;
    }
    .nav .nav__block {
        height: 100vh;
        overflow-y: scroll;
    }
    .nav .nav__block ul {
        flex-direction: row;
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid #d7d7d7;
    }
    .nav .nav__block ul li {
        width: 100%;
        height: auto;
        min-height: 50px;
        padding: 10px;
        border: 0px;

        border: 1px solid #d7d7d7;
        border-top: 0px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .nav .nav__block ul li a .nav .nav__block ul li:first-child {
        /* border-top: 1px solid #fff; */
    }

    /* .nav .nav__block ul li:hover .subnav {
    display: none;
  } */
    .nav .nav__block ul li:hover .subnav.active {
        display: flex;
    }
    .nav .nav__block ul li a:first-child {
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    .nav .nav__block ul li .subnav {
        position: relative;
        width: 100%;
        top: 10px;
        left: 0px;
        transform: none;
        flex-wrap: wrap;
    }
    .nav .nav__block ul li .subnav ul li h4 {
        font-size: 15px;
    }
    .nav .nav__block ul li .subnav ul li {
        padding: 5px 0px;
        min-height: unset;
    }
    .nav .nav__block ul li .subnav ul li a {
        font-size: 12px;
    }
    .nav .nav__block ul li .subnav ul {
        /* flex-direction:  */
        width: 100%;
        margin-right: 0px;
    }

    .featured .featured__box {
        flex-wrap: wrap;
    }
    .featured .featured__box .featured__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .single__product .product__block .product__left {
        width: 100%;
        margin-right: 0px;
        order: 3;
    }
    .single__product .product__block .product__short {
        width: 100%;
        height: auto;
        position: relative;
        top: 0px;
        left: 0px;
        margin-bottom: 20px;
        order: 2;
        margin-top: 20px;
    }
    .single__product .product__block .product__short .ps__inside {
        width: 100%;
    }
}
@media screen and (max-width: 860px) {
    .hero .hero__block .hero__slider {
        height: auto;
    }
    .account .account__block .account__sidebar {
        flex-direction: column;
        align-items: flex-start;
    }
    .account .account__block .account__sidebar .account__menu ul li {
        min-width: 150px;
    }
    .account .account__block .account__sidebar .account__menu ul {
        flex-wrap: wrap;
    }
    .hero .hero__block .hero__slider .slider__item .container {
        padding: 0px;
    }
    .hero .hero__block .hero__slider .slider__item .slider__box {
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }
    .hero
        .hero__block
        .hero__slider
        .slider__item
        .slider__box
        .slider__content {
        width: 100%;
        padding: 50px 20px;
        height: auto;
    }
    .hero .hero__block .hero__slider .slider__item .slider__box .slider__image {
        position: relative;
        right: 0px;
        clip-path: none;
    }
    .hero
        .hero__block
        .hero__slider
        .slider__item
        .slider__box
        .slider__image
        img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .features .features__box {
        flex-wrap: wrap;
    }
    .features .features__box .features__item {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }

    .footer .footer__block {
        flex-wrap: wrap;
    }
    .footer .footer__block .footer__info {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer .footer__block .footer__nav {
        order: 2;
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
    .footer .footer__block .footer__payment {
        order: 3;
        width: 100%;
    }

    .products .products__top .ptop__inside h3 {
        font-size: 28px;
    }
    .products .products__top .ptop__inside h3 span {
        font-size: 20px;
    }
    .products .products__top .ptop__inside ul li {
        font-size: 14px;
    }
    .products .products__block .products__list .p__items {
        border: 0px;
    }
    .products .products__block .products__list .p__items .p__items-top {
        padding: 25px 10px;
        flex-wrap: wrap;
    }
    .products .products__block .products__list .p__items .p__items-top .p__nav {
        width: 100%;
        margin-top: 10px;
    }
    .products
        .products__block
        .products__list
        .p__items
        .p__items-top
        .p__sort
        .p__fg {
        width: 50%;
    }
    .products
        .products__block
        .products__list
        .p__items
        .p__items-top
        .p__sort
        .p__fg:last-child {
        margin-right: 0px;
    }
    .products .products__block .products__list .p__items .p__items-list {
        padding: 0px;
    }
}
@media screen and (max-width: 740px) {
    .header {
        height: 120px;
    }
    .header .header__block {
        height: auto;
        padding-bottom: 15px;
        flex-wrap: wrap;
    }
    .header .header__block .header__logo {
        order: 1;
        width: 50%;
    }
    .cart .cart__block .cart__items .cart__item {
        flex-direction: column;
    }
    .cart .cart__block .cart__items .cart__item .ci__left {
        width: 100%;
        max-width: 100%;
    }
    .cart .cart__block .cart__items .cart__item .ci__right {
        max-width: 100%;
        margin-top: 20px;
    }
    .header .header__block .header__search {
        order: 3;
        width: 100%;
    }
    .header .header__block .header__actions {
        order: 2;
        width: 50%;
    }

    .confs .confs__block {
        grid-template-rows: repeat(3, 150px);
    }
    .confs .confs__block .confs__item .confs__inside .back h4 {
        font-size: 18px;
    }

    .cart .cart__block .cart__items {
        width: 100%;
    }
    .cart .cart__block .cart__info {
        width: 100%;
    }
    .checkout__block .checkout .checkout__sides .checkout__side {
        width: 100%;
    }
    .checkout__block
        .checkout
        .checkout__sides
        .checkout__side
        .checkout__side-title
        .copy__over {
        top: -30px;
    }
    .payment .payment__side {
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    .confs .confs__block {
        grid-template-rows: repeat(5, 200px);
    }
    .confs .confs__block .confs__item:nth-child(1) {
        grid-column: 1/5;
        grid-row: 1/2;
    }
    .confs .confs__block .confs__item:nth-child(2) {
        grid-column: 1/5;
        grid-row: 2/2;
    }
    .confs .confs__block .confs__item:nth-child(3) {
        grid-column: 1/5;
        grid-row: 3/4;
    }
    .confs .confs__block .confs__item:nth-child(4) {
        grid-column: 1/5;
        grid-row: 4/5;
    }

    .products
        .products__block
        .products__list
        .p__items
        .p__items-list
        .product__item {
        width: 100%;
    }

    .single__product .product__block .product__images {
        padding: 0px 20px;
    }

    .single__product
        .product__block
        .product__images
        .main__images
        .main__image {
        width: 100%;
    }

    .single__product .product__block .product__left .product__content h3 {
        font-size: 20px;
    }

    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul {
        overflow: auto;
    }

    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul
        li {
        flex-wrap: wrap;
    }

    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul
        li
        b {
        border-right: 0px !important;
    }

    .single__product
        .product__block
        .product__left
        .product__tabs
        .tab__content
        ul
        li
        span {
        width: 100%;
        border-top: 1px solid #d7d7d7;
        padding: 15px;
    }
}
@media screen and (max-width: 520px) {
    .single__product
        .product__block
        .product__short
        .ps__inside
        .ps__list
        ul
        li:first-child {
        font-size: 17px;
    }

    .single__product
        .product__block
        .product__left
        .product__content
        .product__list
        ul
        li {
        flex-wrap: wrap;
    }

    .single__product
        .product__block
        .product__left
        .product__content
        .product__list
        ul
        li
        span {
        width: 100%;
    }
}
@media screen and (max-width: 440px) {
    .single__product .product__block .product__short .ps__inside .ps__action .action__qty {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .choosen .choosen__box .box__list {
        padding: 20px 60px;
    }

    .footer .footer__block .footer__nav {
        width: 100%;
    }

    .single__product .product__block .product__short .ps__inside .ps__action {
        flex-wrap: wrap;
    }

    .single__product
        .product__block
        .product__short
        .ps__inside
        .ps__action
        .action__qty {
        width: 100%;
        border: 0px;
    }

    .single__product
        .product__block
        .product__short
        .ps__inside
        .ps__action
        .action__button {
        width: 100%;
        border: 0px;
        border-top: 1px solid #edeaea;
    }
}
@media screen and (max-width: 420px) {
    .features .features__box .features__item {
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */

.filter__button-show {
    color: #fff;
}

.products .products__block .products__list .p__filters .mobile__close-button span {
    color: #fff;
    font-weight: bold;
}
