/* -- Container -- */
.container {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  background-color: #EDF1F7;
  overflow-y: scroll;
}









* {
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background-color: #1884dc34;
}










/* -- Whole Body -- */

.whole-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #EDF1F7;
}



.whole-body > main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.container::-webkit-scrollbar {
  width: 0px;
  display: none;
}


/* * { outline: 1px solid plum; } */








/* -- Navigation -- */

.navigation {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  position: fixed;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px #b9bdc23f;
}

.nav-content {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-content > img {
  height: 25px;
  margin: 0px 0px 0px 20px;
}


@media print {
  .navigation {
    position: absolute;
  }
  
  .upload-flightplan {
    display: none;
    visibility: collapse;
  }
  
  .route-info {
    min-height: 820px;
  }

  .add-waypoint {
    display: none;
    visibility: collapse;
  }

  .save {
    display: none;
    visibility: collapse;
  }

  .footer {
    display: none;
    visibility: collapse;
  }
}



















/* -- Main Content -- */

.main-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.main-content > main {
  width: 100%;
  max-width: 1000px;
}



.heading {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #1f262e;
  margin: 89px 0px 24px 0px;
}










/* -- Flight Info PopUp -- */

.flight-info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background-color: #FFFFFF;
}




.flight-info-heading {
  font-size: 20px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 20px 0px -16px 28px;
}




.flight-info-row {
  width: 100%;
  padding: 20px 0px 0px 12px;
  display: flex;
  align-items: center;
}





.departure, .destination, .edt, .altitude, .rpm, .type, .tas, .fuel, .gph, .rules {
  width: 150px;
  height: 60px;
  display: flex;
  flex-direction: column;
}

.departure-label, .destination-label, .edt-label, .altitude-label, .rpm-label, .type-label, .tas-label, .fuel-label, .gph-label, .rules-label {
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 400;
  color: #b3b8bd;
  margin: 0px 0px 0px 26px;
  transform: scale(1.1) translate(16px, 22px);
  cursor: text;
  transition: 0.2s;
}

.departure-input, .destination-input, .edt-input, .altitude-input, .rpm-input, .type-input, .tas-input, .fuel-input, .gph-input, .rules-input {
  width: calc(100% - 58px);
  height: 40px;
  border: 0px;
  outline: none;

  margin: 4px 0px 0px 20px;
  padding: 0px 8px 0px 10px;
  border-radius: 6px 6px 0px 0px;
  background-color: #f3f4f5;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #5d6069;
  
  cursor: text;
  transition: 0.5s;
}

.departure-bar, .destination-bar, .edt-bar, .altitude-bar, .rpm-bar, .type-bar, .tas-bar, .fuel-bar, .gph-bar, .rules-bar {
  width: calc(100% - 40px);
  height: 2px;
  display: flex;
  background-color: #e0e4e9;
  border-radius: 0px 0px 2px 2px;
  margin-left: 20px;
  transition: 0.2s;
}


.edt {
  width: auto;
}

.fuel {
  width: 180px;
}

.gph {
  width: 180px;
}

.rules-label {
  transform: scale(1) translate(0px, 0px);
}

.rules-input {
  display: flex;
  align-items: center;
  cursor: default;
}

.rules-sun {
  width: 18px;
  height: 18px;
  display: flex;
  margin: 0px 18px 0px 6px;
  user-select: none;
  transform: translateX(0px) scale(1.2);
  transition: 0.5s;
}

.rules-clouds {
  width: 32px;
  height: 32px;
  display: flex;
  user-select: none;
  z-index: 0;
  opacity: 0;
  transform: translateX(0px) scale(0.5);
  transition: 0.5s;
}

.rules-toggle {
  width: 50px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px -32px;
  
  border-radius: 8px 16px 16px 8px;
  background-color: #007BE6;

  font-size: 14px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #FFFFFF;

  z-index: 1;
  user-select: none;
  cursor: pointer;
  transition: 0.3s;
}

.rules-toggle:hover {
  transition: 0.2s;
  background-color: #0471d0;
}

.rules-toggle:active {
  transition: 0.2s;
  transform: scale(0.95);
}






/* -- Get AWC Data -- */

