.nav-wrapper{
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.nav-left{
  display: flex;
 
}

.nav-link{
  margin-right: 20px;
}

.loader {
    border: 10px solid #464444;
    border-radius: 50%;
    border-top: 10px solid #fd6a02;
    width: 50px;
    height: 50px;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.yoymodal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 0; /* Sit on top */
    left: 0;
    top: 0;
    display: flex none;
    align-items: center;
    background-color: white;
    border: 2px solid red;
    border-color: black;
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Content/Box */
.yoymodal-content {
    background-color: #fefefe;
    padding: 20px 5px;
    height: 300px;
    width: 250px; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 10px;
  margin-bottom: 10px;
  transform: rotate(90deg);
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.nav-buttons{
  display: flex;
  justify-content: space-around;
  padding: 5px 15px;
  margin-left: 55px;
  z-index:10;
}

.yoybttn {
    background: transparent;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .3s;
}

    .yoybttn:disabled {
        cursor: no-drop;
    }

        .yoybttn:disabled img {
            opacity: .1;
            transition: .3s;
        }

.nav-buttons button{
  color: #bbb;
}

.nav-buttons button.active{
  color: #111;
  transition: .3s;
}

.modal-body {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
}

.panErrorMsg{
    z-index:100 !important;
}