*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   font-family: "Exo 2", sans-serif;
 
    /*font-family: "Open Sans", sans-serif;*/
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  }


:root{
  --body-color: #E4E9F7;
  --footer-color: #0077b5;
  --nav-color:#f8f9fa;
  --side-nav: #fff;
  --text-color: #FFF;
  --search-bar: #F2F2F2;
  --search-text: #010718;

  --primary-nav-color: #f8f9fa;
  --box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
  --link-color:black;

  --product-color:black;

}

.product-info-active{
  --product-color:white;
  background-color: #254d71;
  height: 350px;
  overflow: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

::-webkit-scrollbar-thumb {
  background: grey;
} 


body{
  height: 100vh;
  background-color: var(--body-color);
}



.main-container{
    width: 100%;
    display: block;
}


/* navbar */


body.dark{
  --body-color: #18191A;
  --nav-color: #242526;
  --side-nav: #242526;
  --text-color: #CCC;
  --search-bar: #242526;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background-color: var(--nav-color);
  z-index: 100;
}

body.dark nav{
  border: 1px solid #393838;

}

nav .nav-bar{
  position: relative;
  height: 100%;
  max-width: 1600px;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .nav-bar img{
  display: block;
height: 70px;
}
nav .nav-bar .sidebarOpen{
  color: black;
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
  display: none;
}

nav .nav-bar .logo a{
  font-size: 25px;
  font-weight: 500;
  color: var(--link-color);
  text-decoration: none;
}

.menu .logo-toggle{
  display: none;
}

.nav-bar .nav-links{
  display: flex;
  align-items: center;
}

.nav-bar .nav-links li{
  margin: 0 5px;
  list-style: none;
}

.nav-links li a{
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: var(--link-color);
  text-decoration: none;
  padding: 10px;
}

.nav-links li a::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links li:hover a::before{
  opacity: 1;
}

/* search */

.nav-bar .darkLight-searchBox{
  display: flex;
  align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.dark-light i,
.searchToggle i{
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* search */

.dark-light i.sun{
  opacity: 0;
  pointer-events: none;
}

.dark-light.active i.sun{
  opacity: 1;
  pointer-events: auto;
}

.dark-light.active i.moon{
  opacity: 0;
  pointer-events: none;
}

.searchToggle i.cancel{
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active i.cancel{
  opacity: 1;
  pointer-events: auto;
}

.searchToggle.active i.search{
  opacity: 0;
  pointer-events: none;
}

.searchBox{
  position: relative;
}

.searchBox .search-field{
  position: absolute;
  bottom: -85px;
  right: 5px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.searchToggle.active ~ .search-field{
  bottom: -74px;
  opacity: 1;
  pointer-events: auto;
}

.search-field::before{
  content: '';
  position: absolute;
  right: 14px;
  top: -4px;
  height: 12px;
  width: 12px;
  background-color: var(--nav-color);
  transform: rotate(-45deg);
  z-index: -1;
}

.search-field input{
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--search-text);
  background-color: var(--search-bar);
}

body.dark .search-field input{
  color: var(--text-color);
}

.search-field i{
  position: absolute;
  color: var(--nav-color);
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

body.dark .search-field i{
  color: var(--text-color);
}

@media (max-width: 790px) {
  nav .nav-bar .sidebarOpen{
      display: block;
  }

  .menu{
      position: fixed;
      height: 100%;
      width: 250px;
      left: -100%;
      top: 0;
      padding: 20px;
      background-color: var(--side-nav);
      z-index: 100;
      transition: all 0.4s ease;
      box-shadow: var(--box-shadow);
    }

  nav.active .menu{
      right:  0;
      left: inherit;
  }

  nav.active .nav-bar .navLogo a{
      opacity: 0;
      transition: all 0.3s ease;
  }

  .menu .logo-toggle{
      display: block;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .logo-toggle .siderbarClose{
      color: black;
      font-size: 24px;
      cursor: pointer;
  }

  .nav-bar .nav-links{
      flex-direction: column;
      padding-top: 30px;
  }

  .nav-links li a{
      display: block;
      margin-top: 20px;
  }
}



/* footer */
footer{
  z-index: 1;
  position: relative;
  /* background: #140B5C; */
  background-color: var(--footer-color);
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 15px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
      visibility: hidden;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
      visibility: hidden;
}


.top .media-icons a:nth-child(4){
  background: #FF0000;
}
.top .media-icons a:nth-child(4):hover{
  color: #FF0000;
  background: #fff;
}

.top .media-icons a:nth-child(5){
  background: #222222;
}
.top .media-icons a:nth-child(5):hover{
  color: #064385;
  background: #fff;
}


footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
footer .bottom-details{
  width: 100%;
  background: #0F0844;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
.phone{
  display: none;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }

  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }

  .product{
    top: 15px !important;
  }
.heading-first{
  display: none;
}
  .phone{
    display: block;
  }
}

@media (max-width: 700px){

  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
    footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}
/* main page content */
.content-page{
  padding-left: 325px;
  padding-right: 2%;
  padding-top: 24px;
  background: var(--body-color);
  min-height: 1200px;
}

.content-page-sec{
  /* background: rgb(248, 249, 250); */
  padding: 0 10px;
}
section{
  line-height: 25px;
  padding: 30px 0;
}
.heading-first{
  padding: 18px;
}


.phone h1{
  margin: 2.7em 0;
  margin-bottom: 0;
  font-size: 1.2rem;
}

h1{
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.2rem;
  margin: 0.7em 0;
  color: #222e3a;
  margin-bottom: 0px;
  letter-spacing: -.01562em;
}
.low-rate{
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 900;
}
.card-first{
  box-shadow: var(--box-shadow);
  border-radius: 4px;
  vertical-align: top;
  background: #fff;
  position: relative;
  padding: 16px;
}
.card-title{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding: 10px;
}
.card-h2{
  font-weight: 700;
  font-size: 1rem;
    line-height: 1.75rem;
    letter-spacing: .00937em;
    color: #222e3a;
}
.paragraph-section{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
      border-left: 0;
    border-right: 0;
    box-shadow: none;
    border-bottom: 0;
    position: relative;
}

.paragraph-section > p,.abc li{
          font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.paragraph-section ul{
  padding-left: 18px;
  list-style: decimal;
}
.bold{
  font-weight: bold;
  display: inline;
}
p{
  margin: 0 0 16px;
}
.abc li{
  list-style: none;
  margin-bottom: 14px;

}
/* widget container */
.widget-design{
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgb(37 39 86 / 15%);
  box-shadow: 0 4px 15px rgb(37 39 86 / 15%);
  border-radius: 30px;
  font-size: 1.8rem;
  margin-bottom: 50px;
  position: relative;
}
.helper{
  position: absolute;
  left: 36%;
  top: 15px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}
.helper-clicker{
  color: red;
  background-color: #0187ff;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: block;
}
.widget-cont{
  display: flex;
  position: relative;
}
.col-coun{
  flex: 0 1 36%;
  max-width: 36%;
  background-color: #f1f7fe;
  border-radius: 30px 0 0 30px;
  -webkit-box-flex: 0;
  padding: 15px 35px;
}
.col-top{
  margin-bottom: 0.5em;
}
.widget__title{
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 800;
}
.form-search{
  margin-bottom: 0.5em;
    color: #aec3f9;
    display: inline-block;
    max-width: 100%;
    position: relative;
}

.search__field{
  padding: 0.5em 1em 0.5em 3em;
    font-style: italic;
    font-weight: 500;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--color-border_light);
    -webkit-transition: all .23s ease;
    -o-transition: all .23s ease;
    transition: all .23s ease;
    max-width: 100%;
}

.search .btn_search {
  position: absolute;
  height: 100%;
  left: 0;
  padding: 0 0.5em 0 0.3em;
  font-size: 2rem;
  min-height: 1px;
}

.widget .btn {
  font-weight: 500;
}
.btn_search {
  padding: 0;
  min-width: 1px;
}
.btn, .btn:not(.btn_search), .simple-reg__socials .social-btns .social-btn {
  position: relative;
  overflow: hidden;
}
.btn {
  padding: 0.5em 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  font-size: inherit;
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  min-height: 2.11111em;
  min-width: 7.77778em;
  letter-spacing: .02em;
  border-radius: 20px;
  border: 1px solid transparent;
  -webkit-transition: .33s cubic-bezier(.23,1,.32,1);
  -o-transition: .33s cubic-bezier(.23,1,.32,1);
  transition: .33s cubic-bezier(.23,1,.32,1);
}
.btn, .js-copy .js-copyBtnLink, .privacy__back, .rw-time__panel button, .widget__helper .switcher, .widget_favorite .favorite-btn {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: 0 0;
  padding: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}
a, button {
  cursor: pointer;
}
button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button, select {
  text-transform: none;
}
button {
  overflow: visible;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
.margin{
  margin-top: 2em;
}


/* ser */

.product-container {
  padding: 0 28px;
  margin-top:1em;
}
.inputt {
  float: none !important;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  color: #333333;
  font-size: 13px;
  padding: 12px;
  padding-right: 48px !important;
}

.inputt {
  float: left;
  width: 100%;
  font-size: 14px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  outline: none;
  font-family: "Exo 2", "Roboto", sans-serif;
}
.newAside input {
  margin-bottom: 0;
}
.product{
  box-shadow: var(--box-shadow);
  position: absolute;
  top: 100px;
  left: 0;
  padding: 5px;
  width: 330px;
  background: #fff;
}
.product-data-wrap{
  height: 876px;
  overflow-x: auto;
}
.search-bar::before{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: block;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='15' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 5.75a5.752 5.752 0 0 0 5.75 5.749 5.752 5.752 0 0 0 5.75-5.75A5.752 5.752 0 0 0 5.75 0 5.752 5.752 0 0 0 0 5.75Zm5.75 3.905a3.908 3.908 0 0 1-3.906-3.906A3.908 3.908 0 0 1 5.75 1.844a3.908 3.908 0 0 1 3.905 3.905A3.908 3.908 0 0 1 5.75 9.655Z' fill='%23EA5400'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.697 14.73a.922.922 0 0 0 0-1.304l-4.634-4.633a.922.922 0 0 0-1.304 1.304l4.634 4.633c.36.36.944.36 1.304 0ZM3.373 5.917a.291.291 0 0 0 .296-.287c.01-.674.199-1.128.508-1.429.314-.305.792-.491 1.455-.544a.291.291 0 0 0-.046-.581c-.741.059-1.37.274-1.815.707-.45.437-.674 1.057-.685 1.838a.291.291 0 0 0 .287.296Z' fill='%23EA5400'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.search-bar{
  position: relative;
}

.product-data{
  margin-bottom: 48px;
}

.prodcut-data-container {
  padding: 0 28px;
}
.prodcut-data-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  margin-top: 10px;
}
.product-info:not(:last-child) {
  border-bottom: 1px solid #E1E6EE;
}

.product-info:first-child {
  border-top: 1px solid #E1E6EE;
}
.product-info-button {
  align-items: center;
  justify-content: space-between;
  background-color: inherit;
  border: none;
  text-align: left;
  width: 100%;
  padding: 8px 28px;
  cursor: pointer;
  color: #4c4c4c;
  min-height: 72px;
  column-gap: 6px;
}
.product-info-button, .product-info-left-side {
  display: flex;
  align-items: center;
}
.product-info-left-picture {
  width: 36px;
  margin-right: 8px;
  flex-shrink: 0;
}
.product-info-left-picture img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
}
.product-info-name {
  color: var(--product-color);
  max-width: 165px;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-info-quantity {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--product-color);
}
.product-info-price {
  font-size: 14px;
  line-height: 17px;
  flex-shrink: 0;
  color: var(--product-color);
}
.product-info-price .text {
  font-weight: 400;
}
.product-info-price .price {
  font-weight: 600;
}
.choice-service__more {
  margin-top: 16px;
  padding: 0 28px;
}
.primary-second-btn.sm {
  font-size: 13px;
  line-height: 16px;
  padding: 8px 12px;
}









.primary-second-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 12px 24px;
  border-radius: 5px;
  background: #254d71;
  color: #fff;
  cursor: pointer;
}
.more {
  width: 100%;
  padding: 12px 0;
  text-align: center;
}
/* drop */
.product-body-sorting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 16px;
  margin-top: 16px;
}
.product-body-sorting-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.product-body-sorting-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #fff;
  display: flex;
  align-items: center;
}
.product-body-sorting-button span:not(:last-child) {
  margin-right: 4px;
}

.product-body-sorting-button span {
  display: flex;
  transition: all 0.3s;
  display: flex;
  transition: all 0.3s;
}
.product-body-sorting-button  {
  margin-bottom: -3px;
}
svg:not(:root) {
  overflow: hidden;
}

.page-wrapper * {
  scroll-margin: 135px;
}
img, svg, input {
  max-width: 100%;
  outline: none;
  max-height: 100%;
}
ul[class], ol[class] {
  list-style: none;
}

.product-body-sorting-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0px 4px 34px rgb(48 71 91 / 20%);
  border-radius: 3px;
  z-index: 2;
}
.product-body-sorting-list-item {
  cursor: pointer;
  font-size: 14px;
  line-height: 120%;
  color: #333;
  padding: 4px 0;
}
.product-loader {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-loading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border-left: 4px solid #ff3d00;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}


.product-loading {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #ffffff;
  border-right: 4px solid transparent;
  animation: rotation 1s linear infinite;
}


.product-body-country-item {
  padding: 12px 22px;
}

.product-body-country-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-body-country-wrapper {
  display: flex;
  align-items: flex-start;
}

.product-body-country-image {
  position: relative;
  width: 36px;
  margin-right: 8px;
  flex-shrink: 0;
}


.product-body-country-img {
  width: 100%;
  object-fit: contain;
}

.product-body-country-name {
  max-width: 110px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.product-body-country-quantity {
  font-size: 12px;
  line-height: 120%;
  color: #fff;
}

.product-body-country-heart {

  width: unset;
  padding: 0;
  background-color: inherit;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.product-body-country-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product-body-country-increament {
  visibility: hidden;
  display: flex;
  align-items: center;
  border-radius: 8px;
  line-height: 1;
  width: 94px;
  padding: 4px;
  justify-content: space-between;
  border: 1px solid #f5f4f4;
}
.product-body-country-increament-button {
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f5f4f4;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  color: #444444;
  display: flex;
  align-items: center;
  border-radius: 8px;
  line-height: 1;
}
/* in */
.product-body-country-increament-number {
  max-width: 28px;
  padding: 0;
  text-align: center;
  border: none;
  border-radius: 0;
  font-size: 13px;
  line-height: 140%;
  background-color: inherit;
  color: #fff;
}
.product-body-country-increament-number::-webkit-outer-spin-button,.product-body-country-increament-number::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.product-body-country-increament-number{
  -moz-appearance: textfield;
}


.product-body-country-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-body-control-buy-number {
  text-align: right;
  margin-right: 12px;
}
.product-body-country-buy-price {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}
.product-body-country-basket-button {
  padding: 10px 14px;
  background: #7AD848;
  border-radius: 8px;
  line-height: 1;
  cursor: pointer;
}

.product-body-country-choice-button {
  position: relative;
  font-size: 13px;
  width: 100%;
  text-align: left;
  background-color: inherit;
  border: none;
  padding: 4px 0;
  padding-right: 15px;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s ease-out;
}
.product-body-country-choice-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}
.product-body-country-drop {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-body-country-title {
  font-size: 12px;
  line-height: 17px;
  color: #fff;
}
.product-body-country-list {
  max-height: 303px;
  padding-right: 12px;
  overflow-y: auto;
}
.product-body-country-item:not(:last-child) {
  border-bottom: 1px solid hsla(0, 0%, 77%, 0.3);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.product-body-country-item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.product-body-country-item-price {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #fff;
}
.product-body-country-item-price-control {
  display: flex;
  align-items: center;
}
.product-body-country-item-price-quantity {
  font-size: 12px;
  line-height: 14px;
  color: #979797;
  margin-right: 8px;
}
                .product-body-wrap {
                    padding: 0 28px;
                }
                button {
                  background-color: inherit;
                  border: none;
                  color: inherit;
                  cursor: pointer;
                  outline: none;
              }
/* ser */
@media (max-width:990px){
.product{
  position: relative;
  width: 100%;
  height: 600px;
}
.content-page{
  padding-left: inherit;
}

.choice-service__wrapper{
  overflow: auto;
  height: 410px;
}
.content-page{
  height: auto;
}
.product-data-wrap{
  height: 420px;
}
}



#overlay{
      position: fixed;
    opacity: 0.4;
    top: 0;
    bottom: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 891;
    background: #fff;
    user-select: none;
}



@keyframes rotation {
  0%{
      transform:rotate(0deg);
  }
  100%{
      transform:rotate(360deg);
  }

}