@font-face {
	font-family: 'RT'; 
	src: url(/fonts/Roboto-Thin.ttf); 
}

@font-face {
	font-family: 'RL'; 
	src: url(/fonts/Roboto-Light.ttf); 
}

@font-face {
	font-family: 'RR'; 
	src: url(/fonts/Roboto-Regular.ttf); 
}

@font-face {
	font-family: 'RM'; 
	src: url(/fonts/Roboto-Medium.ttf); 
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s;
}

.remodal-wrapper {
  padding: 10px;
}

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 99.2%;
  padding: .8%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #000000;
  background: transparent linear-gradient(122deg, #037de4 0%, #19a953 100%) 0% 0% no-repeat padding-box;
  margin-bottom: 10px;
  font-family: 'RL', sans-serif;
  overflow: hidden;
  border-radius: 10px;

}
.remodalBorder{
    width: 89.2%;
    border: 1px solid #e1e1e1;
    padding: 4% 5% 0.8%;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #FFFFFF;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-size: 55px;
  line-height: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}


.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.success, .fail{
  color: #fff;
}

.remodal {
max-width: 100%;
}

#modal1Title {
font-size: 24px;
font-weight: bold;
color: #c7d9e7;
text-shadow: 1px 1px 1px rgba(0, 21, 57, 0.7);
}

/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 30px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 370px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font: 11px 'Roboto Condensed';
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 200px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 12px !important;
    background: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 200px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 12px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 7 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 200px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 12px !important;
    background: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 200px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 12px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 180px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif !important;
}

#send5 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 180px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 13px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 30px;
margin-bottom: 10px;
text-align: center;
font-size: 17px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 20px;
}
/* FORMA ZAKAZA 88 END */

/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 40px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 300px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'RL', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 180px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 180px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 210px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 15px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 17px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 210px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RM', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 20px 0px 25px 0px;
padding: 0px 0px 0px 0px;
font-size: 13px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 25px;
margin-bottom: 10px;
text-align: center;
font-size: 25px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 28px;
}
/* FORMA ZAKAZA 88 END */

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: center;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakazzvonka {
margin-top: 40px;
margin-bottom: 20px;
text-align: center;
font-size: 20px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 30px;
}

@media only screen and (min-width: 359px) {
    
/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 40px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 300px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'RL', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 180px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 180px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 210px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 15px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 17px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 210px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RM', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 20px 0px 25px 0px;
padding: 0px 0px 0px 0px;
font-size: 13px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 25px;
margin-bottom: 10px;
text-align: center;
font-size: 25px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 28px;
}
/* FORMA ZAKAZA 88 END */

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: center;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakazzvonka {
margin-top: 40px;
margin-bottom: 20px;
text-align: center;
font-size: 20px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 30px;
}

}

@media only screen and (min-width: 399px) {
    
/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 40px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 340px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'RL', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 240px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 15px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 17px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 240px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RM', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 20px 0px 25px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 25px;
margin-bottom: 10px;
text-align: center;
font-size: 25px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 28px;
}
/* FORMA ZAKAZA 88 END */

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 16px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: center;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakazzvonka {
margin-top: 40px;
margin-bottom: 20px;
text-align: center;
font-size: 23px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 30px;
}

}

/* SMALL*/
@media only screen and (min-width: 768px) {

/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 40px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 440px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'Arial', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 270px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 15px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 17px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 270px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RR', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 15px 0px 25px 0px;
padding: 0px 0px 0px 0px;
font-size: 17px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 25px;
margin-bottom: 10px;
text-align: center;
font-size: 25px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 28px;
}
/* FORMA ZAKAZA 88 END */

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 20px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: left;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 16px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.zakazzvonka {
margin-top: 30px;
margin-bottom: 20px;
text-align: center;
font-size: 28px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

}

/* MEDIUM */
@media only screen and (min-width: 992px) {

/* FORMA ZAKAZA 7 START */
.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 40px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.pluds {
max-width: 440px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'Arial', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 270px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 15px 10px;
    font-size: 15px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 15px 10px;
    font-size: 17px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 270px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RR', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 15px 0px 25px 0px;
padding: 0px 0px 0px 0px;
font-size: 17px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.zakmas2 {
margin-top: 25px;
margin-bottom: 10px;
text-align: center;
font-size: 25px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 28px;
}
/* FORMA ZAKAZA 88 END */

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 20px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: left;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 16px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.zakazzvonka {
margin-top: 30px;
margin-bottom: 20px;
text-align: center;
font-size: 28px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

}

/* LAGE */
@media only screen and (min-width: 1200px) {

/* FORMA ZAKAZA 7 START */
.pluds {
max-width: 500px;
}

.zakmas {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 38px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
line-height: 38px;
}

.zakmascen {
text-align: center; 
}

.zakmascen a {
color: #EAEAEA !important;
font-size: 12px;
font-family: 'Arial', sans-serif;
font-style: italic;
}

.txt3 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif !important;
}

#send3 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send3:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom3 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 7 END */

/* FORMA ZAKAZA 77 START */
.txt4 { 
    display: inline;
    color: #000000;
    width: 220px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 13px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif !important;
}

#send4 {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    padding: 8px 7px;
    font-size: 15px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FB2E2E 0%, #CF1319 100%) 0% 0% no-repeat padding-box;
    width: 220px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    font-family: 'Arial', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send4:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom4 {
margin: 10px 0px 10px 0px;
padding: 0px 0px 0px 0px;
font-size: 15px;
font-family: 'Arial', sans-serif;
color: #FFFFFF;
text-align: center;
}
/* FORMA ZAKAZA 77 END */

/* FORMA ZAKAZA 88 START */
.txt5 { 
    display: inline;
    color: #000000;
    width: 300px;
    border: 0px solid #6075FF;
    border-radius: 4px;
    padding: 20px 10px;
    font-size: 17px !important;
    background: #FFFFFF;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: 'RL', sans-serif !important;
}

#send5 {
    color: #000000;
    display: inline;
    cursor: pointer;
    padding: 20px 10px;
    font-size: 20px;
    border: solid 0px #F9F9F9;
    border-radius: 3px;
    background: transparent linear-gradient(101deg, #FFFFFF 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    width: 300px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'RR', sans-serif !important;
    box-shadow: 0px 5px 10px #05134B26;
}

#send5:hover {
    color: #FFFFFF;
    background: #000000;
}

.ifrom5 {
margin: 15px 0px 15px 0px;
padding: 0px 0px 0px 0px;
font-size: 17px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: center;
}

.ifrom6 {
margin: 25px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 20px;
font-family: 'RL', sans-serif;
color: #000000;
text-align: left;
}

#ifrom7 {
margin: 20px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 18px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.ifrom77 {
margin: 100px 0px 20px 0px;
padding: 0px 0px 0px 0px;
font-size: 25px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
text-align: left;
}

.zakazzvonka {
margin-top: 30px;
margin-bottom: 20px;
text-align: center;
font-size: 28px;
font-family: 'RL', sans-serif;
color: #FFFFFF;
line-height: 38px;
}
/* FORMA ZAKAZA 88 END */

}


