/*-------------------------global settings-------------------------------*/
:root {
    --main: #F53D3D;
    --main-light: #ff4f4f;
    --main-dark: #d83737;
    --main-bg: #ECEFF4;
    --main-bg-dark: #d8dbe0;
    --bg-grey: #F0F0F0;
    --bg-grey-light: #f7f7f7;
    --bg-grey-dark: #ebebeb;
    --bg-grey-two: #F7F7F7;
    --text: #333333;
    --text-light: #4F4F4F;
    --text-lightest: #828282;
    --text-superlight: #BDBDBD;
    --text-footer: #F2F2F2;
    --border: #F3F3F3;
    --border-light: #E2E2E2;
    --green: #219653;
    --green-light: #26ad61;
    --green-dark: #1b7944;
    --white: #FFFFFF;
    --black: #000000;
    --main-opacity-1: #f53d3d13;
    --main-opacity-8: #f53d3de3;
    --black-opacity-0: #00000000;
    --black-opacity-1: #00000015;
    --black-opacity-4: #00000068;
    --black-opacity-9: #000000cf;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}
a, p, span, div, button, image, h1, h2, h3, h4, h5 , h6, img {
    transition: 0.3s ease;
}
a:focus {
    text-decoration: none;
    color: inherit;
}
body {
    margin: 0;
    color: var(--main-text);
    font-weight: 400;
    height: 100%;
    font-family: 'Inter', sans-serif;
}
.container {
    /* padding-left: 15px;
    padding-right: 15px;
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto; */
}
.image-row {
    display: flex;
    margin-top: 15px;
  }
  
  .payment-item {
      display: flex;
      align-items: flex-start;
      margin-right: 20px;
      flex-direction: column;
  }
  
  .payment-item img {
    width: 100px; /* Ширина изображений */
    height: auto; /* Зависит от соотношения сторон исходных изображений */
    margin-right: 5px; /* Расстояние между изображением и текстом */
  }
  @media screen and (max-width: 768px) {
     
  .image-row {
      display: flex;
      margin-top: 15px;
      flex-direction: column;
      align-items: center;
  }
  }
* {
    box-sizing: border-box;
	outline: none !important;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    transition: 0.2s all linear;
    outline: none;
    margin-right: 5px;
    position: relative;
    top: -1px;
}
input:checked[type="radio"] {
    border: 6px solid var(--main);
}
input[type="text"].form-control:focus, input[type="password"].form-control:focus {
    box-shadow: none;
    border-color: var(--main-dark);
}
select.form-control:focus {
    box-shadow: none;
    border-color: var(--main-dark);
}


/*bootrap start*/
@media (min-width: 768px) {
	.container {
		width: 100%;
	}
}
@media (min-width: 992px) {
	.container {
		width: 100%;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 100%;
        padding-right: 30px;
        padding-left: 30px;
	}
}
@media (min-width: 1400px) {
	.container {
		width: 100%;
        padding-right: 40px;
        padding-left: 40px;
	}
}
@media (min-width: 1600px) {
	.container {
        padding-right: 50px;
        padding-left: 50px;
	}
}
@media (min-width: 2560px) {
	.container {
		width: 2560px;
	}
}
/*bootrap end*/

@media (min-width: 1900px) {
    #content .col-lg-3:nth-child(4n+1) {
        clear: none;
    }
    #content .col-lg-3:nth-child(5n+1) {
        clear: left;
    }
}
@media (min-width: 2500px) {
    #content .col-lg-3:nth-child(5n+1) {
        clear: none;
    }
    #content .col-lg-3:nth-child(6n+1) {
        clear: left;
    }
}


/*-------------------------end global settings-------------------------------*/

/*--------------------------------adaptive-------------------------------*/
@media (max-width: 1600px) {

}
@media (max-width: 800px) {

}
/*--------------------------------adaptive-------------------------------*/


/*--------------------------------header start-------------------------------*/
header {
    background-color: var(--main-bg);
    padding: 1.5em 0;
}
.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 7px;
}
.header_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5em;
}
.header_logo a {
    display: block;
    padding: 0.5em;
    /* border: 1px solid var(--text-superlight); */
    border: 2px solid var(--black);
    border-radius: 50%;
    opacity: 0;
}
.header_logo img {
    width: 7em;
}
.header_logo img:hover {
    transform: scale(1.03);
}
.sampleMenu_list {
    display: flex;
    gap: 1.5em;
    padding-left: 0;
}
.sampleMenu_item__dropdown {
    position: relative;
}
.sampleMenu_item__dropdown::after {
    content: "›";
    display: inline-block;
    line-height: 1;
    transform: rotate(90deg);
    color: var(--black);
    font-size: 16px;
    margin-left: 4px;
    font-weight: 500;
    position: relative;
    top: 1px;
    transition: 0.1s ease;
}
.sampleMenu_item__dropdown:hover::after {
    transform: rotate(-90deg);
    color: var(--main);
    position: relative;
    left: -3px;
}
.sampleMenu_link:focus {
    color: var(--black);
    text-decoration: none;
}
.sampleMenu_item:hover .sampleMenu_link {
    color: var(--main);
}
.sampleMenu_link {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
}
.firstStep {
    display: none;
}
.sampleMenu_item__dropdown:hover .firstStep {
    display: block;
}
.sampleMenu_list li {
    list-style-type: none;
}
.sampleMenu_list #menu {
    background-color: var(--white);
    background-image: none;
    position: absolute;
    border: none;
    border-radius: 0;
    width: max-content;
    z-index: 3;
    padding: 3em 2em;
    -webkit-box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2);
}
.sampleMenu_list #menu .nav::after, .sampleMenu_list #menu .nav::before {
    display: none;
} 
.sampleMenu_list #menu .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em 2em;
}
.sampleMenu_list #menu .nav > li > a {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.sampleMenu_list #menu .nav > li > a:hover {
    background-color: transparent;
    color: var(--main);
}
.sampleMenu_list #menu .nav > li > .sampleMenu_link__red {
    color: var(--main);
}
.samplePhone {
    display: flex;
    gap: 0.5em;
    align-items: start;
}
.samplePhone > img {
    width: 1.4em;
}
.samplePhone > span {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}
.samplePhone > span > span {
    color: var(--text-lightest);
    font-size: 12px;
    font-weight: 400;
}
.samplePhone:focus {
    text-decoration: none;
}
.samplePhone:hover > span {
    color: var(--main);
}
.sampleAccount_login {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.sampleAccount_login img {
    width: 1.7em;
}
.sampleAccount_login span {
    color: var(--text);
    font-size: 12px;
}
.sampleAccount_logout {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.sampleAccount_logout img {
    width: 1.8em;
}
.sampleAccount_logout span {
    color: var(--text);
    font-size: 12px;
}
.hearch_cart #cart {
    margin-bottom: 0;
}
.hearch_cart #cart button {
    background-color: transparent;
    background-image: none;
    text-shadow: none;
    border: none;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: none;
}
.sampleCart_count {
    position: absolute;
    top: -26px;
    left: 26px;
    display: flex;
    background-color: var(--main);
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
}
.sampleCart_text {
    color: var(--text);
    font-size: 12px;
    padding: 0;
    border: 0;
    box-shadow: none;
}
.sampleAccount_login:hover span {
    color: var(--main);
}
.hearch_cart #cart button:hover .sampleCart_text {
    color: var(--main);
}
.sampleSearch #search {
    position: relative;
    margin-bottom: 0;
}
.sampleSearch input {
    width: 14vw;
    background-color: var(--bg-grey);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    padding: 10px 0 10px 15px;
    border: 1px solid var(--border-light);
}
.sampleSearch input::placeholder {
    color: var(--text-superlight);
    font-weight: 400;
}
.sampleSearch button {
    position: absolute;
    right: 15px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    height: 100%;
}
.sampleSearch button img {
    width: 17px;
}
.sampleSearch button:hover img {
    transform: scale(1.05, 1.1);
}
.header_burger {
    display: none;
}
/*--------------------------------header end-------------------------------*/

