:root {
  --width: 325px;
  font-family: "Times New Roman", Times, serif;
}
* {
  padding: 0;
  margin: 0;
}
td {
  border: 1px solid black;
}
img {
  cursor: pointer;
}
#tv {
  padding: 3px;
}
#loading_con {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(94, 167, 255);
}
#loading_text {
  font-size: 3vh;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vh;
  height: 52vh;
  left: 50%;
  top: 50%;
  margin-left: -40vh;
  margin-top: -26vh;
  background-color: rgb(255, 252, 245);
  border: 1px solid black;
  font-weight: bolder;
  border-radius: 50%;
  overflow: hidden;
}
#close_button {
  text-align: center;
  text-decoration: none;
  border: none;
  color: grey;
  background-color: rgba(0, 0, 0, 0);
  font-size: 30px;
}
#close_button:hover {
  transition: all 0.5s;
  color: black;
  cursor: pointer;
}
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}
.item {
  cursor: pointer;
  user-select: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.1s ease;
}

.item:hover {
  transform: translateY(-5px);
}

@keyframes show {
  100% {
    opacity: 1;
  }
}
@keyframes mymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.announce {
  opacity: 0;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 350px;
  right: 0;
  bottom: 0;
  background-color: whitesmoke;
  border-radius: 5%;
  margin: 0 50px 50px 0;
  box-shadow: 0 0 10px 0px black;
}
.close_announce {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  align-self: flex-end;
  margin: 15px 20px 5px 0;
  width: 35px;
  height: 25px;
  border: 1px solid darkblue;
  color: darkblue;
}
.close_announce:hover {
  transition: 0.2s ease all;
  color: white;
  background-color: darkblue;
  cursor: default;
}
.announce_text {
  font-weight: bolder;
  font-size: 20px;
  height: 100%;
  text-align: left;
  padding: 15px;
}
.contact_info {
  font-size: 18px;
  color: rgb(0, 68, 163);
}
#fb_icon {
  font-size: 20px;
}

.announce_ok {
  height: 25px;
  width: 100px;
  text-decoration: none;
  border: 1px solid darkblue;
  background-color: white;
  margin: 0 15px 15px 0;
  align-self: flex-end;
}
.announce_ok:hover {
  transition: 0.2s ease all;
  background-color: darkblue;
  color: white;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 400px) {
  :root {
    --width: 250px;
  }
}
@media only screen and (max-width: 300px) {
  :root {
    --width: 200px;
  }
}