.get-awc {
  width: auto;
  height: 45px;
  display: flex;
  align-items: center;
  margin: 16px 16px 0px auto;

  outline: 0px solid #cddefc;
  background-color: #e8effb;
  border-radius: 6px;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.get-awc:hover {
  transition: 0.1s;
  outline: 4px solid #cddefc;
}

.get-awc:active {
  transition: 0.2s;
  transform: scale(0.97);
}

.get-awc > img {
  width: 24px;
  height: 24px;
  margin: 0px 10px 0px 12px;
}

.get-awc > h5 {
  font-size: 14px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #4178E9;
  margin: 0px 14px 0px 0px;
}









/* -- Upload ForeFlight Plan -- */

.upload-flightplan {
  width: auto;
  height: 45px;
  display: flex;
  align-items: center;
  margin: 16px 45px 0px 0px;

  outline: 0px solid #212e3936;
  background-color: #212E39;
  border-radius: 6px;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.upload-flightplan:hover {
  transition: 0.1s;
  outline: 4px solid #212e3936;
}

.upload-flightplan:active {
  transition: 0.2s;
  transform: scale(0.97);
}

.upload-flightplan > img {
  width: 30px;
  height: 30px;
  margin: 0px 10px 0px 12px;
}

.upload-flightplan > h5 {
  font-size: 14px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #FFFFFF;
  margin: 0px 14px 0px 0px;
}


.upload-flightplan-input {
  display: none;
}




















/* -- Enroute Totals -- */

.flight-info-row:nth-child(5) {
  padding: 40px 0px 28px 12px;
}

.enroute-totals {
  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #1f262e;
  margin: 0px 12px 0px 20px;
}


.total-distance, .total-time, .total-fuel, .performance {
  width: auto;
  height: 28px;
  display: flex;
  align-items: center;
  margin: 0px 12px 0px 0px;
  background-color: #F3F4F5;
  border-radius: 100px;
  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.total-distance:hover, .total-time:hover, .total-fuel:hover, .performance:hover {
  transition: 0.2s;
  background-color: #e5e8eb;
}

.total-distance:active, .total-time:active, .total-fuel:active, .performance:active {
  transition: 0.2s;
  background-color: #e5e8eb;
  transform: scale(0.96);
}

.total-distance > img, .total-time > img, .total-fuel > img, .performance > img {
  width: 20px;
  height: 16px;
  margin: 0px 6px 0px 10px;
}

.total-fuel > img {
  height: 14px;
}

.total-distance > h5, .total-time > h5, .total-fuel > h5, .performance > h5 {
  font-size: 11px;
  font-family: 'Poppins';
  font-weight: 500;
  margin: 0px 16px 0px 0px;
}





























/* -- Route Info PopUp -- */

.route-info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0px 0px 36px 0px;
  margin: 20px 0px 0px 0px;
  border-radius: 16px;
  background-color: #FFFFFF;
}




.route-info-heading {
  font-size: 20px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 20px 0px 0px 28px;
}




.route-info-row {
  width: 100%;
  padding: 20px 0px 0px 12px;
  display: flex;
  align-items: center;
}





.route-info-header {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  margin: 16px 0px 28px 0px;
  padding: 0px 0px 0px 24px;
}



.rih-wpname, .rih-altitude, .rih-wind, .rih-tc, .rih-wca, .rih-th, .rih-var, .rih-mh, .rih-gs, .rih-leg, .rih-rem, .rih-ete, .rih-eta, .rih-fuel, .rih-fuelrem, .rih-endurance {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px 6px 20px;
  margin: 0px 8px 0px 0px;

  border-radius: 6px;
  background-color: #F3F4F5;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #1f262e;

  user-select: none;
  cursor: default;
}

.rih-wpname {
  padding: 6px 36px 6px 36px;
}

.rih-altitude {
  padding: 6px 16px 6px 16px;
}

.rih-wind {
  width: 105px;
  padding: 6px 0px 6px 0px;
}



.rih-tc, .rih-wca, .rih-th, .rih-var, .rih-leg, .rih-rem, .rih-eta, .rih-ete, .rih-fuel, .rih-fuelrem {
  height: 17px;
  font-size: 10px;
}

.rih-wca, .rih-var, .rih-rem, .rih-eta, .rih-fuelrem {
  margin: 4px 8px 0px 0px;
}

.rih-mh {
  padding: 6px 15px 6px 15px;
}

.rih-gs {
  padding: 6px 21px 6px 21px;
}








/* -- Route Info Logs Table -- */

.route-info-logs {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 0px 0px 0px 24px;
}


.ril-dot {
  width: 6px;
  height: 6px;
  display: flex;
  margin: 0px 10px 0px 8px;
  border-radius: 100px;
  outline: 4px solid #4178E9;
  background-color: #FFFFFF;
}



.ril-connector {
  width: 4px;
  height: 50px;
  display: flex;
  margin: -15px 0px -25px 123px;
  border-radius: 10px;
  background-color: #4179e934;
}



.route-info-log {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 10px 0px 0px 0px;
}


.ril-info {
  width: auto;
  height: auto;
  display: flex;
  transform: translate(0px, -40px);
}


.ril-wpname, .ril-altitude, .ril-winddir, .ril-windspd, .ril-temp, .ril-tc, .ril-wca, .ril-th, .ril-var, .ril-mh, .ril-gs, .ril-leg, .ril-rem, .ril-ete, .ril-eta, .ril-fuel, .ril-fuelrem, .ril-endurance {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4px 12px 4px 12px;
  margin: 0px 8px 0px 0px;

  border: 2px solid #F3F4F5;
  outline: 0px;
  border-radius: 6px;
  background-color: transparent;

  font-size: 11px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #1f262e;
  text-align: center;
  
  transition: 0.3s;
}

.ril-wpname:hover, .ril-altitude:hover, .ril-winddir:hover, .ril-windspd:hover, .ril-temp:hover, .ril-tc:hover, .ril-wca:hover, .ril-th:hover, .ril-var:hover, .ril-mh:hover, .ril-gs:hover, .ril-leg:hover, .ril-rem:hover, .ril-ete:hover, .ril-eta:hover, .ril-fuel:hover, .ril-fuelrem:hover, .ril-endurance:hover {
  border: 2px solid #e2e3e4;
  transition: 0.3s;
}

.ril-wpname:active, .ril-altitude:active, .ril-winddir:active, .ril-windspd:active, .ril-temp:active, .ril-tc:active, .ril-wca:active, .ril-th:active, .ril-var:active, .ril-mh:active, .ril-gs:active, .ril-leg:active, .ril-rem:active, .ril-ete:active, .ril-eta:active, .ril-fuel:active, .ril-fuelrem:active, .ril-endurance:active {
  border: 2px solid #4179e978;
  transform: scale(0.98);
  transition: 0.3s;
}

.ril-wpname:focus, .ril-altitude:focus, .ril-winddir:focus, .ril-windspd:focus, .ril-temp:focus, .ril-tc:focus, .ril-wca:focus, .ril-th:focus, .ril-var:focus, .ril-mh:focus, .ril-gs:focus, .ril-leg:focus, .ril-rem:focus, .ril-ete:focus, .ril-eta:focus, .ril-fuel:focus, .ril-fuelrem:focus, .ril-endurance:focus {
  border: 2px solid #4179e978;
  transition: 0.3s;
}




.ril-wpname {
  width: 79px;
  font-size: 12px;
  text-align: left;
  padding: 18px 12px 18px 12px;
}

.ril-altitude {
  width: 52px;
  font-size: 12px;
  padding: 18px 12px 18px 12px;
}

.ril-weather-row {
  display: flex;
  margin: 2px 0px 0px 0px;
}

.ril-winddir {
  width: 89px;
  font-size: 10px;
  padding: 4px 6px 4px 6px;
}

.ril-windspd {
  width: 37px;
  font-size: 10px;
  padding: 6px 6px 6px 6px;
  margin: 0px 2px 0px 0px;
}

.ril-temp {
  width: 35px;
  font-size: 10px;
  padding: 6px 6px 6px 6px;
}

.ril-tc {
  width: 38px;
}
.ril-wca {
  width: 38px;
  margin: 3px 0px 0px 0px;
}
.route-info-log input:disabled {
  background-color: #f8f9fa;
}
.route-info-log input:disabled:active {
  border: 2px solid #e2e3e4;
  background-color: #F3F4F5;
}

.ril-th {
  width: 33px;
}
.ril-var {
  width: 33px;
  margin: 3px 0px 0px 0px;
}

.ril-mh {
  width: 32px;
  padding: 18px 7px 18px 7px;
}

.ril-gs {
  width: 40px;
  padding: 18px 8px 18px 8px;
}

.ril-leg {
  width: 45px;
  padding: 4px 6px 4px 6px;
}
.ril-rem {
  width: 45px;
  padding: 4px 6px 4px 6px;
  margin: 3px 0px 0px 0px;
}

.ril-ete {
  width: 30px;
}
.ril-eta {
  width: 30px;
  margin: 3px 0px 0px 0px;
}

.ril-fuel {
  width: 56px;
}
.ril-fuelrem {
  width: 56px;
  margin: 3px 0px 0px 0px;
}

.ril-endurance {
  width: 78px;
  padding: 18px 12px 18px 12px;
}








.route-menu {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 50px 0px 0px 0px;
}


.add-waypoint, .save {
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 45px 0px 0px;

  border: none;
  outline: none;
  border-radius: 10px;
  background-color: #568dfa;
  box-shadow: 0px 0px 0px #1f262e2e;

  font-size: 13px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;

  cursor: pointer;
  transition: 0.2s;
}

.add-waypoint:hover {
  transition: 0.2s;
  background-color: #4178E9;
  box-shadow: 0px 0px 5px #568dfa7b;
}

.add-waypoint:active {
  transition: 0.2s;
  background-color: #4178E9;
  transform: scale(0.95);
}


.save {
  width: 200px;
  height: 50px;
  font-size: 15px;
  margin: 70px 12px 50px calc(50% - 100px);
  border-radius: 100px;
  background-color: #007BE6;
}

.save:hover {
  transition: 0.2s;
  background-color: #0578dd;
}

.save:active {
  transition: 0.2s;
  background-color: #0471d0;
  transform: scale(0.97);
}



































/* -- Airport Info PopUp -- */

.airport-info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 20px 0px 0px 0px;
  border-radius: 16px;
  background-color: #FFFFFF;
  transition: 0.5s;
}





.airport-info-header {
  width: 100%;
  height: auto;
  display: flex;
}


.airport-info-heading {
  flex: 1;
  font-size: 20px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 20px 0px 0px 28px;
}

.airport-info-heading > span {
  color: #0a7ae2;
}









.aid-close {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;

  outline: none;
  border-radius: 100px;
  background-color: transparent;

  transform: translateY(16px);
  cursor: pointer;
  transition: 0.3s;
}

.aid-close > img {
  width: 16px;
  height: 16px;
  border-radius: 100px;
  transition: 0.2s;
}

.aid-close:hover {
  transition: 0.3s;
  background-color: #171b1e0f;
}

.aid-close:active {
  transition: 0.2s;
  transform: translateY(16px) scale(0.9);
  background-color: #171b1e23;
}

















.airport-info-diagrams {
  width: calc(100% - 40px);
  height: 0px;
  display: flex;
  margin: 0px 0px 24px 20px;
  overflow: hidden;
  transition: 0.2s;
}


.aid-dep {
  width: calc(50% - 16px);
  height: fit-content;
  display: none;
  margin: 28px 8px 0px 8px;
  transition: 0.5s;
}


.aid-dest {
  width: calc(50% - 10px);
  height: fit-content;
  display: none;
  margin: 28px 8px 0px 8px;
  transition: 0.5s;
}



























/* -- Footer -- */

.footer {
  width: 100%;
  height: 370px;
  display: flex;
  justify-content: center;
  margin: 100px 0px 0px 0px;
  background-color: #FFFFFF;
  border-radius: 16px 16px 0px 0px;
  box-shadow: 0px 0px 20px #b9bdc23f;
}


.footer > main {
  width: 100%;
  height: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  position: relative;
}



.footer-logo {
  width: 318px;
  height: 36px;
  margin: 30px 0px 0px 28px;
  cursor: pointer;
  -webkit-user-drag: none;
}


.footer > main > h4 {
  font-size: 11px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 8px 0px 0px 28px;
}




.social-profiles {
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 28px;
}

.social-profiles > a {
  margin: 0px 12px 0px 0px;
}

.social-profiles > a > img {
  width: 16px;
  height: 16px;
  user-select: none;
}




.download-app {
  width: 100%;
  height: 170px;
  display: flex;
  flex-direction: column;
}

.download-app > h2 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #343e5d;
  margin: 24px 0px 0px 28px;
}