/*--------------------------------mini basket start--------------------------------*/
.hearch_cart #cart .dropdown-backdrop {
    background-color: var(--black-opacity-9);
}
.hearch_cart #cart .dropdown-menu {
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    bottom: 0;
    width: 500px;
    min-width: 0;
    border: none;
    box-shadow: none;
    /* float: none;*/
    max-height: none;
    background-color: var(--white);
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: -100px 0px 142px 300px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: -100px 0px 142px 300px rgba(0, 0, 0, 0.53);
    box-shadow: -100px 0px 142px 300px rgb(0 0 0 / 53%);
}
.minicart__close {
    position: absolute;
    right: 35px;
    top: 20px;
    cursor: pointer;
}
.minicart__close img {
    display: block;
}
.minicart__close:hover img {
    transform: rotate(90deg);
}
.minicart__close:active img {
    transform: rotate(360deg);
}
.minicart__titleblock {
    display: flex;
    gap: 1em;
    align-items: center;
    padding: 3em 0 3em 30px;
    border-bottom: 1px solid var(--text-superlight);
}
.minicart__titleblock h3 {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    color: var(--text);
    font-size: 24px;
}
.minicart__count {
    color: var(--text-lightest);
    font-size: 24px;
}
#cart .dropdown-menu li > div {
    min-width: 0;
    padding: 0;
}
#cart .dropdown-menu .minicart__products .minicart__product {
    padding: 20px 0 20px 30px;
}
.minicart__product {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--text-superlight);
    gap: 1em;
}
.minicart__thumb {
    width: 100px;
}
.minicart__thumb a img {
    padding: 0;
    border: none;
    width: 100%;
}
.minicart__block {
    width: 294px;
}
.minicart__remove {
    width: 50px;
}
.minicart__remove button:hover img {
    transform: rotate(90deg);
}
.minicart__remove button:active img {
    transform: rotate(360deg);
}
.minicart__title {
    height: 38px;
    overflow-y: hidden;
}
.minicart__title a {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.minicart__amount {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
}
.minicart__total {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
}
.minicart__totals {
    margin-top: 70px;
    padding: 30px 30px 30px 30px;
    margin-bottom: 40px;
    border-top: 1px solid var(--text-superlight);
    border-bottom: 1px solid var(--text-superlight);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.minicart__totals_block p {
    color: var(--text);
    font-size: 16px;
}
#cart .dropdown-menu .minicart__totals_block p {
    margin: 0;
}
.minicart__totals_block span {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
    display: block;
}
#cart .dropdown-menu .minicart__totals_link {
    color: var(--white);
    background-color: var(--main);
    padding: 10px 40px;
    width: max-content;
    display: block;
    border-radius: 20px;
}
#cart .dropdown-menu .minicart__totals_link:hover {
    background-color: var(--main-light);
    background-image: none;
}
#cart .dropdown-menu .minicart__totals_link:active {
    background-color: var(--main-dark);
}
/*--------------------------------mini basket end--------------------------------*/


/*--------------------------------section main slaider start code-------------------------------*/
.mainSlider {
    padding: 4em 0;
}
.mainSlider_item img {
    width: 100%;
    max-width: 1500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.mainSlider_item .mainSlider_item__mob {
    display: none;
}
/*adaptive*/
@media (max-width: 420px) {
    .mainSlider_item .mainSlider_item__desc {
        display: none;
    }
    .mainSlider_item .mainSlider_item__mob {
        display: block;
    }
}
/*adaptive*/
/*--------------------------------section main slaider end code-------------------------------*/

/*--------------------------------section bestsellers start code-------------------------------*/
.sectionTitle {
    color: var(--text);
    font-size: 34px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0.8em;
}
/*--------------------------------section bestsellers end code-------------------------------*/

/*--------------------------------section bestsellers start code-------------------------------*/
.section_bestsellers {
    padding-bottom: 2em;
}
.product-thumb {
    border: 1px solid var(--border-light);
    background-color: var(--white);
    padding: 10px;
    transition:none;
}
.product-thumb:hover {
    position: absolute;
    margin-right: 15px;
    z-index: 3;
}
.product-thumb h4 {
    height: 69px;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}
.product-thumb h4 a {
    color: var(--text);
    /* font-size: 16px; */
    font-weight: 600;
    line-height: 1.3;
    font-size: 14px;
}
.product-thumb .caption {
    width: content;
}
.product-thumb .caption p {
    display: none;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.2;
}
.product-thumb .caption > h4 + p {
    height: auto;
}
.product-thumb .image a:hover {
    opacity: 1;
}
.product-thumb .caption .price {
    display: block;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 15px 0;
}
.product-thumb .price-old {
    margin-left: 0;
    margin-right: 10px;
    color: var(--text-superlight);
    font-weight: 400;
    font-size: 20px;
}
.product-thumb .price-new {
    color: var(--text);
    font-weight: 600;
}
.product-thumb .caption {
    min-height: 0;
}
.product-thumb:hover {
    box-shadow: 10px 14px 44px rgba(51, 76, 113, 0.1);
    width: calc(100% - 30px);
}
.product-thumb:hover .caption p {
    display: block;
}
.product-thumb .button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1em;
    background-color: transparent;
    border: none;
    padding: 0 20px;
}
.product-thumb__about {
    background-color: var(--bg-grey);
    color: var(--text);
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 13px 0;
    display: block;
    text-align: center;
    line-height: 1;
}
.product-thumb__about:hover {
    background-color: var(--bg-grey-light);
    color: var(--text);
}
.product-thumb__about:active {
    background-color: var(--bg-grey-dark);
}
.product-thumb .button-group {
    display: none;
}
.product-thumb .button-group button {
    float: none;
    width: 100%;
    padding: 11px 0;
    line-height: 1;
    background-color: var(--main);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: none;
    font-weight: 400;
}
.product-thumb .button-group button:hover {
    background-color: var(--main-light);
    color: var(--white);
}
.product-thumb .button-group button:active {
    background-color: var(--main-dark);
}
.product-thumb:hover .button-group {
    display: flex;
}
.section_bestsellers .slick-dots li button::before  {
    color: var(--main);
    opacity: 0.15;
    font-size: 11px;
}
.section_bestsellers .slick-dots .slick-active button::before  {
    color: var(--main);
    opacity: 1;
}
/*--------------------------------section bestsellers end code-------------------------------*/

/*--------------------------------section stocks start code-------------------------------*/
.stocks {
    padding: 3em 0;
}
.stocks_content {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.stocks_content__bigItem {
    display: flex;
    gap: 1em;
}
.stocks_content__bigItem img {
    width: 100%;
}
.stocks_content__item img {
    width: 100%;
}
/*--------------------------------section stocks end code-------------------------------*/

/*--------------------------------section catalog start code-------------------------------*/
.section_catalog {
    padding-bottom: 3em;
}
.section_catalog__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 30px 15px;
}
.section_catalog__item {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-light);
}
.section_catalog__item a {
    padding: 30px;
    display: block;
}
.section_catalog__item a:hover {
    box-shadow: 10px 14px 44px rgba(51, 76, 113, 0.1);
}
.section_catalog__item:active {
    border: 1px solid var(--text-light);
}
.section_catalog__item p {
    color: var(--text);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 15px;
}
/*--------------------------------section catalog end code-------------------------------*/

