.switch {
  position: relative;
  display: inline-block;
  width: 60px;
    /*  height: 34px; */
  height: 20px;
  vertical-align: middle
}

.switch_title{
  position: relative;
  display:inline;
  width: 60px;
  height: 34px;
  vertical-align: middle;
      
}


/* When the width is between 600px and 900px OR above 1100px - change the appearance of <div> 
@media screen and (max-width: 900px) and (min-width: 600px), (min-width: 1100px) {
*/
/*iphone 12 */

@media only screen 
  and (min-device-width: 390px) 
  and (max-device-width: 844px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) { 
      .switch_title {
          font-size: 9px;
      }
}

@media screen and (min-width: 1100px) {
  .switch_title {
    font-size: 20px;
  }
}

.switch input {display:none;}

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

.slider:before {
  position: absolute;
  content: "";
    /*  height: 26px; */
  height: 10px;
  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);
}

.Currency_exchange{
    margin: auto;
    display:inline;
}

.MOP {
  display: none;
}



