@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body, html {
  font-family: "Montserrat", sans-serif;
}

.btn-back-to-top {
  width: 2.5rem; 
  height: 2.5rem;
}

.main-header {
  min-height: calc(100vh - 0.5rem) !important;
  margin: 0.25rem !important;
}

@media (min-width: 768px) {
  .main-header-md {
    min-height: calc(100vh - 1rem) !important;
    margin: 0.5rem !important;
  }
}

@media (min-width: 1200px) {
  .main-header-xl {
    min-height: calc(100vh - 2rem) !important;
    margin: 1rem !important;
  }
}

.text-gray {
  color: #64748B;
}

.bg-gray {
  background: #64748B;
}

.text-gray-2 {
  color: #f8fafc;
}

.bg-gray-2 {
  background: #f8fafc;
}

.light-browser-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #f0f2f5 !important;
  padding: 10px !important;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.light-browser-footer > img {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.dark-browser-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #101d2d !important;
  padding: 10px !important;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.dark-browser-footer {
  border: 0.01px solid #101d2d !important;
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important; 
}

.dark-browser-footer > img {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

@media (min-width: 992px) { 
  .bs-dropdown-min-width-40rem {
    --bs-dropdown-min-width: 40rem;
  }
}


.loader-wrapper {
    position: absolute !important;
   /* width: 100vw;
    height: 100vh;*/
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    background-color: #E2D3B0 !important;
    display:flex;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2000 !important;
}

.loader {
    display: inline-block !important;
    width: 30px !important;
    height: 30px !important;
    position: relative !important;
    border: 4px solid #Fff !important;
    animation: loader 2s infinite ease !important;
}

.loader-inner {
    vertical-align: top !important;
    display: inline-block !important;
    width: 100% !important;
    background-color: #fff !important;
    animation: loader-inner 2s infinite ease-in !important;
}

@keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
}

@keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
}

.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #E2D3B0;
  /* --bs-btn-bg: #BA8733; */
  --bs-btn-border-color: #E2D3B0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #E2D3B0;
  --bs-btn-hover-border-color: #E2D3B0;
  --bs-btn-focus-shadow-rgb: 216, 216, 83;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #E2D3B0;
  --bs-btn-active-border-color: #E2D3B0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #E2D3B0;
  --bs-btn-disabled-border-color: #E2D3B0;
}

.logo{
background-color: #fff;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	left:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	/* box-shadow: 2px 2px 3px #999; */
    z-index:100;
}

.my-float{
	margin-top:16px;
}

.count-down {
  width: 550px;
  /* height: 378px; */
  margin: auto;
  padding: 20px;
}
.count-down .flipdown {
  margin: auto;
  margin-top: 30px;
}
.count-down h1 {
  text-align: center;
  font-weight: 400;
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (max-width: 550px) {
  .count-down {
      width: 100%;
      /* height: 362px; */
  }
  .count-down h1 {
      font-size: 2.5em;
  }
}


.live-icon {
  display: inline-block;
  position: relative;
  top: calc(50% - 5px);
  background-color: red;
  width: 10px;
  height: 10px;
  margin-left: 20px;
  border: 1px solid rgba(black, 0.1);
  border-radius: 50%;
  z-index: 1;
  &:before {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(red, 0.6);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: live 2s ease-in-out infinite;
    z-index: -1;
  }
}

@keyframes live {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(3.5, 3.5);
    background-color: rgba(red, 0);
  }
}

.btn {
  display: block;
  font-weight: 700;
  position: relative;
  padding: 13px 25px;
  background-color: white;
  text-decoration: none;
  color: #333;
  border-radius: 50px;
  border: 1px solid white;
  box-shadow: 0px 2px 0px darken(white, 10%);
  transition: all 0.2s;
  z-index: 1;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);

  &:hover {
    transform: translateY(-5px);
    padding: calc(13px * 1.2) calc(25px * 1.2);
    padding-right: calc(22px * 1.2);
    background-color: white;
    border: none;
    box-shadow: 0px 5px 10px darken(white, 7%);
  }

  &:hover > span:before {
    animation: none;
  }

  &:active {
    transform: translateY(0px);
    padding: calc(13px * 0.95) calc(25px * 0.95);
    box-shadow: inset 0px 2px 1px darken(white, 10%);
  }
}

.btn_transparent {
  border: 0px;
  border-radius: 0px;
  padding: 13px 25px;
  background-color: rgba( #fff, 0);
  color:  #fff;
  box-shadow: none;
  &:hover {
    box-shadow: none;
    background-color: inherit;
  }
}

.btn_live {
  padding-right: 22px;
}