/*--------------------------------section havequestions start code-------------------------------*/
.havequestions {
    margin: 3em 0;
    background-color: var(--bg-grey-light);
}
.havequestions_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.havequestions_block h2 {
    margin-top: 0;
    color: var(--text);
    font-weight: 900;
    font-size: 34px;
}
.havequestions_block p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    font-weight: 500;
    color: var(--text-light);
}
.sampleBtn {
    display: block;
    color: var(--text-footer);
    font-size: 14px;
    background-color: var(--main);
    border-radius: 40px;
    width: max-content;
    padding: 12px 50px;
    margin-top: 20px;
    cursor: pointer;
}
.sampleBtn:hover {
    background-color: var(--main-light);
    color: var(--text-footer);
}
.sampleBtn:active {
    background-color: var(--main-dark);
}
.havequestions_img img {
    width: 100%;
}
/*--------------------------------section havequestions end code-------------------------------*/

/*--------------------------------other start code-------------------------------*/
#common-home #content {
    min-height: 0;
}
.displayNone {
    display: none !important;
}
.sample_link {
    color: var(--main);
}
.sample_link:focus {
    color: var(--main);
}
.sample_link:hover {
    color: var(--main-light);
}
.sample_link:active {
    color: var(--main-dark);
}
.sample_bold {
    font-weight: 600;
}
.sample_whatsapp img {
    width: 20px;
    margin-left: 0.3em;
    position: relative;
    top: -1px;
}
.sample_whatsapp img:hover {
    transform: translate(0, -1px);
}
.sample_viber img:hover {
    transform: translate(0, -1px);
}
.sample_vk img:hover {
    transform: translate(0, -1px);
}
/*--------------------------------other end code-------------------------------*/

/*--------------------------------footer start code-------------------------------*/
footer {
    padding: 4em 0;
}
.footer_grid {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}
.footer_grid__link {
    display: block;
    width: max-content;
    color: var(--text-footer);
    font-size: 18px;
    font-weight: 300;
}
.footer_grid__link:hover {
    color: var(--main);
}
.footer_grid__link:active {
    color: var(--main-light);
}
.footer_grid__linkRed {
    color: var(--main);
}
.footer_grid__item > a + a {
    margin-top: 1em;
}
.footer_block {
    margin-top: 5em;
    display: flex;
    gap: 2em;
    justify-content: space-between;
}
.policy_link {
    color: var(--text-footer);
    font-size: 12px;
    font-weight: 400;
}
.policy_link:hover {
    color: var(--text-superlight);
}
.policy_link span {
    font-weight: 600;
}
footer .samplePhone {
    align-items: center;
}
footer .samplePhone span {
    color: var(--text-footer);
    font-weight: 500;
    font-size: 22px;
}
footer .samplePhone span span {
    font-size: 16px;
}
footer .sampleAddress {
    margin-top: 19px;
    align-items: center;
}
.sampleAddress {
    display: flex;
    gap: 0.5em;
    align-items: start;
}
.sampleAddress > img {
    width: 1.4em;
}
.sampleAddress span {
    color: var(--text-footer);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
}
/*--------------------------------footer end code-------------------------------*/

/*--------------------------------breadcrumb start code-------------------------------*/
.breadcrumb {
    background-color: transparent;
    background-image: none;
    border: none;
    margin: 20px 0;
    overflow-x: auto;
}
.breadcrumb > li {
    padding: 0 15px;
}
.breadcrumb > :first-child {
    padding-left: 0;
}
.breadcrumb > li > a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}
.breadcrumb > li > a:hover {
    color: var(--main);
}
.breadcrumb > li:last-child::after {
    display: none;
}
.breadcrumb > li:last-child > a {
    color: var(--main);
    cursor: default;
}
.breadcrumb > li:after {
    content: "‹";
    border: none;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 24px;
    color: var(--text);
    top: -4px;
}
/*--------------------------------breadcrumb end code-------------------------------*/

/*--------------------------------pagination start code-------------------------------*/
.samplePagination {
    margin-top: 10px;
    margin-bottom: 10px;
}
.samplePagination .pagination {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 0.9em;
}
.samplePagination .pagination_first a, .samplePagination .pagination_last a {
    border: none;
    font-size: 35px;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2px;
    padding-right: 2px;
    color: var(--text-superlight);
    position: relative;
    top: -1px;
}
.samplePagination .pagination_first a:hover, .samplePagination .pagination_last a:hover {
    color: var(--black);
    background-color: transparent;
}
.samplePagination .pagination_number a {
    border-radius: 50%;
    padding: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0;
    float: none;
    color: var(--black);
    font-weight: 600;
    border-color: var(--text-superlight);
    font-size: 14px;
}
.samplePagination .pagination_number a:hover {
    color: var(--black);
    background-color: var(--bg-grey);
    border-color: var(--bg-grey);
}
.pagination>li:last-child>span {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.samplePagination .active span {
    border-radius: 50%;
    padding: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0;
    float: none;
    color: var(--white);
    font-weight: 600;
    border-color: var(--main);
    font-size: 14px;
    background-color: var(--main);
}
.samplePagination .active span:hover {
    background-color: var(--main);
    border-color: var(--main);
}
/*--------------------------------pagination end code-------------------------------*/

/*--------------------------------alerts start code-------------------------------*/
.alert-success {
    background-color: var(--main-opacity-8);
    border: 1px solid var(--main-opacity-8);
    color: var(--white);
    font-size: 16px;
    position: fixed;
    left: 20px;
    top: 30px;
    z-index: 5;
    height: auto;
    width: 280px;
    padding: 20px 40px 20px 20px;
}
.alert-success a {
    color: var(--white);
}
.alert-success .close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    text-shadow: none;
    font-weight: 300;
    color: var(--black);
    font-size: 24px;
}
.alert-success .close:hover {
    transform: rotate(90deg);
}
.alert-success .close:active {
    transform: rotate(360deg);
}
.alert-danger {
    background-color: var(--main-opacity-8);
    border: 1px solid var(--main-opacity-8);
    color: var(--white);
    font-size: 18px;
    position: fixed;
    left: 20px;
    top: 30px;
    z-index: 5;
    height: auto;
    width: 300px;
    padding: 20px 40px 20px 20px;
    line-height: 1.4;
}
.alert-danger a {
    color: var(--white);
}
.alert-danger .close {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 1;
    text-shadow: none;
    font-weight: 300;
    color: var(--black);
    font-size: 24px;
}
.alert-danger .close:hover {
    transform: rotate(90deg);
}
.alert-danger .close:active {
    transform: rotate(360deg);
}
/*--------------------------------alerts end code-------------------------------*/

