* {
	padding: 0px;
	margin: 0px;
	border: 0px;
	outline:none;
	box-sizing:border-box;
	position:relative;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a {
    color: #26ae61;
}
html {
  --scrollbarBG: transparent;
  --thumbBG: #26ae61;
  --text:#333;
  --titles:#1d1d1d;
  --links:#26ae61;  
  --lightgreen:#f2fbf6;
}

::-webkit-scrollbar {
  width: 5px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
  font-family: 'Nagel VF', Arial, sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5{
    font-family: 'Nagel VF', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 7px;
    color: #1d1d1d;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 4px solid transparent;
}

::-moz-selection {
	color: #fff;
	background: #26ae61;
}

::selection {
	color: #fff;
	background: #26ae61;
} 

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding-left:15px;
    padding-right: 15px;
}

h1{
    font-size: 30px;
}

h2{
    font-size: 25px;
}
.logo{
    padding-top: 5px;
}
#nav-icon4 {
    display: none;
    width: 60px;
    height: 45px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transform: scale(.5);
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
   #nav-icon4 span {
    display: block;
    position: absolute;
    height: 9px;
    width: 100%;
    background: #26ae61;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }
  
  
  #nav-icon4 span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4 span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4 span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  #nav-icon4.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
  }
  
  #nav-icon4.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  
  #nav-icon4.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 8px;
  }
input[type=text],
input[type=number]{
    font-family: inherit;
    border: 1px solid #c7c7c7;
    border-radius: 0.25rem;
}

header{
    padding-top: 25px;
    padding-bottom: 25px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, .12);
    position: relative;
    z-index: 2;
}

header .wrapper{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width:auto;
    height:29px;
}

header ul{
    display: flex;
    align-items: center;
    list-style: none;
}

header ul li{
    padding: 0 15px;
}
header ul li a{
    color:#444;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: .2s;
}

header ul li a:hover{
    color:#26ae61;
}
section.main.p404 {
    min-height: 100vh;
}
.main{
    background-color:#f2fbf6;
    background-image: url(../img/bg.svg);
    background-repeat: repeat;
    padding-top: 50px;
    padding-bottom: 50px;
}
/* Отключаем стандартный стиль чекбокса */
.checkbox-input {
    appearance: none;
    -webkit-appearance: none; 
    width: 18px;
    flex: 0 0 18px;
    height: 18px;
    border: 1px solid #26ae61;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

.checkbox-input:checked{
    background-color: #26ae61;
    border-color: #26ae61;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.checkbox-input:active {
    filter: brightness(90%);
}

.checkbox-input:hover:not(:disabled) {
    border-color: #26ae61;
}

.checkbox-input:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-input:disabled ~ .checkbox-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-item {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    font-size: 15px;
}

.checkbox-item label{
    padding-left: 5px;
}

.checkbox-item label:hover{
    cursor: pointer;
}
.calc-item{
    margin: 8px 0;
    font-size: 15px;

}

.calc-item span{
    display: block;
    font-weight: 600;
    color: #26ae61;
    font-size: 18px;
    letter-spacing: 0.6px;
}
.calc-item span:after {
    content: ' BYN';
    display: inline-block;
    margin-left: 3px;
}
.calc-zp input[type=number]{
    height:34px;
    line-height: 34px;
    padding-left: 10px;
    width:100%;
    font-size: 15px;
}
.calc-zp{
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 5%);
}
.calc-zp strong {
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
    display: block;
}
.calc-zp .vvod{
    flex:0 0 43%;    
    background: #fafafa;
    border-right: 1px solid #e6e6e6;
    padding: 40px;
}
.calc-zp .right{
    display: flex;
    padding: 40px;
    width: 100%;
    justify-content: space-between;
}

.text-block{
    padding-bottom: 50px;
    padding-top: 50px;
}

.text-block p{
    margin: 10px 0;
    font-size: 16px;
}

.text-block ul, .text-block ol{
    margin-left: 32px;
}

.informer {
	margin-top:30px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.informer .left div {
	flex: 0 0 25%;
	text-align: center;
}
.informer .left{
	display:flex;
	justify-content:space-between;
	flex:1;
}
.informer .left span{
	display:block;
	color:#26ae61;
	font-size:25px;
	text-align:center;
}
.informer .right{
	margin-left:30px;
	background-color: #f2fbf6;
	padding: 15px 30px;
	border-radius: 5px;
}
footer{
    background-color: #282828;
    color: #909090;
    padding-top:30px;
    padding-bottom: 30px;
}

@media (max-width:960px){
    #nav-icon4 {
        display: block;
    }
    header nav{
        display: none;
        position: absolute;
        background: rgb(255 255 255 / 90%);
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
        top: -25px;
    }
    .menu-open header nav{
        display: block;
    }
    header ul {
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    header ul li a {
        font-size: 20px;
        line-height: 2;
        font-weight: 600;
    }
    body.menu-open{           
       overflow: hidden;
    }
    .calc-zp .vvod {
        flex: 0 0 30%;
    }
}

@media (max-width:900px){
    .calc-zp .vvod, .calc-zp .right {
        padding: 20px;
    }
}
@media (max-width:700px){
    .calc-zp {
        flex-direction: column;
    }
	.informer .left{flex-wrap:wrap}
	.informer .left div{flex:0 0 50%;margin-bottom:10px}
}
@media (max-width:640px){
    .logo img {
        height: 23px;
    }
    header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width:580px){
    .calc-zp .right {
        flex-direction: column;
    }
    .calc-zp .all {
        margin-top: 15px;
    }
    .calc-zp strong{
        margin-bottom: 10px;
    }
    h1 {
        font-size: 25px;
    }
    .main{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width:480px){
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    .calc-zp .vvod, .calc-zp .right {
        padding: 20px 10px;
    }
}