@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background: white;
}

.loader_cont {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 800ms;
}
.loader_cont .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #dad9d8;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader_cont::after {
  content: "ArmNumiz.am";
  margin-top: 10px;
  color: red;
  font-weight: 500;
  font-family: system-ui;
  font-size: 17px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader_cont_opacity {
  opacity: 0;
}

.loader_cont_off {
  display: none;
}

.product_name h5 {
  min-height: 54px;
}

.show_basket_popup {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 1000000000000;
  display: flex;
  justify-content: center;
  transition: 500ms ease-in-out;
  opacity: 0;
  font-weight: 600;
}
.show_basket_popup div {
  font-size: 14px;
  text-align: center;
  background-color: #ffffff;
  padding: 6px 12px;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 0 20px -5px #000000;
}

.show_basket_popup--on {
  top: 0;
  opacity: 1;
}

.show_basket_popup--off {
  top: -50px;
  opacity: 0;
}

.title {
  text-transform: capitalize;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
}
.pagination div {
  background-color: #e74c3c;
  border-radius: 5px;
  padding: 5px;
  margin: 5px 3px;
  color: #f9f9f9;
  transition: 250ms;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.207);
  cursor: pointer;
}
.pagination div:hover {
  transform: translate(1px, -1px);
}
.pagination .active {
  background-color: #ff0000;
  box-shadow: 0 0 16px -3px #000000;
}

.menu_dropdown_mobile {
  display: none;
  position: relative;
  top: -50px;
  z-index: 810;
  width: 100%;
  background-color: rgb(255, 51, 0);
  padding-top: 45px;
  border-top: 1px solid #ff9200;
  margin-top: 7px;
  cursor: pointer;
}
.menu_dropdown_mobile .title {
  position: absolute;
  top: 10px;
  left: 20px;
  display: flex;
  color: white;
  align-items: center;
  font-size: 16px;
}
.menu_dropdown_mobile .title i {
  color: white;
}
.menu_dropdown_mobile .menu_dropdown_ul {
  overflow: hidden;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  box-shadow: 0 6px 15px -12px black;
  transition: opacity 0s;
  cursor: pointer;
}
.menu_dropdown_mobile .menu_dropdown_ul li {
  color: #555555;
  display: block;
  padding: 9px 18px;
  text-decoration: none;
  word-break: break-word;
  border-top: 1px solid #e2e1e2;
  margin: 0;
}
.menu_dropdown_mobile .menu_dropdown_ul li a {
  color: #555555;
}
.menu_dropdown_mobile .menu_dropdown_ul > li:first-child {
  border-top: none;
}
.menu_dropdown_mobile .menu_dropdown_ul--active {
  height: 240px;
  opacity: 1;
}

.container-fluid {
  margin-bottom: 25px;
}

#menubars_top {
  margin-top: 25px;
}

.side_menu_wrap a.title {
  background-color: rgb(255, 51, 0);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 51, 0) 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ff0000", GradientType=1);
}
.side_menu_wrap a.title:hover {
  color: #ffffff;
}

.auth_menu .menu .h_login img {
  width: 18px;
}
.auth_menu .menu .h_login:hover {
  color: white;
}

.popup_get_code {
  width: 100%;
  height: 100%;
  background-color: #e8f0fe;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.popup_get_code input {
  background-color: #e8f0fe;
  border: 1px solid #b2adad;
  padding: 4px;
  border-radius: 5px;
}
.popup_get_code p {
  font-weight: 400;
  font-size: 13px;
}

.side_news_publications_items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.side_news_publications_imges {
  width: 55px;
  margin-right: 5px;
}