/*--------------------------------category start code-------------------------------*/
.categoryTitle {
    text-align: center;
    font-weight: 600;
    font-size: 34px;
    color: var(--text);
    margin-bottom: 0.5em;
}
.categorySort {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 1.5em;
}
.categorySort_nametop, .categorySort_namebottom, .categorySort_order {
    font-size: 14px;
    color: var(--text-lightest);
    font-weight: 500;
}
.categorySort_nametop:hover, .categorySort_namebottom:hover, .categorySort_order:hover {
    color: var(--main);
}
.categorySort_nametop:hover::after, .categorySort_namebottom:hover::after {
    color: var(--main);
}
.categorySort_nametop.categorySort_active, .categorySort_namebottom.categorySort_active, .categorySort_order.categorySort_active {
    color: var(--main);
}
.categorySort_nametop::after, .categorySort_namebottom::after {
    content: '‹';
    display: inline-block;
    color: var(--text-lightest);
    margin-left: 5px;
    font-size: 20px;
    position: relative;
    top: 2px;
}
.categorySort_nametop::after {
    transform: rotate(90deg);
}
.categorySort_namebottom::after {
    transform: rotate(-90deg);
}
.categorySort_nametop.categorySort_active::after {
    color: var(--main);
}
.categorySort_namebottom.categorySort_active::after {
    color: var(--main);
}
.category_noProducts {
    font-size: 16px;
}
.categorySubcategories_list {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-grey-light);
    padding: 20px;
    margin-left: -15px;
    margin-right: -15px;
    gap: 10px 5px;
}
.categorySubcategories_item {
    list-style-type: none;
}
.categorySubcategories_link {
    display: block;
    padding: 10px;
}
.categorySubcategories_img {
    width: 110px;
    display: block;
}
.categorySubcategories_text {
    margin-bottom: 0;
    margin-top: 5px;
    color: var(--text);
    font-size: 13px;
    max-width: 100px;
    line-height: 1.1;
}
.categorySubcategories_link:hover .categorySubcategories_text {
    color: var(--main);
}
/*--------------------------------category end code-------------------------------*/

/*--------------------------------search start code-------------------------------*/
#product-search .searchFields .form-control {
    box-shadow: none;
    font-size: 15px;
    height: 39px;
}
#product-search .checkbox-inline {
    color: var(--text-lightest);
}
#product-search .checkbox-inline input {
    position: relative;
    top: 3px;
    width: 15px;
    height: 15px;
}
.product-search_resultsTitle {
    margin-top: 35px;
    color: var(--text);
    font-size: 30px;
}
/*--------------------------------search end code-------------------------------*/

/*--------------------------------product start code-------------------------------*/
#product-product {
    padding-bottom: 3em;
}
#product-product h1 {
    font-weight: 600;
    color: var(--text);
    font-size: 34px;
    margin-bottom: 25px;
}
.product-product_content {
    display: flex;
    gap: 1%;
}
.product-product_thumb {
    width: 45%;
}
.product-product_characteristics {
    width: 25%;
}
.product-product_main {
    width: 30%;
}
.productAttributes h4 {
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
}
.productAttributes_item {
    display: flex;
    gap: 1em;
}
.productAttributes_item + .productAttributes_item {
    margin-top: 0.5em;
}
.productAttributes_name {
    width: 45%;
}
.productAttributes_text {
    width: 55%;
}
.productAttributes_name {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
}
.productAttributes_text {
    color: var(--text);
    font-size: 16px;
    font-weight: 300;
}
#product-product .product_mainThumbnail .thumbnail {
    padding: 0;
    border: none;
    border-radius: 0;
}
#product-product .product_mainThumbnail .thumbnail img {
    width: 100%;
}
#product-product .thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#product-product .thumbnails .image-additional {
    max-width: none;
    float: none;
}
#product-product .thumbnails .image-additional .thumbnail {
    padding: 0;
    border: none;
    border-radius: 0;
}
.product-product_description {
    margin-top: 2em;
}
.product-product_description > h2 {
    color: var(--text);
    font-size: 28px;
    font-weight: 600;
}
.product-product_description__content {
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
    width: 100%;
    max-width: 1100px;
}
.product-product_description__content * {
    font-size: 16px !important;
    color: var(--text) !important;
    line-height: 1.5 !important;
}
.product-product_main__content {
    box-shadow: -5px 18px 34px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    padding: 40px;
}
.product_onePrice {
    margin: 5px 0 25px;
}
.product_twoPrices {
    display: flex;
    align-items: center;
    gap: 1em;
    margin: 5px 0 25px; 
}
.product_priceNew {
    color: var(--text);
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}
.product_priceOld {
    color: var(--text-superlight);
    font-size: 34px;
    font-weight: 500;
}
.productStock {
    font-size: 16px;
    font-weight: 500;
}
.productStock_green {
    color: var(--green);
}
.productStock_red {
    color: var(--main-dark);
}
.productDelivery {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
}
.productDelivery span {
    font-weight: 600;
}
.productOptions_title {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    margin-top: 28px;
}
.productOptions_radio {
    margin-bottom: 30px;
}
.productOptions_radio label {
    padding-left: 0;
}
.productOptions_radio label span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-superlight);
    border: 1px solid var(--text-superlight);
    width: max-content;
    padding: 10px 20px;
    border-radius: 40px;
}
.productOptions_radio label span:hover {
    border: 1px solid var(--main);
    color: var(--text);
}
.productOptions_radio label input {
    opacity: 0;
    width: 1px;
    height: 1px;
    display: block;
    border: none;
}
.productOptions_radio label input[type="radio"]:checked + span {
    color: var(--text);
    border: 1px solid var(--text);
}
/*product page adaptive start code*/
@media (max-width: 1200px) {
    .product-product_content {
        flex-direction: column;
    }
    .product-product_characteristics {
        width: 100%;
        max-width: 800px;
    }
    .product-product_main {
        width: 100%;
        max-width: 456px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    #product-product h1 {
        font-size: 27px;
    }
    .product_priceOld, .product_priceNew {
        font-size: 27px;
    }
    .product-product_main__content {
        padding: 25px;
    }
}
/*product page adaptive end code*/
/*--------------------------------product end code-------------------------------*/