.download-app-stores {
  height: auto;
  display: flex;
  margin: 10px 0px 0px 28px;
}

.download-app-stores > a {
  margin: 0px 8px 0px 0px;
}

.download-app-stores > a > img {
  width: 110px;
  cursor: pointer;
  user-select: none;
}




.footer > main > h5 {
  text-align: center;
  align-self: center;
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #50565c;
  margin: 0px 24px 0px 24px;
}

.footer > main > h5 > a {
  color: var(--theme);
  cursor: pointer;
}









.blush1 {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 2;
  border-radius: 100px;
  background-color: #4178E9;
  box-shadow: calc(100vw + 280px) 30px 50px #4179e927;
  transform: translateX(-100vw);
}

.blush2 {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 2;
  border-radius: 100px;
  background-color: #C783D6;
  box-shadow: calc(100vw + 330px) 100px 50px #c783d62f;
  transform: translateX(-100vw);
}

































/* -- Ask Weather Station Screen -- */

.ask-weather-station-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;

  background-color: #00000081;

  opacity: 0;
  transition: 0.5s;
}



.ask-weather-station-dialog {
  width: calc(100% - 50px);
  max-width: 500px;
  height: auto;
  display: flex;
  flex-direction: column;

  border-radius: 12px;
  background-color: #FFFFFF;

  transform: scale(0);
  transition: 0.4s;
}


