/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("/font/stylesheet.css");

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #4B1900;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #4B1900;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #4B1900;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #4B1900;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #4B1900;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #4B1900;
}

textarea {
  resize: none;
}

input[type="file"] {
  display: none;
}

.flex_column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex_row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.f_around {
  justify-content: space-around;
}

.f_center {
  justify-content: center;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #4b1900;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

::-webkit-scrollbar-thumb:active {
  background: #000000;
}

::-webkit-scrollbar-track {
  background: #ffdb7c;
  border: 1px solid #4b1900;
  border-radius: 60px;
}

::-webkit-scrollbar-track:hover {
  background: #ffdb7c;
}

::-webkit-scrollbar-track:active {
  background: #ffdb7c;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



body {

  /* background-image: url('/img/sv_main_desktop2x_min.png?v=2'); */
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #000C39;



}

#root_d,
#root_m {
  display: flex;
  flex-direction: column;

}

#root_m {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#nav {
  margin-top: 28px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1;
}

.nav_link {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 14px;
  line-height: 18px;
  color: #FFF7AE;
}

.nav_link:hover {
  color: #4F66CD;
  cursor: pointer;
}

#sec_first {
  /* height:100vh; */
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 675px;
  min-width: 1000px;
  position: relative;

}

#sec1_m_kv_bg {

  background-image: url('/img/sec_1_mob_kv_360x337.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 360px;
  height: 337px;

}

#sec1_left {
  background-image: url('/img/sec1_left_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 59%;
}

#sec1_right {
  width: 41%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 54px;
  justify-content: center;

}

#sec1_right_stars {
  z-index: 0;
  position: absolute;
  bottom: 44px;
  right: 0px;
  background-image: url('/img/sec1_right_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 299px;
  height: 205px;
  background-position-x: right;
  background-position-y: bottom;
  mix-blend-mode: lighten;
}

#sec1_right_sv_logo {
  background-image: url('/img/sec1_right_sv_logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 131px;
  height: 84px;
}

.txt_big_s1 {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 51px;
  color: #FFF7AE;
  padding-top: 10px;

}

.txt_small_s1 {
  color: #FFF7AE;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 21px;
}



#sec1_right_present {
  background-image: url('/img/sec1_right_present.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 55px;
  height: 61px;
}

#sec1_right_text_container {
  display: flex;
  flex-direction: row;
}



.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 78.75px;
  background: linear-gradient(90deg, #FFDB7C 0%, #F8EBAF 50%, #FFDB7C 100%);
  border-radius: 10.9375px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 35px;
  line-height: 45px;
  color: #4B1900;
  cursor: pointer;
}

.sec2_txt_s {
  font-size: 16px;
  font-weight: 100;
  text-transform: none !important;
}

#sec_second {
  margin-top: 36px;
}

#sec_third_m{
  margin-top: 110px;
}


#sec_second_m {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section_header {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF7AE;
}


#mech_container {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}


#mech_container_m {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 40px;
}


.mech_container_element {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mech_txt {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase !important;
  color: #FFF7AE;
  display: flex;
}

.self_start {
  align-self: flex-start;
}


.mech_n {
  background-image: url('/img/s2_mech_circle_30x30.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  color: #4B1900;
  margin-right: 18px;

}

#mech1 {
  background-image: url('/img/s2_mech1_154x124.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 154px;
  height: 124px;
  margin-bottom: 10px;
}

#mech2 {
  background-image: url('/img/s2_mech2_140x100.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 140px;
  height: 100px;
  margin-bottom: 20px;
  margin-top: 14px;
}

#mech3 {
  background-image: url('/img/s2_mech3_149x100.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 149px;
  height: 100px;
  margin-bottom: 10px;
  margin-top: 23px;
}

#sec_fourth {
  margin-top: 100px;
}

#prod_container {
  display: flex;
  justify-content: space-around;
  margin-top: 160px;
}

#prod_container_m {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 45px;
}