/*--------------------------------buttons start code-------------------------------*/
.btn-primary {
    transition: 0.3s ease;
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important; 
}
.btn-primary:focus {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important; 
}
.btn-primary:hover {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main-light) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important; 
}
.btn-primary:active {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main-dark) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important; 
}
.btn-default {
    color: var(--text) !important;
    text-shadow: none !important;
    background-color: var(--main-bg) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important;
}
.btn-default:focus {
    color: var(--text) !important;
    text-shadow: none !important;
    background-color: var(--main-bg) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important;
}
.btn-default:hover {
    color: var(--text) !important;
    text-shadow: none !important;
    background-color: var(--main-bg-dark) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important;
}
.btn-default:active {
    color: var(--text) !important;
    text-shadow: none !important;
    background-color: var(--main-bg) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 35px !important;
}
.btn-info {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--text) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-info:focus {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--text) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-info:hover {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--black) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-info:active {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--text) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-danger {
    transition: 0.3s ease;
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-danger:focus {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-danger:hover {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main-light) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
.btn-danger:active {
    color: var(--text-footer) !important;
    text-shadow: none !important;
    background-color: var(--main-dark) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
    border: none !important;
    border-radius: 40px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 13px !important;
}
/*--------------------------------buttons end code-------------------------------*/

/*---------------------------------page quickcheckout start code----------------------------------------*/
.quickcheckout_title {
    color: var(--text);
}
#quickcheckoutconfirm {
    margin-bottom: 2em;
}
#quickcheckoutconfirm .quickcheckoutleft {
    width: 100%;
    float: none;
}
#quickcheckoutconfirm .quickcheckoutright {
    width: 100%;
    float: none;
}
#quickcheckoutconfirm label, input[type = "radio"] {
    cursor: pointer;
}
#quickcheckout-disable {
    display: flex;
    gap: 2em;
}
.quickcheckoutData {
    flex-grow: 1;
}
.quickcheckoutCart {
    width: 100%;
    flex-shrink: 0;
}
.quickcheckoutCart #cart1 {
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
}
.quickcheckoutCart #cart1 .quickcheckout-content {
    overflow: hidden;
    width: 100%;
}
.quickcheckout_cart {
    display: flex;
    gap: 3em;
}
.quickcheckout_cart__item {
    display: flex;
    gap: 1em;
    align-items: center;
}
.quickcheckout_cart__item + .quickcheckout_cart__item {
    margin-top: 1.5em;
}
.quickcheckout_cart__name {
    line-height: 1.1;
    flex-shrink: 1;
    flex-grow: 1;
    width: 175px;
}
.quickcheckout_cart__name > a {
    color: var(--text);
    word-wrap: break-word;
    font-size: 16px;
    font-weight: 500;
}
.quickcheckout_cart__block {
    width: 100px;
}
.quickcheckout_cart__quantity {
    font-weight: 300;
}
.quickcheckout_cart__sum {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
}
.quickcheckout_cart__totals {
    margin-top: 0;
    /* border-top: 2px solid var(--orange); */
    padding-top: 0;
    width: 320px;
    /* align-self: flex-end; */
}
.quickcheckout_cart__totalItem {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.quickcheckout_cart__totalTitle {
    line-height: 1.1;
    width: 175px;
    font-size: 20px;
    font-weight: 300;
}
.quickcheckout_cart__totalText {
    width: 100px;
    text-align: right;
    color: var(--black);
    font-weight: 700;
    font-size: 23px;
    line-height: 1;
}
.quickcheckout_cart__totalItem + .quickcheckout_cart__totalItem {
    margin-top: 1em;
}
#shipping-method .quickcheckout-heading {
    background-color: transparent;
    margin-top: 10px;
    padding-top: 10px;
} 
#shipping-method .quickcheckout_smallTitle {
    background-color: transparent;
    color: var(--main);
}
#shipping-method .quickcheckout-content {
    border: none;
}
.quickcheckout_shippingMethod__item {
    display: flex;
    gap: 1em;
    align-items: center;
}
.quickcheckout_shippingMethod__label label {
    font-weight: 400;
}
.quickcheckout_shippingMethod__text label {
    font-weight: 400;
    line-height: 1.1;
}
#payment-method .quickcheckout-heading {
    background-color: transparent; 
}
#payment-method .quickcheckout_smallTitle {
    color: var(--main);
}
#payment-method .quickcheckout-content {
    border: none;
}
.quickcheckout_paymentMethod__item {
    display: flex;
    align-items: center;
    gap: 1em;
}
.quickcheckout_paymentMethod__label label {
    font-weight: 400;
}
#payment-address .quickcheckout-content {
    border: none;
    margin-bottom: 0;
}
#payment-address .quickcheckout-content div {
    margin-bottom: 1em;
}
#payment-address .quickcheckout-content div input[type="text"] {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    height: 42px;
    padding: 6px 14px;
    max-width: 450px;
}
#payment-address .quickcheckout-content div select {
    font-size: 16px;
    font-weight: 400;
    height: 42px;
    max-width: 450px;
    color: var(--text);
}
#payment-address .quickcheckout-content div input::placeholder {
    font-weight: 300;
    color: var(--text-superlight);
}
#payment-address #custom-field-payment {
    margin-bottom: 0;
}
.quickcheckoutmid {
    margin-top: 2em;
    margin-bottom: 2em;
}
.quickcheckoutmid .terms label {
    margin-right: 0;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    display: block;
    width: 100%;
    margin-top: 0.2em;
}
.quickcheckoutmid .terms label a {
    color: var(--text-dark-gray);
}
.quickcheckoutmid .terms label a b {
    font-weight: 400;
}
.quickcheckoutmid .terms label input {
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
}
.quickcheckoutmid .quickcheckout-content {
    border: none;
}
#payment-address .text-danger {
    margin-bottom: 0 !important;
}
#shipping-address {
    display: none;
}
#payment-address .quickcheckout-content .radio input[type="radio"] {
    position: relative;
    top: 4px;
}
#payment-address #payment-existing select {
    margin-left: 2em;
}
#payment-address #payment-new label {
    display: none;
}
.quickcheckout_shippingMethod__label label {
    line-height: 1.1;
}
.quickcheckout_paymentMethod__input input {
    top: -3px;
}
.quickcheckout_title {
    margin-bottom: 1em;
}
.quickcheckout_cart__products {
    background-color: var(--main-bg);
    padding: 0 2em 1em;
    border-radius: 0;
    width: 45%;
}
.quickcheckout_cart__title {
    color: var(--main);
}
.quickcheckout_cart__undertitle {
    font-weight: 400;
    margin-bottom: 1em;
    line-height: 1.3;
    color: var(--text-dark-gray);
}
.quickcheckout_cart__image a img {
    width: 100%;
    max-width: 100px;
    min-width: 60px;
}
#cart1 .quickcheckout_cart__quantity input {
    border: 1px solid var(--white);
    background-color: var(--white);
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    max-width: 70px;
    min-width: 60px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    float: none;
    margin-bottom: 0.5em;
}
#cart1 .quickcheckout_cart__quantity button {
    background-color: var(--main);
    color: var(--white);
    border: none;
    font-size: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    padding: 0.5em;
    line-height: 1;
    margin-bottom: 0.5em;
}
#cart1 .quickcheckout_cart__quantity button:hover {
    background-color: var(--main-dark);
}
#cart1 .quickcheckout_cart__quantity button:active {
    background-color: var(--main-light);
}
.quickcheckout_cart__sum {
    text-align: center;
}
.quickcheckout_cart__remove button {
    border: none;
    background-color: transparent;
}
.quickcheckout_cart__remove button img {
    width: 14px;
}
.quickcheckout_cart__remove button img:hover {
    transform: scale(1.1);
}
.quickcheckout_cart__count, .quickcheckout_cart__fulldiscount, .quickcheckout_cart__payment, .quickcheckout_cart__shipping, .quickcheckout_cart__totalAll {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
    gap: 1em;
}
.quickcheckout_cart__totalAll {
    align-items: flex-end;
}
.quickcheckout_cart__fulldiscount > div, .quickcheckout_cart__count > div, .quickcheckout_cart__payment > div, .quickcheckout_cart__shipping > div {
    font-size: 14px;
    font-weight: 400;
}
.quickcheckout_cart__fulldiscount > :nth-child(2) {
    color: var(--main);
}
.quickcheckout_cart__payment > :nth-child(2), .quickcheckout_cart__shipping  > :nth-child(2) {
    text-align: right;
}
.quickcheckout_cart__totalAll {
    margin-top: 1.5em;
}
.quickcheckout_cart__totalAll > :nth-child(1) {
    font-size: 18px;
}
.quickcheckout_cart__totalAll > :nth-child(2) {
    font-size: 22px;
}
.quickcheckout_cart_clearAll, .quickcheckout_cart_myOrders {
    display: block;
    width: 100%;
    background-color: var(--bg-grey);
    margin-top: 0.8em;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: var(--text-dark-gray);
    border-radius: 40px;
    cursor: pointer;
}
.quickcheckout_cart_clearAll:hover, .quickcheckout_cart_myOrders:hover {
    background-color: var(--bg-grey-dark);
    color: var(--text);
}
.quickcheckout_cart_clearAll:active, .quickcheckout_cart_myOrders:active {
    background-color: var(--bg-grey-light);
    color: var(--text);
}
.checkout_terms {
    width: 320px;
    /* margin-left: calc(45% + 3em); */
    margin-top: 0.5em;
    /* position: absolute; */
}
.checkout_terms > button {
    width: 100%;
}
.quickcheckoutmid_terms {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.quickcheckout_top {
    position: relative;
}
.quickcheckout_top #terms .quickcheckout-content {
    padding: 0;
}
.quickcheckout_top .quickcheckoutmid {
    margin-top: 0;
    margin-bottom: 0;
}
.checkout_terms button {
    font-size: 20px;
}
.checkout_terms button:focus {
    font-size: 20px;
}
.checkout_terms button:hover {
    font-size: 20px;
}
.checkout_terms button:active {
    font-size: 20px;
}
.checkout_terms button:active:focus {
    font-size: 20px;
}
.checkout_terms button img {
    width: 15px;
    margin-right: 0.3em;
    position: relative;
    top: -2px;
}
.quickcheckout_fields, #shipping-method, #payment-method {
    background-color: var(--main-bg);
    padding: 0 2em 1em;
    border-radius: 0;
    width: 45%;
}
.quickcheckout_fields {
    padding-top: 1em;
}
.quickcheckout_fields .quickcheckout_cart__undertitle, #shipping-method .quickcheckout_cart__undertitle, #payment-method .quickcheckout_cart__undertitle {
    margin-bottom: 0;
}
.quickcheckout_fields #payment-address .col-sm-6 {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    display: block;
}
.quickcheckout_fields #payment-address .col-sm-6 input:hover {
    border: 1px solid var(--main-dark);
}
.quickcheckout_fields #payment-address .col-sm-6 select:hover {
    border: 1px solid var(--main-dark);
}
.quickcheckout_cart__statusgreen, .quickcheckout_cart__statusred {
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-top: 0.3em;
}
.quickcheckout_cart__statusgreen {
    color: green;
}
.quickcheckout_cart__statusred {
    color: var(--main);
}
.quickcheckoutright label {
    font-size: 16px;
    color: var(--text-light);
} 
.quickcheckout_shippingMethod__text label[for="pickup.pickup"], .quickcheckout_shippingMethod__text label[for="flat.flat"] {
    display: none;
}
/*---------------------------------page quickcheckout end code----------------------------------------*/

