* {
  font-family: "Montserrat", sans-serif;
}

.select2-container {
  min-width: 100%;
}
span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open {
  width: 100% !important;
  min-width: 100% !important;
}

.current-timezone {
  background: #000000 !important;
  color: white !important;
}

.current-timezone .timezone-name {
  color: white !important;
}

.current-timezone:hover {
  background: #000000 !important;
  color: white !important;
}

.someToastAnimation {
  animation: someToastAnimation 0.2s ease-in-out;
}

@keyframes someToastAnimation {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* Header */
.close-menu,
.open-menu {
  position: absolute;
  cursor: pointer;
  display: none;
}

.open-menu {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.close-menu {
  top: 20px;
  right: 20px;
}

#check {
  display: none;
}

@media (max-width: 800px) {
  .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 73%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: #000;
    color: #fff;
    transition: all 0.5s ease-in-out;
    text-transform: uppercase;
    font-size: 24px;
  }

  .menu li {
    margin-top: 10px;
  }

  .menu li a {
    padding: 10px;
  }

  .close-menu,
  .open-menu {
    display: block;
  }

  #check:checked ~ .menu {
    right: 0;
  }
}

/* Stop Watch */
.table-laps th {
  padding-bottom: 8px;
}

.table-laps td,
.table-laps th {
  text-align: center;
  padding: 2px 25px;
}