.prod_container_element {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod_txt {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #FFF7AE;
}

#prod1 {
  background-image: url('/img/s4_p1_221x221.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 221px;
  height: 221px;
  margin-bottom: 38px;
}

#prod2 {
  background-image: url('/img/s4_p2_221x221.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 221px;
  height: 221px;
  margin-bottom: 38px;
}

#prod3 {
  background-image: url('/img/s4_p3_221x221.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 221px;
  height: 221px;
  margin-bottom: 38px;
}

.sec_fourth_txt_footer {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #FFF7AE;
  margin-top: 122px;
}

#sec_feedback,
#sec_feedback_m {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#feedback_form {
  position: relative;
  width: 350px;
  height: 410px;
  background: linear-gradient(90deg, #FFDB7C 0%, #F8EBAF 50%, #FFDB7C 100%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.input_g {
  width: 220px;
  height: 25px;
  left: 0px;
  top: 0px;
  background: #FFFFFF;
  border-radius: 5px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 12px;
  line-height: 15px;
  color: #4B1900;
  background: #FFFFFF;
  border: 3px solid #ffffff;
  box-sizing: border-box;
  padding-left: 15.6px;
  padding-top: 1.1px;
  margin-bottom: 11px;
}

.input_g:focus {
  border: 3px solid #ffffff;
}

.input_g:required:valid {
  border: 3px solid #ffffff;
}

.input_g_inactive {
  border: 3px solid #ffffff;
}

.input_g_error {
  border: 3px solid #F11919;
}

.input_g_error:required:valid {
  border: 3px solid #F11919;
}

.f_textarea {
  width: 220px;
  height: 115px;
}


.btn_brown {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 36px;
  background: #4B1900;
  border-radius: 5px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 21px;
  color: #FFF7AE;
  cursor: pointer;
}

.form_header {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  color: #4B1900;
}


#fb {
  background-image: url('/img/ico_fb_35x35.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  margin-bottom: 33px;
  cursor: pointer;
}

.footer_txt {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 10px;
  line-height: 13px;
  color: #FFF7AE;
  max-width: 80%;
  margin-bottom: 50px;
  ;
}

#sec_footer_m {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec_footer {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.popup_overlay {
  background: #000000;
  opacity: 0.75;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 100%;

}

.popup_container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000;
  width: 75%;
  max-height: 641px;
  bottom: 0;
  height: fit-content;
  min-height: 400px;
  max-width: 350px;

}

.popup_close_u,
.popup_close {

  background-image: url('/img/close_cross.png');
  width: 10px;
  height: 10px;
  background-size: 100% 100%;
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 1;
  cursor: pointer;
}


.popup_bg {
  position: relative;
  background: linear-gradient(90deg, #FFDB7C 0%, #F8EBAF 50%, #FFDB7C 100%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ag_txt {
  font-family: 'Futura PT';
  font-style: normal;
  font-size: 10px;
  line-height: 13px;
  position: absolute;
}

#np_form_error,
#cab_upload_error,
#reg_form_error,
#reset_form_error,
#login_form_error {
  background: #FFCCCC;
  border-radius: 5px;
  /* display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; */
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 12px;
  line-height: 15px;
  text-align: center;

  color: #BC0000;
  margin-bottom: 11px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 289px;

  display: none;
}

.agree_error {
  border: solid 3px red;
  padding-bottom: 8px;
}

.fname_txt {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 12px;
  line-height: 15px;
  text-align: center;

  color: #302b2b;
  max-width: 220px;
  ;
}

#message_popup_text {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 19px;
  line-height: 15px;
  text-align: center;
  padding-bottom: 25px;
  color: #4B1900;
  ;
  max-width: 220px;
  ;
}



.txt_form_small {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 10px;
  line-height: 111.5%;
  color: #4B1900;
}

#message_c{
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  color: #4B1900;
}

.lnk {
  cursor: pointer;
}


#mob_menu_content_container {
  position: absolute;
  /* top:37px; */
  top: 0px;
  width: 100vw;
  /* height:calc(100vh - 37px); */
  height: calc(100vh);
  left: 0;
  right: 0;
  background-color: #000C39;
  z-index: 50;
  -webkit-box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
  -moz-box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
  box-shadow: 0px -5px 5px -5px rgba(34, 60, 80, 0.6);
  padding-top: 15px;
  padding-bottom: 15px;
 


}

#mob_menu {
  justify-content: flex-end;
  padding-right: 0px;
  width: 100%;
  z-index: 1000;


}


#mob_menu_container {
  height: 38px;
  width: 122px;
  background-color: #000C39;
  cursor: pointer;
  margin-bottom: -38px;
  z-index: 3;
}

#d_brgr {
  background-image: url('/img/menu_mob_30x18.png');
  width: 31px;
  height: 15px;
  background-size: 100% 100%;
  right: 30px;
  top: 30px;
  position: absolute;

}