/*---------------------------------page common-success start code----------------------------------------*/
#common-success h1 {
    color: var(--text);
    margin-bottom: 15px;
}
#common-success p {
    font-size: 16px;
    color: var(--text);
}
#common-success p a {
    color: var(--main);
}
#common-success p a:hover {
    color: var(--main-dark);
}
#common-success p a:active {
    color: var(--main-light);
}
/*---------------------------------page common-success end code----------------------------------------*/

#account-register form input {
    max-width: 400px;
}

/*---------------------------------page account-login start code----------------------------------------*/
#account-login .well {
    background-color: var(--main-bg);
    border-radius: 0;
    border: none;
    box-shadow: none;
}
#account-login .well h2 {
    color: var(--text);
    font-size: 30px;
}
#account-login .well p {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 20px;
}
.account-login_forgot {
    color: var(--main);
}
.account-login_forgot:hover {
    color: var(--main-dark);
}
.account-login_forgot:active {
    color: var(--main-light);
}
#account-login .form-control {
    height: 38px;
    padding: 13px 15px;
    box-shadow: none;
    font-size: 15px;
    max-width: 287px;
}
/*---------------------------------page account-login end code----------------------------------------*/

/*---------------------------------page account-account start code----------------------------------------*/
#account-account h2 {
    color: var(--text);
    font-size: 30px;
    margin-bottom: 20px;
}
#account-account li + li {
    margin-top: 7px;
}
#account-account li a {
    color: var(--text-light);
    font-size: 16px;
}
#account-account li a:hover {
    font-size: 16px;
    color: var(--main);
}
/*---------------------------------page account-account end code----------------------------------------*/

/*---------------------------------page account-edit start code----------------------------------------*/
#account-edit h1 {
    color: var(--text);
    font-size: 34px;
    margin-bottom: 20px;
}
#account-edit fieldset legend {
    color: var(--text-lightest);
    border-bottom: none;
}
#account-edit fieldset .control-label {
    color: var(--text);
    font-size: 16px;
}
#account-edit fieldset .control-label:before {
    color: var(--main);
}
#account-edit fieldset input {
    height: 38px;
    padding: 13px 15px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
    max-width: 287px;
}
/*---------------------------------page account-edit end code----------------------------------------*/

/*---------------------------------page account-password start code----------------------------------------*/
#account-password h1 {
    color: var(--text);
    font-size: 34px;
    margin-bottom: 20px;
}
#account-password fieldset legend {
    color: var(--text-lightest);
    border-bottom: none;
}
#account-password fieldset .control-label {
    color: var(--text);
    font-size: 16px;
}
#account-password fieldset .control-label:before {
    color: var(--main);
}
#account-password fieldset input {
    height: 38px;
    padding: 13px 15px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
    max-width: 287px;
}
/*---------------------------------page account-password end code----------------------------------------*/

/*---------------------------------page account-address start code----------------------------------------*/
#account-address h2 {
    color: var(--text);
    font-size: 34px;
    margin-bottom: 20px;
}
#account-address fieldset legend {
    color: var(--text-lightest);
    border-bottom: none;
}
#account-address fieldset .control-label {
    color: var(--text);
    font-size: 16px;
}
#account-address fieldset .control-label:before {
    color: var(--main);
}
#account-address fieldset input.form-control {
    height: 38px;
    padding: 13px 15px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
    max-width: 287px;
}
#account-address fieldset select {
    height: 38px;
    padding: 8px 15px;
    box-shadow: none;
    font-size: 15px;
    width: 100%;
    max-width: 287px;
}
#account-address tbody td {
    background-color: var(--bg-grey-light);
    border: 7px solid var(--white);
    font-size: 16px;
    color: var(--text);
}
@media screen and (max-width: 767px){
    .table-responsive {
        border: none;
    }
}
/*---------------------------------page account-address end code----------------------------------------*/

/*---------------------------------page account-order start code----------------------------------------*/
#account-order h1 {
    color: var(--text);
    font-size: 34px;
    margin-bottom: 20px;
}
#account-order h2 {
    color: var(--text);
    font-size: 30px;
    margin-bottom: 20px;
}
#account-order table td {
    background-color: var(--bg-grey-light);
    border: 7px solid var(--white);
    font-size: 16px;
    color: var(--text);
}
#account-order thead td {
    color: var(--black);
    font-weight: 500;
}
/*---------------------------------page account-order end code----------------------------------------*/

/*---------------------------------page error-not-found start code----------------------------------------*/
#error-not-found h1 {
    color: var(--text);
    font-size: 34px;
}
#error-not-found p {
    color: var(--text);
    font-size: 16px;
}
/*---------------------------------page error-not-found end code----------------------------------------*/

/*---------------------------------page single article start code----------------------------------------*/
#information-information h1 {
    color: var(--text);
    font-size: 34px;
    margin-bottom: 20px;
}
#information-information p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 15px;
}
#information-information .singleArticle_definition {
    font-size: 18px;
}
#information-information .singleArticle_attention {
    font-size: 20px;
    font-weight: 200;
    margin-top: 28px;
}
/*---------------------------------page single article end code----------------------------------------*/