.awsd-header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0px 0px 0px 24px;
}

.awsd-header > h1 {
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 0px 0px 0px 0px;
  cursor: default;
}

.awsd-header > img {
  width: 24px;
  height: 24px;
  margin: 0px 12px 0px 0px;
  user-select: none;
}


.ask-weather-station-dialog > h5 {
  max-width: 400px;
  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #1f262e;
  margin: 0px 0px 0px 24px;
}


.weather-station-input-box {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  align-self: center;
  margin: 20px 0px 28px 0px;

  border: none;
  outline: 2px solid #F3F4F5;
  border-radius: 8px;
  background-color: transparent;

  transition: 0.2s;
}


.weather-station-input {
  width: calc(100% - 40px);
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 20px;

  border: none;
  outline: none;
  background-color: transparent;

  font-size: 16px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #0471d0;

  cursor: pointer;
}


.weather-station-input-box:focus-within {
  transition: 0.1s;
  outline: 4px solid #0471d06c;
}







.weather-station-apply {
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  padding: 0px 20px 0px 20px;
  margin: 0px 24px 24px 0px;

  border: none;
  outline: none;
  border-radius: 10px;
  background-color: #007BE6;
  outline: 0px solid #0471d06c;
  box-shadow: 0px 0px 0px #1f262e2e;

  font-size: 13px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;

  cursor: pointer;
  transition: 0.2s;
}