#cab_kv_bottom_m{
  background-image: url('/img/kv_cab_mob_bottom581x367.png');
  width: 360px;
  height: 335px;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
}

#cab_kv_desktop_bottom{
  background-image: url(/img/kv_cab_desk_bottom_bg.png);
  width: 1366px;
  height: 700px;
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
}

#cab_kv_desktop_top{
  background-image: url(/img/kv_cab_desk_top_bg.png);
  width: 1366px;
  height: 500px;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: lighten;
}


#cab_kv_top_m{
  background-image: url('/img/kv_cab_mob_top.png');
  width: 344px;
  height: 208px;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: lighten;
  margin-left: 5px;
}

#menu_close {
  background-image: url('/img/menu_close_21.21x21.21.png');
  width: 21.21px;
  height: 21.21px;
  background-size: 100% 100%;
  right: 30px;
  top: 30px;
  position: absolute;

}

.nav_link_m {
  margin-bottom: 38px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 20px;
  line-height: 26px;
  color: #FFF7AE;
}



#more_lnk{
  font-family: 'Futura PT';
    font-style: normal;
    font-weight: 450;
    font-size: 13px;
    line-height: 200.2%;
    color: #4B1900;
    white-space: nowrap;
    text-decoration: underline;
    cursor: pointer;
}


#ico_search {
  background-image: url('/img/ico_search_13x13.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 6px;
  top: 6px;
  cursor: pointer;
}



.w_row_name_d,
.w_row_phone_d {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 200.2%;
  color: #4B1900;
  white-space: nowrap;
}

.w_row_name_d {
  min-width: 150px;
  margin-right: 30px;
}

.w_row_d {
  margin-right: 25px;
  margin-left: 25px;
  margin-top: 2px;
}

.w_content_d {
  max-height: 250px;
  overflow: auto;
  margin-bottom: 30px;
}


#cab_d,#cab_m {
  display: none;

}

#cab_m{
  
  height: calc( 100vh - 38px );
  width: 100vw;
  position: relative;
    top: 38px;
}

#cab_d{
  position: relative;
  width: calc( 100vw - 5px);
  height: calc( 100vh - 46px);
  min-height: 700px;
}

#popup_cd {
  width: 476px;
  height: 250px;
  background: linear-gradient(90deg, #FFDB7C 0%, #F8EBAF 50%, #FFDB7C 100%);
  border-radius: 4.90431px;
  left: 0;
  right: 0;
  margin: auto;
  top: 34.3%;
  position: absolute;
}

.txt_big {
  margin-top: 40px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
  color: #4B1900;
}

.txt_sm {
  margin-top: 14px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #4B1900;
}



#sec_third {
  margin-top: 100px;
}

#p_container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 111px;
}

#p_container_m {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin-top: 45px;
}

#sec_first_m2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -38px;
}


.sec3_txt_p {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 51px;
  color: #FFF7AE;
}


#sec3_p {
  background-image: url('/img/sec3_present_306x349.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 306px;
  height: 349px;
}

#w_w{
  margin-top: 15px;
  max-height: 268px;
  margin-bottom: 0px;
}


.w_row_num_d_h,
.w_row_date_d_h,
.w_row_state_d_h {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 156.2%;
  text-transform: uppercase;
  color: #4B1900;
}

.w_row_num_d,
.w_row_date_d,
.w_row_state_d {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 16px;
  line-height: 156.2%;
  text-transform: none;
  color: #4B1900;
}

.w_row_num_d,
.w_row_num_d_h {
  min-width: 100px;
}

.w_row_date_d,
.w_row_date_d_h {
  min-width: 140px;
}

.w_row_state_d,
.w_row_state_d_h {
  min-width: 100px;

}

.w_row_btn_placeholder {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cab_btn {
  width: 95px;
  height: 25px;
}


#c_cd {
  right: 0;
  width: 640px;
  bottom: 28px;
  left: -82px;
  transform: scale(0.5);
  position: absolute;
  margin: auto;
}


#upload_pic {
  background-image: url('/img/upload_popup_102x78.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 102px;
  height: 78px;
  margin-top: 35px;
  margin-bottom: 30px;
}

.upload_text {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 450;
  font-size: 12px;
  line-height: 111.5%;
  text-align: center;
  text-decoration-line: underline;
  color: #4B1900;
  cursor: pointer;
  margin-bottom: 20px;
}