#information-information .pageDelivery p {
    font-size: 18px;
    margin-top: 2em;
}
.pageDelivery h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2em;
}
.pageDelivery h4 span {
    font-size: 24px;
    font-weight: 200;
}
/*---------------------------------page contact start code----------------------------------------*/
#information-contact h1 {
    color: var(--text);
}
#information-contact .form-horizontal {
    margin-top: 30px;
}
#information-contact fieldset {
    padding: 0;
}
#information-contact fieldset legend {
    color: var(--main);
    font-weight: 200;
    font-size: 24px;
    border: none;
}
#information-contact fieldset label::before {
    color: var(--main);
}
#information-contact fieldset label {
    color: var(--text);
    font-size: 15px;
    font-weight: 300;
}
#information-contact fieldset input.form-control {
    height: 40px;
    font-size: 14px;
}
#information-contact fieldset textarea.form-control {
    font-size: 14px;
}
#information-contact fieldset textarea.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--main-dark);
}
#information-contact .buttons .pull-right {
    float: none !important;
    width: max-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}
#information-contact .buttons .pull-right a {
    color: var(--main);
}
.section_map {
    margin-top: 35px;
    margin-bottom: -30px;
    margin-left: -15px;
    margin-right: -15px;
}
.information-contact_title {
    font-size: 20px;
    font-weight: 300;
    margin-top: 25px;
    color: var(--text);
}
.information-contact_info {
    font-size: 16px;
}
.information-contact_info address {
    color: var(--text);
}
.information-contact_block {
    font-size: 15px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
    max-width: 600px;
    gap: 10px;
}
.information-contact_block + .information-contact_block {
    margin-top: 3px;
}
.information-contact_about {
    font-weight: 300;
}
.information-contact_about span {
    font-weight: 100;
}
.contact_content::before, .contact_content::after {
    display: none;
}
.contact_content {
    display: flex;
    justify-content: space-between;
}
/*adaptive*/
@media (max-width: 992px) {
    .contact_content {
        flex-direction: column;
    }
}
/*adaptive*/
/*---------------------------------page contact end code----------------------------------------*/

/*--------------------------------animation logo start code--------------------------------*/
.header_logo .animationLogo {
    animation-name: animationLogo;
    animation-duration: 4s;
    opacity: 1;
}
@keyframes animationLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*--------------------------------animation logo end code--------------------------------*/

/*--------------------------------animation search start code--------------------------------*/
.header_search .animationSearch {
    animation-name: animationSearch;
    animation-duration: 3s;
}
@keyframes animationSearch {
    0% {
        transform: rotate(345deg);
    }
    100% {
        transform: rotate(0);
    }
}
/*--------------------------------animation search end code--------------------------------*/

/*--------------------------------animation search start code--------------------------------*/
.animationCatalogTitle {
    animation-name: animationCatalogTitle;
    animation-duration: 1s;
    position: relative;
}
@keyframes animationCatalogTitle {
    0% {
        left: -100px;
    }
    20% {
        left: 100px;
    }
    40% {
        left: -80px;
    }
    50% {
        left: 70px;
    }
    60% {
        left: -60px;
    }
    70% {
        left: 50px;
    }
    80% {
        left: -40px;
    }
    85% {
        left: 30px;
    }
    90% {
        left: -20px;
    }
    95% {
        left: 10px;
    }
    100% {
        left: 0;
    }
}
/*--------------------------------animation search end code--------------------------------*/

/*--------------------------------mobil--------------------------------*/
.mobil {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 10000;
    background: var(--black-opacity-9);
}
.mobil_content {
    background-color: var(--white);
    width: 340px;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    padding: 2em;
    overflow-y: scroll;
}
.mobil_close {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 1em;
    cursor: pointer;
}
.mobil_close:hover {
    transform: rotate(45deg);
}
.mobil_close:active {
    transform: rotate(360deg);
}
.mobil_nav {
    padding-bottom: 1.5em;
    margin-top: 20px;
}
.mobil_nav .topmenu {
    border: none;
    background-color: var(--white);
    border-radius: 0;
    display: block;
    position: static;
}
.mobil_nav .topmenu .card-body {
    padding: 0;
}
.mobil_nav .topmenu .card-body .mod-menu {
    display: block;
}
.mobil_nav .sampleMenu_list {
    display: block;
}
.mobil_nav .sampleMenu_item__dropdown {
    width: max-content;
}
.mobil_nav .sampleMenu_item + .sampleMenu_item {
    margin-top: 10px;
}
.mobil_nav .sampleMenu_link {
    font-size: 16px;
    font-weight: 400;
}
.mobil_nav .sampleMenu_item__dropdown:hover #menu {
    box-shadow: none;
    padding: 0;
    position: static;
}
.mobil_nav .sampleMenu_item__dropdown:hover::after {
    position: absolute;
    left: 133px;
}
.mobil_nav .sampleMenu_list #menu .nav {
    display: block;
}
.mobil_nav .sampleMenu_item__dropdown:hover .firstStep .collapse .nav li a img {
    display: none;
}
.mobil_nav .sampleMenu_item__dropdown:hover .firstStep .collapse {
    display: block;
}
.mobil_nav  .sampleMenu_list #menu .nav > li > a {
    font-size: 15px;
    font-weight: 300;
    padding: 7px 15px 7px 15px;
}
.mobil_links {
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 2em;
}
.mobil_links > li {
    list-style-type: none;
}
.mobil_links li + li {
    margin-top: 1em;
}
.mobil_phone {
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
}
.mobil_phone img {
    width: 1em;
}
.mobil_phone span {
   font-size: 1rem;
   color: var(--black);
   font-weight: 500;
}
.mobil_address {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.mobil_address img {
    width: 1em;
}
.mobil_address span {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.2;
}
.mobil_address span span {
    font-weight: 300;
}
.mobil_content__link {
    margin-top: 2.5em;
    margin-bottom: 2em;
}
.mobil_logo {
    margin-top: 1em;
    padding: 1em;
    /* border: 1px solid var(--text-superlight); */
    border: 2px solid var(--black);
    border-radius: 50%;
    display: inline-block;
}
.mobil_logo img{
    width: 7em;
}
.mobil_links .samplePhone {
    align-items: center;
}
.mobil_links .sampleAddress {
    align-items: center;
}
.mobil_links .sampleAddress span {
    color: var(--text);
}
.mobil_links .mobile_messangers {
    margin-left: 20px;
    margin-top: 20px;
}
.mobile_messangers .sample_whatsapp, .mobile_messangers .sample_viber {
    margin-right: 10px;
}
.mobile_search {
    display: none;
}
.mobile_search .sampleSearch input {
    width: 100%;
}
.appearMobil {
    animation-name: appearMobil;
    animation-duration: 1s;
}
.disappearMobil {
    animation-name: disappearMobil;
    animation-duration: 1s;
}
@keyframes appearMobil {
    0% {
        right: -340px;
    }
    100% {
        right: 0;
    }
}
@keyframes disappearMobil {
    0% {
        right: 0;
    }
    100% {
        right: -340px;
    }
}
.appearMobilBg {
    animation-name: appearMobilBg;
    animation-duration: 1s;
}
.disappearMobilBg {
    animation-name: disappearMobilBg;
    animation-duration: 1s;
}
@keyframes appearMobilBg {
    0% {
        background: var(--black-opacity-0);
    }
    100% {
        background: var(--black-opacity-9);
    }
}
@keyframes disappearMobilBg {
    0% {
        background: var(--black-opacity-9);
    }
    100% {
        background: var(--black-opacity-0);
    }
}
.openMobil {
    display: block;
}
/*--------------------------------end mobil--------------------------------*/

/*--------------------------------modal--------------------------------*/
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10000;
    background: var(--black-opacity-9);
    overflow-y: scroll;
}
.modal_content {
    height: max-content;
    background-color: var(--white);
    position: relative;
    padding: 3.5em 2em;
    max-width: 40em;
    width: 100%;
    /*height: 48em;*/
    height: auto;
    border-radius: 0;
}
.modal_close {
    position: absolute;
    right: 2em;
    top: 2em;
    width: 1em;
    cursor: pointer;
}
.modal_close:hover {
    transform: rotate(45deg);
}
.modal_close:active {
    transform: rotate(360deg);
}
.modal_title {
    text-align: center;
    font-size: 30px;
    max-width: 19em;
    line-height: 1.1;
    margin-left: auto;
    margin-right: auto;
    color: var(--main);
}
.modal_underTitle {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 1.1;
}
.modal_content__block p {
    margin: 0;
    margin-bottom: 0.2em;
    font-size: 18px;
    font-weight: 200;
}
.modal_content__block {
    width: 100%;
    max-width: 24em;
    margin-left: auto;
    margin-right: auto;
}
.modal_content__block + .modal_content__block {
    margin-top: 1em;
}
.modal_content__block input {
    background-color: var(--bg-grey-light);
    padding: 1em;
    border: 1px solid var(--grey);
    border-radius: 0.5em;
    width: 100%;
    font-size: 16px;
    padding: 0.7em 0.7em 0.7em 1.2em;
    line-height: 1;
    font-weight: 300;
}
.modal_content__block input:focus-visible {
    outline: none;
}
.modal_content__block input::placeholder {
    color: var(--text-light);
    font-weight: 300;
}
.modal_content__block button {
    background-color: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 0.2em;
    width: 100%;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
}
.modal_text {
    font-weight: 200;
    font-size: 12px;
    text-align: center;
}
.modal_logo {
    width: 14em;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 3em;
    margin-bottom: 1.5em;
}
.modal_content .btnTemplate {
    border: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 16px;
    padding: 0.8em 5.1em;
} 
.appearModal {
    animation-name: appearModal;
    animation-duration: 1s;
}
.disappearModal {
    animation-name: disappearModal;
    animation-duration: 1s;
}
@keyframes appearModal {
    0% {
        top: -1000px;
    }
    100% {
        top: 0;
    }
}
@keyframes disappearModal {
    0% {
        top: 0;
    }
    100% {
        top: -1000px;
    }
}
.appearModalBg {
    animation-name: appearModalBg;
    animation-duration: 1s;
}
.disappearModalBg {
    animation-name: disappearModalBg;
    animation-duration: 1s;
}
@keyframes appearModalBg {
    0% {
        background: var(--black-opacity-0);
    }
    100% {
        background: var(--black-opacity-9);
    }
}
@keyframes disappearModalBg {
    0% {
        background: var(--black-opacity-9);
    }
    100% {
        background: var(--black-opacity-0);
    }
}
.openModal {
    display: grid;
}
/*--------------------------------end modal--------------------------------*/