.auth_menu_popup_login_reg {
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.831372549);
  padding-top: 70px;
}
.auth_menu_popup_login_reg .auth_menu_popup {
  position: relative;
  background-color: #e8f0fe;
  padding: 10px 30px;
  border-radius: 8px;
  box-shadow: -3px -3px 13px rgb(110, 110, 110);
  margin: 30px 0;
  width: 550px;
}
.auth_menu_popup_login_reg .auth_menu_popup h2 {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
.auth_menu_popup_login_reg .auth_menu_popup form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth_menu_popup_login_reg .auth_menu_popup form label {
  color: #000000;
  text-transform: capitalize;
}
.auth_menu_popup_login_reg .auth_menu_popup form input {
  border: none;
  outline: none;
  margin-right: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid black;
  color: black;
  background-color: #e8f0fe;
}
.auth_menu_popup_login_reg .auth_menu_popup form input:focus {
  background: #e8f0fe;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--flexCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--flexCont div {
  margin: 5px;
}
.auth_menu_popup_login_reg .auth_menu_popup .inp_wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-transform: capitalize;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btn {
  margin: 20px 0;
  border-radius: 3px;
  background-color: #66aa01;
  color: white;
  font-weight: bold;
  border: none;
  outline: none;
  transition: 250ms;
  padding: 8px;
  text-transform: capitalize;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btn:hover {
  background-color: #77c700;
  box-shadow: 0 0 10px 0 #77c700;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btn:active {
  background-color: #66aa01;
  box-shadow: 0 0 0 0 #77c700;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--colse {
  position: absolute;
  top: 17px;
  right: 17px;
  transition: 250ms;
  cursor: pointer;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--colse img {
  width: 25px;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--colse:hover {
  transform: scale(1.1);
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--colse:active {
  transition: 0;
  transform: scale(1);
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btnRegistracion,
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btnLogin {
  text-transform: capitalize;
  padding: 5px;
  margin-bottom: 0;
  cursor: pointer;
}
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btnRegistracion:hover,
.auth_menu_popup_login_reg .auth_menu_popup .auth_menu_popup--btnLogin:hover {
  text-decoration: underline;
}
.auth_menu_popup_login_reg .auth_menu_popup .forgot_password {
  text-transform: capitalize;
  padding: 5px;
  cursor: pointer;
}
.auth_menu_popup_login_reg .auth_menu_popup .forgot_password:hover {
  text-decoration: underline;
}

.auth_menu_popup--login {
  display: none;
}

.auth_menu_popup--registration {
  display: none;
}

.auth_menu_popup--reset_pass {
  display: none;
}

#reset_pass_cont {
  flex-direction: row;
  justify-content: flex-start;
}

#homeslider_photos {
  border-radius: 4px;
}

.login_profile {
  display: none !important;
}

.login_profile_show {
  display: block !important;
}

.user_first_name {
  text-transform: capitalize;
}

.menu_collapsible li > a {
  color: black;
}

.menu_collapsible li > a:hover {
  color: rgb(255, 51, 0) !important;
}

#topnav .auth_menu .menu > li {
  border-left: 1px solid #e2e1e2;
}

.footer_row {
  text-align: center !important;
}

.footer2 .col {
  padding: 0;
}

#footer_in {
  padding-bottom: 10px;
}

#topnav {
  background: rgb(255, 51, 0);
  background-color: rgb(255, 51, 0);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 51, 0) 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ff0000", GradientType=1);
}

.side_block > .title {
  color: rgb(255, 51, 0);
}

#topnav .fa {
  color: #ffffff;
}

#topnav .menu > li > a {
  color: #ffffff;
}
#topnav .menu > li > a:hover {
  color: white !important;
  text-shadow: 0 0 1px white;
}

.swiper-slide-wrap {
  height: 250px;
}

.h_menu2.menu_dark .menu_header {
  background-color: rgb(255, 51, 0);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 51, 0) 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ff0000", GradientType=1);
}

.menu > li:hover a {
  color: #000000 !important;
}

.h_search {
  margin-right: 15px;
}

.search > .btn-primary {
  background-color: transparent !important;
}
.search > .btn-primary:hover {
  background-color: transparent !important;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn-primary {
  background-color: #71bb00 !important;
}

.btn-primary {
  border-radius: 5px;
  top: 3px !important;
  right: 2px !important;
}
.btn-primary:hover {
  background: #8ae208 !important;
}

.topnav-in {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.h_menu2.menu_dark {
  background-color: rgb(255, 51, 0);
}

#topnav .site_menu {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 15px;
}
#topnav .site_menu img {
  width: 250px;
}

#top_menu li div a {
  transition: 250ms;
}
#top_menu li:hover div a {
  color: white !important;
  text-shadow: 0 1px 3px;
}

.flexdiscount-product-wrap > .in {
  box-shadow: 0 0 11px 0 #e2e2e2;
  transition: 250ms;
}
.flexdiscount-product-wrap > .in:hover {
  box-shadow: 0 0 11px 0 #b6b6b6;
}

.h_menu2 .menu_wrapper .menu > li > a {
  border-left: 1px solid rgb(255, 255, 255);
}

.social_media_icons img {
  width: 35px;
  cursor: pointer;
  transition: 250ms;
}
.social_media_icons img:hover {
  transform: scale(1.1);
}
.social_media_icons a {
  text-decoration: none;
}

.logo3 {
  width: 100%;
  margin-bottom: 20px;
}

.footer1 {
  display: flex;
  justify-content: space-between;
}

#said_menu ul {
  list-style-type: none;
  padding-left: 0;
}
#said_menu li {
  transition: 250ms;
  cursor: pointer;
}
#said_menu .title {
  cursor: pointer;
  color: #000000;
  background-color: #ffffff;
}
#said_menu .submenu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease-out;
}

