@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,900&display=swap');

/* FIRE CSS */
:root {
  --text-color: white;
}

html,
body {
  background: black;
  color: var(--text-color);
  position: relative;
  box-sizing: border-box;
  margin: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  overflow: hidden;
  display: grid;
  padding: 4rem;
  grid-template-columns: auto 40rem;
  grid-template-rows: calc(100vh - 8rem);
  grid-template-areas: "content sidebar";
  background-image: url("../images/gradients/final/8.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.content {
  grid-area: "content";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar {
  grid-area: "sidebar";
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clockdate {
  display: flex;
  width: 400px;
  flex-direction: column;
  align-items: left;
}
.clock {
  font-style: normal;
  font-weight: bold;
  font-size: 130px;
  line-height: 100px;
  display: flex;
  margin-left: -10px;
}
.minutes {
  opacity: 0.5;
}
.date {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.8);
}

.card {
  background: rgba(255, 255, 255, 0.31);
  /* background: rgba(255, 255, 255, 0.911); */
  backdrop-filter: blur(50px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.card-1 {
  height: 65%;

  
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
  padding: 20px;
}
.card-2 {
  height: 30%;
	display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-content{
	display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
}

.hoursInfo{
  width: 50%;
  font-size: 14px;
}
.hoursDetailsIcon{
  height: 40px;
  max-height: 40px;
}
.hoursInfo .hoursDetails{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 10px;
}
.valueHours{
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-weight: 400;
}
.card-2 .label{
  font-size: 15px;
  font-weight: 600;
  opacity: .7;
  margin-bottom: 2px;
}
.card-2 .value{
  font-size: 18px;
}


.contactsInfo{
  width: 50%;
  font-size: 24px;
}

.contacts {
  opacity: 0.8;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 50px;
}
.label {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0px;
}
.value {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 400;
}
.value > img {
  margin-right: 10px;
}
body .loginOverlay,
body .loginOverlay *{
  display: none;
}

body.login .loginOverlay{
	display: block;
  background: linear-gradient(36deg, #5a5a5a9a 21%, #ffffffc2 100%) !important;
	backdrop-filter: blur(5px) !important;
	-webkit-backdrop-filter: blur(5px) !important;
  position:fixed;
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  z-index:100000;
  padding: 3rem;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@keyframes slide-top {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.login .loginOverlay *{
  display: block;
}
.anim{
  opacity: 0;
  animation-name: slide-top;
  animation-duration: .4s;
  animation-fill-mode:forwards;
  position:relative;
  z-index:100002;
}
.welcome{
  opacity: 0;
  margin-top: 0px;
  font-size: 4em;
  font-weight: 500;
  animation-name: slide-top;
  animation-duration: .8s;
  animation-fill-mode:forwards;
  margin-bottom: 0px;
  margin-left: 1rem;
  position:relative;
  z-index:100002;
}
@keyframes pulse-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.animgradient{
	display: block;
  background: linear-gradient(90deg, #9afcff67 0%, #ffffff00 100%) !important;
  position:fixed;
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  z-index:100001;
  opacity: 0;

  animation-name: pulse-in;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode:forwards;
}