@media (max-width: 1600px) {
    .header_block {
        gap: 1em;
    }
}
@media (min-width: 1400px) {
    .bootsrapCenter {
        display: flex;
        justify-content: space-around;
    }
    .product-layout {
        max-width: 360px;
    }
}
@media (max-width: 1400px) {
    .section_catalog__content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .header_content {
        flex-wrap: wrap;
    }
    .header_block {
        width: 100%;
        justify-content: space-between;
    }
    .sampleSearch input {
        width: 22vw;
    }
}
@media (max-width: 1200px) {
    .product-grid .product-thumb .caption {
        min-height: 0;
    }
    .quickcheckout_cart {
        flex-direction: column;
        gap: 1em;
    }
    .quickcheckout-content {
        margin-bottom: 23px;
    }
    .quickcheckout_cart__products {
        width: 100%;
        max-width: 570px;
    }
    .quickcheckout_fields {
        width: 100%;
        max-width: 570px;
    }
    #shipping-method {
        width: 100%;
        max-width: 570px; 
    }
    #payment-method {
        width: 100%;
        max-width: 570px;  
    }
}
@media (max-width: 1050px) {
    .section_catalog__content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 900px) {
    .footer_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .havequestions_block h2 {
        font-size: 30px;
        line-height: 1;
    }
    .havequestions_block p {
        font-size: 16px;
    }
    .sampleBtn {
        padding: 9px 50px;
    }
    .sampleMenu_list {
        gap: 1em;
    }
    .sampleMenu_link {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .header_burger {
        display: block;
    }
    .header_menu, .header_phone, .header_search {
        display: none;
    }
    .header_content {
        flex-wrap: nowrap;
    }
    .header_block {
        width: auto;
        gap: 2em;
    }
    .header_burger img {
        position: relative;
        top: -4px;
        width: 25px;
    }
    .havequestions_content {
        flex-direction: column;
        padding-top: 3em;
        gap: 1em;
    }
    .havequestions_block .sampleBtn {
        margin-left: auto;
        margin-right: auto;
    }
    .footer_block {
        flex-wrap: wrap;
    }
    .sectionTitle {
        font-size: 32px;
    }
    .stocks_content {
        flex-wrap: wrap;
    }
    .section_catalog {
        padding-bottom: 0;
    }
    .havequestions {
        margin-bottom: 1em;
    }
    footer {
        padding: 3em 0;
    }
    .footer_block {
        gap: 1em;
        margin-top: 2em;
    }
    .hearch_cart #cart .dropdown-menu {
        width: 330px;
    }
    .minicart__titleblock {
        padding: 3.5em 0 3em 10px;
    }
    .minicart__close {
        right: 20px;
    }
    #cart .dropdown-menu .minicart__products .minicart__product {
        padding: 20px 0 20px 10px;
    }
    .minicart__totals {
        flex-direction: column;
        gap: 1em;
        align-items: start;
    }
    .product-thumb .button-group {
        display: grid;
    }
    .product-thumb .caption p {
        display: block;
    }
    .quickcheckout_cart__totals {
        width: 100%;
    }
    .quickcheckout_title {
        font-size: 30px;
    }
    .header_content {
        margin-right: 0;
    }
    .mobile_search {
        display: block;
    }
    #information-contact .buttons .pull-right {
        width: 100%;
    }
    #information-contact .buttons .pull-right .btn-primary {
        margin-top: 10px;
    }
    .categorySubcategories_list {
        gap: 5px 2px;
    }
    .categorySubcategories_link {
        padding: 4px;
    }
}
@media (max-width: 700px) {
    .section_catalog__content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .quickcheckout_cart__products {
        padding: 0 1em 1em;
    }
    .quickcheckout_cart__item {
        gap: 0.5em;
    }
}
@media (max-width: 450px) {
    .footer_grid {
        grid-template-columns: 1fr;
    }
    .categorySort {
        gap: 1em;
    }
    .quickcheckout_cart__name {
        width: auto;
    }
}
@media (max-width: 400px) {
    .categorySort {
        flex-direction: column;
        align-items: start;
        gap: 0.5em;
    }
    .quickcheckout_cart__name > a {
        font-size: 14px;
    }
    .quickcheckout_cart__item {
        gap: 0.7em;
    }
    #cart1 .quickcheckout_cart__quantity button {
        font-size: 10px;
    }
    .quickcheckout_cart__sum {
        font-size: 16px;
    }
    .checkout_terms {
        width: auto;
    }
    .quickcheckout_fields {
        padding: 1em;
    }
    #shipping-method, #payment-method {
        padding: 0 1em 1em;
    }
    .quickcheckout_cart__undertitle {
        font-size: 14px;
    }
    .quickcheckoutright label {
        font-size: 14px;
    }
    #account-login .well h2 {
        font-size: 27px;
    }
}