#f_up {
  color: rgb(255, 51, 0) !important;
  background-color: transparent;
}

.sliderTopText {
  margin: 0;
  font-size: 20px;
  text-shadow: 0px 0px 15px black;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  text-align: left;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2588235294);
  width: 100%;
}
.sliderTopText p {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
}

#side_block_collapsible_1 {
  display: block !important;
  cursor: pointer;
  box-shadow: 0 6px 15px -12px black;
}

.footer2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_slider {
  position: relative;
  z-index: 10;
}
.content_slider .url_change {
  text-transform: capitalize;
}
.content_slider .content_slider_category_name {
  text-transform: capitalize;
}

.p_buttons {
  background-image: url(../images/heart.svg);
  background-repeat: no-repeat;
  padding: 7px;
  background-size: contain;
  filter: grayscale(1);
  cursor: pointer;
  opacity: 0.6;
  transition: 150ms;
}
.p_buttons:hover {
  opacity: 1;
  filter: grayscale(0);
}

.bookmark_selected {
  opacity: 1;
  filter: grayscale(0);
}

.maincontent {
  margin-top: 20px;
}

.reset_pass_popup {
  position: relative;
  display: none;
}
.reset_pass_popup .auth_menu_popup .new_passord_popup_close {
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.reset_pass_popup .auth_menu_popup .inp_wrapper input {
  border: none;
  outline: none;
  margin-right: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid black;
  color: black;
  background-color: #e8f0fe;
}
.reset_pass_popup .auth_menu_popup .btn_ok {
  border-radius: 3px;
  background-color: #66aa01;
  color: white;
  font-weight: bold;
  border: none;
  outline: none;
  transition: 250ms;
  padding: 8px;
  text-transform: capitalize;
  margin: 30px auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  cursor: pointer;
}
.reset_pass_popup .new_passord_popup_close {
  position: absolute;
  top: 17px;
  right: 17px;
  transition: 250ms;
  cursor: pointer;
}
.reset_pass_popup .new_passord_popup_close img {
  width: 25px;
}
.reset_pass_popup .new_passord_popup_close:hover {
  transform: scale(1.1);
}
.reset_pass_popup .new_passord_popup_close:active {
  transition: 0;
  transform: scale(1);
}

.send_code_agen {
  display: none;
}

.send_code_agen--active {
  display: flex;
}

.reset_pass_popup--active {
  display: flex;
  position: fixed;
  z-index: 10000000;
}

.reset_send_code--active {
  display: flex !important;
}

.dropdown {
  overflow: hidden;
  transition: 300ms;
}

@media all and (max-width: 860px) {
  #topnav {
    height: 150px;
  }
  .menu_dropdown_mobile {
    display: block;
  }
  .topnav-in {
    justify-content: center;
  }
  #top_menu_mobile_stiles {
    position: absolute;
    top: 60px;
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  #topnav .auth_menu .menu > li {
    border-left: 0;
    color: white;
  }
  #topnav .menu > li > a {
    padding: 0 6px;
    height: 30px;
    line-height: 30px;
  }
  #topnav .h_search {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
  .auth_menu {
    margin-right: 10px;
  }
  #side_block_collapsible_1 {
    position: absolute;
    top: 154px;
    left: 0;
    z-index: 800;
    background-color: #ffffff;
    width: 100%;
    right: 0;
    border: none;
  }
  #pull__left {
    position: static !important;
  }
  #side_block_collapsible_1 {
    display: none;
  }
  .menu_collapsible {
    display: none;
  }
  .logo3 {
    display: none;
  }
  .footer1 .col {
    display: flex;
    flex-direction: column;
  }
  #menubars_top {
    margin-top: 5px;
  }
}
@media screen and (max-width: 580px) {
  .auth_menu_popup {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .auth_menu_popup--flexCont {
    flex-direction: column;
  }
  .auth_menu_popup_login_reg .auth_menu_popup {
    width: auto;
  }
  .auth_menu_popup--registration .auth_menu_popup {
    width: auto;
    margin-top: 350px;
  }
  .auth_menu_popup_login_reg {
    overflow: scroll;
    /* Включаем прокрутку */
    scrollbar-width: none;
    /* Для Firefox */
    -ms-overflow-style: none;
    /* Для Internet Explorer */
  }
  .auth_menu_popup_login_reg::-webkit-scrollbar {
    display: none;
    /* Для Chrome, Safari и Edge */
  }
  .swiper-button-next,
  .swiper-button-prev {
    transform: scale(0.7);
  }
  #footer_in .f_contacts {
    padding: 0;
  }
  .bottom_text {
    padding: 10px !important;
  }
}
@media all and (max-width: 350px) {
  .footer1 .col {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
.page-btn.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}