/* main styles */

:root {
    --green: #9ff1a5;
    --red: #ff9292;
	--hue: 223;
	--bg: hsl(var(--hue), 90%, 90%);
	--fg: hsl(var(--hue), 90%, 10%);
	--primary: hsl(var(--hue), 90%, 50%);
	--trans-dur: 0.3s;
	--trans-timing: cubic-bezier(0.65, 0, 0.35, 1);
	font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html,
body {
  overflow: hidden;
  background-color: #eee272;
  background-image: url('../img/Coming-Soon-Background.png');
  font-family: 'Raleway', sans-serif;
  font-size: 2.5vmin;
  font-weight: normal;
  height: 450px;
  width: 1260px;
  	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
  margin: 0;
  padding: 0;
}


/* countdown */

.countdown {
  	position: absolute;
  	margin: 20% 20%;
  	background: white;
  	border-radius: 10px;
  	padding: 1em;
  	width: 50%;
  	height: 15%;
  	min-width: 600px;
	text-align: center;
  	z-index: 10;
  	//box-shadow: 15px 15px orange;
  	border: 1px solid silver;
  	font-family: 'Righteous', sans-serif;
	font-size: 5vmin;
	font-color: var(--primary-color);
	box-shadow: rgba(238, 97, 22, 0.4) 5px 5px, rgba(238, 97, 22, 0.3) 10px 10px, rgba(238, 97, 22, 0.2) 15px 15px, rgba(238, 97, 22, 0.1) 20px 20px, rgba(238, 97, 22, 0.05) 25px 25px;
}

.countdown .count-down {
  display: flex;
  justify-content: center;
  margin-top: -25px !important;
}

.countdown h2 {
  position: relative;
  margin-top: -35px !important;
}

.countdown .count-down .container {
  width: 15%;
}
.countdown .count-down .container .a div {
  display: block;
  height: 100px;
  text-align: center;
  position: relative;
  font-size: 5vmin !important;
}
.countdown .count-down .container:nth-child(1) .a div::after {
  content: "Days";
  position: absolute;
  bottom: 20px;
  left: 0%;
  font-family: 'Raleway', sans-serif !important;
  font-size: 2vmin;
  font-weight: normal;
}
.countdown .count-down .container:nth-child(2) .a div::after {
  content: "Hours";
  position: absolute;
  bottom: 20px;
  left: 0%;
  font-family: 'Raleway', sans-serif !important;
  font-size: 2vmin;
  font-weight: normal;
}
.countdown .count-down .container:nth-child(3) .a div::after {
  content: "Minutes";
  position: absolute;
  bottom: 20px;
  left: 0%;
  font-family: 'Raleway', sans-serif !important;
  font-size: 2vmin;
  font-weight: normal;
}
.countdown .count-down .container:nth-child(4) .a div::after {
  content: "Seconds";
  position: absolute;
  bottom: 20px;
  left: 0%;
  font-family: 'Raleway', sans-serif !important;
  font-size: 2vmin;
  font-weight: normal;
}

@media screen and (max-width: 850px) {
  .countdown .count-down {
    justify-content: space-around;
  }
}
@media screen and (max-width: 600px) {
  .countdown .count-down {
    flex-wrap: wrap;
  }
  .countdown .count-down .container {
    width: 50%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 350px) {
  .countdown .count-down .container {
    width: 100%;
  }
}

/* owl carousel container */
/* https://codepen.io/byShep/pen/zYxgrbp */

.owl-carousel-container {
  position: absolute;
  background: white;
  border-radius: 25px;
  padding: 10px 10px;
  margin: 35% 5%;
  width: 60%;
  min-width: 700px;
  box-sizing: border-box;
  z-index: 10;
  box-shadow: 5px 5px silver;
  border: 1px solid black;
}

.carousel-item-bordered {
  border: 1px dotted black;
  padding: 5px !important;
  border-radius: 25px 25px 0 0;
}

.font-smaller {
  font-size: 1.5vmin;
  font-weight: normal;
}

.item-green {
  background-color: #30b32d; 
  color: #fff;
  border-radius: 15px 15px;
  padding: 5px 5px;
  margin-right: 15px;
  border: 1px dotted black;
}

.item-yellow {
  background-color: #ffdd00;
  border-radius: 15px 15px;
  padding: 5px 5px;
  margin-right: 15px;
  border: 1px dotted black;
}

.item-red {
  background-color: #f03e3e; 
  color: #fff;
  border-radius: 15px 15px;
  padding: 5px 5px;
  margin-right: 15px;
  border: 1px dotted black;
}

.item-rating-number {
  position: relative;
  background: #000;
  color: #fff;
  border-radius: 25px;
  margin-top: 5px;
  margin-left: 5px;
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 1.5vmin;
  font-weight: bold;
}

/* Modal Zoom Image */

.modal-body {
  text-align: center !important;
}

.zoomImageModal {
  cursor: pointer;
}