.weather-station-apply:hover {
  transition: 0.2s;
  background-color: #0471d0;
}

.weather-station-apply:active {
  transition: 0.2s;
  background-color: #046cc6;
  transform: scale(0.97);
}

.weather-station-apply:focus {
  outline: 4px solid #0471d06c;
}





















.change-weather-station-popup {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;

  top: 0px;
  left: 0px;
  z-index: 15;
  position: fixed;

  border-radius: 12px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px #1f262e2e;

  user-select: none;
  transform: scale(0);
  transition: 0.25s;
}


.cws-header {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}

.cws-header > h1 {
  font-size: 13px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #1f262e;
  margin: 0px 16px 0px 0px;
}

.cws-header > img {
  width: 18px;
  height: 18px;
  margin: 0px 8px 0px 12px;
}


.change-weather-station-input-box {
  width: 100px;
  height: 28px;
  display: flex;
  align-items: center;
  align-self: center;
  margin: 0px 0px 12px 0px;

  border: none;
  outline: 2px solid #F3F4F5;
  border-radius: 8px;
  background-color: transparent;

  transition: 0.2s;
}


.change-weather-station-input {
  width: calc(100% - 16px);
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 8px;

  border: none;
  outline: none;
  background-color: transparent;

  font-size: 13px;
  font-family: 'Baloo 2';
  font-weight: 600;
  color: #0471d0;

  cursor: pointer;
  transition: 0.2s;
}


.change-weather-station-input-box:focus-within {
  transition: 0.1s;
  outline: 4px solid #0471d06c;
}































/* -- Loader Screen -- */



.loader-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;

  background-color: #f9fbfeae;

  opacity: 0;
  transition: 0.5s;
}





.loader {
  width: 250px;
  height: 250px;
}




.loader-screen > h5 {
  font-size: 24px;
  font-family: 'Baloo 2';
  font-weight: '600';
  color: #171b1e;
  margin: 0px 0px 0px 0px;

  background: linear-gradient(84.06deg, #2DC8FF -28.62%, #1652C8 36.39%, #A033FF 98.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  
  animation: syncloader 0.5s linear infinite alternate;
  transition: 0.2s;
}






@keyframes syncloader {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}


































