body {
  background-color: rgb(184, 209, 255);
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fcdb6f;
  z-index: 1;
  padding: 20px 0;
  transform: translate(0, 0) scale(0) skew(45deg);
  transition: all 400ms ease-in-out;
}

.navigation.deployed {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) skew(0deg);
}


.navigation h3{
  font-size: 32px;
  text-align: center;
  color: #0174f8;
  margin-top: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.navToggle{
  width: 70px;
  height: 70px;
  cursor: pointer;
  
  z-index: 10;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  top:10px;
  /*left: calc(50% - 340px);  Центр мінус 300 пікселів та мінус половина ширини navToggle */
}
@media (max-width: 600px) {
  .navToggle {
    left: 10px; /* Встановити у верхньому лівому куті для ширини екрана менше або дорівнює 600 пікселів */
  }
}

.navToggle span{
  position: absolute;
  width: 40px;
  height: 4px;
  background: #fa9600;
  top: 12px;
}

.navToggle:before{
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  left:0;
  background: #fa9600;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.navToggle:after{
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #fa9600;
  top: 24px;
  left:0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.navToggle.closeicon:before{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 12px;
}

.navToggle.closeicon span{
  display: none;
  opacity:0;
}

.navToggle.closeicon:after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12px;
}
.btn-custom {
  width: 300px;
}

.navToggle {    
  position: absolute; /* Додати абсолютне позиціонування */
  top: 12px;
  left: 12px;
  width: 50px;
  height: 50px;
}

.uaFlag {
  position: absolute; /* Додати абсолютне позиціонування */
  top: 10px;
  right: 5px;
  width: 60px;
  z-index: 99999;
  
}