[class^='select2'] {
  font-family: 'Futura PT' !important;
  font-style: normal !important;
  font-weight: 450 !important;
  font-size: 12px !important;
  line-height: 15px !important;
  color: #4B1900 !important;
  border-radius: 5px !important;
  border: 1px solid rgb(255, 255, 255) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa !important;
}

.select2-dropdown {
  border: 1px solid #aaa !important;
}

.select2-container {
  margin-top: 11px !important;
}


.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px !important;
  padding-top: 6px !important;
}

.select2-container--open .select2-dropdown {
  left: -1px !important;
  top: -11px !important;
}



@media screen and (min-width: 1000px) {
  #root_d {
    display: flex;
  }

  #root_m {
    display: none;
  }






}

@media screen and (max-width: 1000px) {

  .w_row_name_d,
  .w_row_phone_d {
    font-size: 12px;
  }
  .w_row_name_d {
    min-width: 104px;
  }

  .w_row_num_d_h,
  .w_row_date_d_h,
  .w_row_state_d_h {
    font-size: 12px;
  }

  .w_row_num_d,
  .w_row_date_d,
  .w_row_state_d {
    font-size: 12px;
  }

  .cab_btn {
    width: 80px;
    height: 25px;
    font-size: 12px;
  }

  .w_row_date_d,
  .w_row_date_d_h {
    min-width: 90px;
  }

  .w_row_state_d,
  .w_row_state_d_h {
    min-width: 90px;
  }

  .w_row_num_d,
  .w_row_num_d_h {
    min-width: 56px;
  }

  .popup_content {
    padding: 11px;
    padding-right: 11px;
  }

  .popup_container {
    min-width: 328px;
  }

  .w_row_btn_placeholder {
    width: 55px;
  }

  /*
	body{
		background-image: url('/img/bg_mob.png');
		background-image: url('/img/bg_mob2.png');
		background-repeat: no-repeat;
		background-size: auto 100% ;
		
		}*/
  #root_d {
    display: none;
  }

  #root_m {
    display: flex;
  }

  body {
    min-width: 375px;

  }

}









/* @media screen and (max-width: 1000px) {
	body{
		background-image: url('/img/sv_main_mob2x_min.png');
		
		background-repeat: no-repeat;
		background-size: auto 100% ;
		
		}
		
	#popup_cd{
			width: 302px;
			height: 242px;
	}
	
	#c_cd{
	right: 0;
    width: 640px;
    bottom: 25px;
    left: -169px;
    transform: scale(0.35);
    position: absolute;
    margin: auto;
	}	
} */








/*spinner*/
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.lds-css {
  position: absolute;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 10px;
  opacity: 0.5;
}

.lds-spinner {
  position: relative;
  margin: auto;
  right: 0;
  left: 0;
  top: 22%;
}

.lds-spinner div {
  left: 94px;
  top: 48px;
  position: absolute;
  -webkit-animation: lds-spinner linear 1s infinite;
  animation: lds-spinner linear 1s infinite;
  background: #62B66F;
  width: 12px;
  height: 24px;
  border-radius: 40%;
  -webkit-transform-origin: 6px 52px;
  transform-origin: 6px 52px;
}

.lds-spinner div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -0.916666666666667s;
  animation-delay: -0.916666666666667s;
}

.lds-spinner div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -0.833333333333333s;
  animation-delay: -0.833333333333333s;
}

.lds-spinner div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -0.75s;
  animation-delay: -0.75s;
}

.lds-spinner div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.666666666666667s;
  animation-delay: -0.666666666666667s;
}

.lds-spinner div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.583333333333333s;
  animation-delay: -0.583333333333333s;
}

.lds-spinner div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.416666666666667s;
  animation-delay: -0.416666666666667s;
}

.lds-spinner div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.333333333333333s;
  animation-delay: -0.333333333333333s;
}

.lds-spinner div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}

.lds-spinner div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.166666666666667s;
  animation-delay: -0.166666666666667s;
}

.lds-spinner div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.083333333333333s;
  animation-delay: -0.083333333333333s;
}

.lds-spinner div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.lds-spinner {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

/*spinner*/


.ui-autocomplete {
  max-height: 100px;
  overflow-y: auto;

  overflow-x: hidden;
}

* html .ui-autocomplete {
  height: 100px;
}