
@font-face {
  font-family: 'rouble';
  src: url('../fonts/rouble/rouble.eot');
  src: local('☺'), url('../fonts/rouble/rouble.woff') format('woff'), url('../fonts/rouble/rouble.ttf') format('truetype'), url('../fonts/rouble/rouble.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}




.th-h1-container {

    text-align: center;
    padding: 35px 0;
    box-sizing: border-box;
    background-color: #64B786;
    max-width: 100%;
    width: 100%;

}

.th-h1-container h1 {
    font-family: 'KazimirText',Arial,sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    text-shadow: -1px 1px 1px rgba(255, 250, 250, 0.3);
}

.t-slds__arrow-withbg {
    width: 42px !important;
    height: 42px !important;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.7);
box-shadow: 0 0 5px 0 rgba(0,0,0,0.7);
}

.t-slds__arrow-withbg .t-slds__arrow_body {
    width: 12px !important;
}




@media screen and (max-width: 960px){
    
    .th-h1-container h1 {
        font-size: 42px;
    }

}

@media screen and (max-width: 480px){
    
    .th-h1-container h1 {
        font-size: 36px;
    }

}

button[type="submit"] {
  position: relative;
  overflow: hidden;
}

.lds-container {
    background-color: #228e50;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* точки */
.lds-ellipsis {
  display: block;
  position: absolute;
  width: 52px;
  height: 12px;
  
  top: 50%;
  left: 50%;
  
  -webkit-transform: translate(-60%, -50%);
-ms-transform: translate(-60%, -50%);
  transform: translate(-60%, -50%);
}
.lds-ellipsis div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  -webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lds-ellipsis_sm div {
  width: 10px;
  height: 10px;
}
.lds-ellipsis div:nth-child(1) {
  left: 10px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 10px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 30px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 49px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

form {
    position: relative;
}



.th-send-response-msg {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 25px;
  max-width: 320px;
  width: 100%;
  
  border-radius: 20px;
  
  -webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
  background-color: #fff;
  
  text-align: center;
  
      -webkit-box-shadow: 0 4px 16px 0 rgba(0,0,0,0.5);
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.5);
} 

.success-send-msg__img {
    background: url('../images/ico-msg-send.png') no-repeat;
    background-size: 100%;
    height: 82px;
    width: 82px;
    
    margin: 0 auto 15px auto;
}

.th-send-response-msg__title {
  font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Proxima-Nova-Semibold';
    line-height: 1.2;
}

.th-send-response-msg__txt {
  font-size: 18px;

}

.th-send-response-msg__txt_success {
  color: #228e50;
}

.th-send-response-msg__title_error {
  color: #f71616;
}

.th-send-response-msg__txt_error {
  color: #f71616;
}


input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}



.b-fra-map {
  background-color: #fff;
  border: 1px solid rgb(240, 240, 240);
  padding: 7px;
  box-sizing: border-box;
}

.b-fra-map-map {
  height: 460px;
  width: 100%;
}

.b-fra-map-items {
  display: none; 
}

/* выделение текста */

.th-txt-bg-decor-green {

  display: inline-block;
  padding: 4px 10px;
  position: relative;
  
  -moz-transition: color 0.9s ease;
-webkit-transition: color 0.9s ease;
-o-transition: color 0.9s ease;
transition: color 0.9s ease;
}

.th-txt-bg-decor-green:before {
  content: "";
  display: block;
  position: absolute;
  
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  
  background-color: rgba(48, 159, 93, 0);


-moz-transition: transform 0.6s ease, background-color 0.9s ease;
-webkit-transition: transform 0.6s ease, background-color 0.9s ease;
-o-transition: transform 0.6s ease, background-color 0.9s ease;
transition: transform 0.6s ease, background-color 0.9s ease;

-webkit-transform: translateX(-100px);
-ms-transform: translateX(-100px);
    transform: translateX(-100px);
  
  z-index: -1;

}
.th-txt-bg-decor-green._active {
/*  color: #fff;*/
}
.th-txt-bg-decor-green._active:before {
  -webkit-transform: translateX(0);
-ms-transform: translateX(0);
    transform: translateX(0);
        background-color: rgba(48, 159, 93, 0.75);
}



.t396__elem.tn-elem.tn-elem__1243868241567142969116 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233600661566559940749 .tn-atom,
.t396__elem.tn-elem.tn-elem__1234247391566560217323 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233605771566560484171 .tn-atom, 
.t396__elem.tn-elem.tn-elem__1233606271566800892066 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233615061566801353473 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233616351566802304595 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233618281566802400550 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233620381566802669334 .tn-atom,
.t396__elem.tn-elem.tn-elem__1233619861566802518998 .tn-atom,
.t396__elem.tn-elem .tn-atom[field="tn_text_1470209944682"] {
  background-color: transparent !important;
}


.th-ruble {
    font-family: 'rouble';
}

#rec123362038 .t396__artboard {
  height: auto !important;
  min-height: 165px;
} 

.th-sub-title {
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  padding-top: 15px;
}


@media screen and (max-width: 750px) {
  .b-fra-map-map {
    height: 290px;
  }

  .t570__padding_lg_contacts-bottom {
    padding-bottom: 25px !important;
  }
}


@media screen and (max-width: 639px){

  #rec123068262 .t396__carrier {
    height: 482px !important;
  }
  #rec123068262 .t396__artboard {
    height: 520px !important;
  }

  #rec123068262 .t396__filter {
    height: 440px !important;
  }

  .t396__elem.tn-elem.tn-elem__1230682621566304142992 {
    top: 42px !important;
  }


}



.th-cookie-modal {
    box-sizing: border-box;
    position: fixed;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);

    width: 100%;
    max-width: 420px;

    padding: 16px 19px 20px;

    bottom: 20px;
    left: 50%;

    border-radius: 8px;

    transform: translate(-50%, 110vh);
 
    z-index: 9999;

    transition: all 0.6s;
}

.th-cookie-modal_active {
    transform: translate(-50%, 0);
}

.th-cookie-modal_light {
    background-color: #fff; 
    color: #000;
}

.th-cookie-modal_dark {
    background-color: #000; 
    color: #fff;
}

.th-cookie-modal__txt {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.th-cookie-modal__btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.th-cookie-modal__btns button {
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 20px;
    font-size: 14px;

    background-color: #ffd31a;
    color: #000 !important;
}

.th-cookie-modal__btns a {
    color: #35005e;
    font-size: 14px;
}