
#fon{
    display: none;
}

.tg-container{
    max-width: 100vw;
}

:root {
    --mainFont: Proxima Nova;
  }

body{ 
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
}

h1{
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.01em;
    color: #000000;
}

h2{
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: #000000;
}
 
h3{
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: #000000;
 }

p{ 
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;
}



#panel{
    margin: 0;

    padding: 5px;
    text-align: center;
    background-color: #000;
    border: 0px solid #c3c3c3;
    color: #FFF;
    z-index: 1; position: absolute; height: 100%; box-shadow: 0px 2px 10px #000;
}
#flip {
    text-align: center;
    }

#panel {
    padding: 50px;
    display: none;
}



.mainContent{
    background-color: #F4F4F4; 
}

.col-menu{
    background-color: black;
    width: 40px;
}

.noscale {
    margin: 2px;
}


.scale {
    margin: 2px;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}
.scale:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


.scale_sm {
    margin: 2px;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}
.scale_sm:hover {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}


.scale_md {
    margin: 2px;
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
}
.scale_md:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


.burgerMenu{
    margin: 22px 0;
}


.blackLink a{
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.01em;

    padding: 4px 6px;
    border-radius: 4px;
    
    transition: 0s;
    -webkit-transition: 0s;
    -moz-transition: 0s;
    -ms-transition: 0s;
    -o-transition: 0s;

    }
.blackLink a:link,
.blackLink a:visited,
.blackLink a:active{
    color: #000;
    text-decoration: underline;
    }
.blackLink a:hover{
    text-decoration: none;
    background-color: #3D73FF;
    color: #FFF;
    }


.tabColActive{
    border-bottom: 2px solid #FBD44B;
    padding: 6px 0;
    margin-top: 0px;
    margin-right: 40px;
}

.tabCol{
    padding: 6px 0;
    margin-top: 0px;
    margin-right: 40px;
}


.tabRow1{
    border-bottom: 1px solid #DBDBDB;
    margin: 0;
    padding: 0;
}

.tabRow2{
    font-family: var(--mainFont);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #818181;

    border: 2px solid #F4F4F4;
    border-radius: 10px;

    margin: 20px 0;
}

.tabRow3{

    font-family: var(--mainFont);
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.01em;
    color: #000000;

    margin: 0 0 12px 0;
    padding: 0;
    height: 50px;
    
    border: 2px solid #F4F4F4;
    border-radius: 10px;
}

.tabRow3:hover{
    border: 2px solid #FBD44B;
    border-radius: 10px;

}




.labelContainer {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 16px;
  }
  
  .labelContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: -14px;
    left: 0;
    height: 30px;
    width: 30px;
    background-color: #E3E3E3;
    border-radius: 15px;
  }
  

  .labelContainer:hover input ~ .checkmark {
    border: 0px solid gray;
    background-color: #ccc;
    border-radius: 15px;
  }
  
  .labelContainer input:checked ~ .checkmark {
    border: 0px solid gray;
    background-color: #E3E3E3;
    border-radius: 15px; 
  }
  

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  

  .labelContainer input:checked ~ .checkmark:after {
    display: block;
  }
  

  .labelContainer .checkmark:after {
    left: 11px;
    top: 7px;
    width: 7px;
    height: 14px;
    border: solid #828282;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


.tabRow3:hover .labelContainer input:checked ~ .checkmark {
    background-color: #FBD44B;
    
}

  .tabRow3:hover .labelContainer input ~ .checkmark {
    background-color: #D3D3D3;
}

.tabRow3:hover .labelContainer .checkmark:after {
    left: 11px;
    top: 7px;
    width: 7px;
    height: 14px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


select {
    -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      appearance: none;

      width: 240px;
      height: 40px;
      border: 0px solid gray;

      font-family: var(--mainFont);
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 21px;
      letter-spacing: 0.01em;
      color: #000000;

      background: #FFFFFF;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      padding: 9px 10px 10px 16px;
      background: url(../images/ShowSelect.svg) 95% 50% no-repeat #FFFFFF;
    }

.divSelect{
    position: relative; bottom: -22px;
}



.form-control {

        font-family: var(--mainFont);
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0.01em;
        color: #000000;
}
    


form{
  position: relative;
  margin: 0 auto;
  width: 240px; height: 40px;
  background: #E9E9E9;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  
}
input, button {
    border: none;
    outline: none;
    background: transparent;
}
input {
  width: 206px !important;
  margin: 2px 8px 4px 8px;
  padding: 8px 8px;
  border: 0px solid black !important;

  font-family: var(--mainFont);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #000000;
}
button {
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #000000;
}


.paddZero{
    padding: 0px;
}

.marginR{
    margin-right: 16px;
}


