.welcomebody {
  display: flex;
  min-height: calc(100vh - 200px);
  flex-direction: column;
} 

.welcomebody main {
  flex: 1 0 auto;
}

.welcomebody h1.title,
.footer-copyright a {
  font-weight: 900;
}

/* start welcome animation */

.welcomebody {
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.welcomebody .splash {
  height: 0px;
  padding: 0px;
  border: 130em solid white;
  position: fixed;
  left: 50%;
  top: 100%;
  display: block;
  box-sizing: initial;
  overflow: hidden;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: puff 0.5s 1.8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 2.3s linear forwards;
}

.welcomebody #welcomein {
  background: url('/images/hero-logo-55.png');
  width: 55px;
  height: 55px;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards, hide 2s 2.9s ease forwards;
}
   
@keyframes init {
  0% {
    width: 0px;
    height: 0px;
  }
  100% {
    width: 55px;
    height: 55px;
    margin-top: 0px;
    opacity: 1;
  }
}

@keyframes puff {
  0% {
    top: 100%;
    height: 0px;
    padding: 0px;
  }
  100% {
    top: 50%;
    height: 100%;
    padding: 0px 100%;
  }
}

@keyframes borderRadius {
  0% {
    border-radius: 50%;
  }
  100% {
    border-radius: 0px;
  }
}

@keyframes moveDown {
  0% {
    top: 50%;
  }
  50% {
    top: 40%;
  }
  100% {
    top: 100%;
  }
}

@keyframes moveUp {
  0% {
    background: url('/images/hero-logo-55.png');
    top: 100%;
  }
  50% {
    top: 40%;
  }
  100% {
    top: 50%;
    background: url('/images/hero-logo-55.png');
  }
}

@keyframes materia {
  0% {
    background: #17a2b8;
  }
  50% {
    background: #17a2b8;
    top: 26px;
  }
  100% {
    background: #17a2b8;
    width: 100%;
    height: 64px;
    border-radius: 0px;
    top: 26px;
  }
}

@keyframes moveIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
} 
  
  .ql-editor{
    font-family: 'Nunito';
    font-size: 1.1em;
  }

  #toolbar .ql-font span[data-label="Sans Serif"]::before {
    font-family: sans-serif;
  }
  
  #toolbar .ql-font span[data-label="Consolas"]::before {
    font-family: "Consolas";
  }
  
  #toolbar .ql-font span[data-label="Roboto"]::before {
    font-family: "Roboto";
  }
  
  #toolbar .ql-font span[data-label="Arial"]::before {
    font-family: "Arial";
  }

  #toolbar .ql-font span[data-label="times"]::before {
    font-family: 'Times New Roman';
  }
  /* Set content font-families */
  
  .ql-font-sans {
    font-family: sans-serif;
  }

  .ql-font-consolas {
    font-family: "Consolas";
  }
  
  .ql-font-roboto {
    font-family: "Roboto";
  }
  
  .ql-font-times {
    font-family: 'Times New Roman';
  }
  
  .ql-font-arial {
    font-family: "Arial";
  }

  .ql-font-nunito {
    font-family: "Nunito";
  }

.specialselect{
  background-color: white;
  color: black;
  font-weight: normal;
  border: 1px solid #ced4da;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(206, 212, 218);
    border-right-color: rgb(206, 212, 218);
    border-bottom-color: rgb(206, 212, 218);
    border-left-color: rgb(206, 212, 218);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding: 0.375rem 0.6rem 0.375rem 0.75rem;
    height: calc(2.25rem + 2px);
}


#bs-select-1::-webkit-scrollbar {
  width: 3px;
  
}

#bs-select-1::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}

#bs-select-1::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(29, 38, 45, 0.467);
}

.dropdown-header{
  color:#26323c;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 1.0em !important;
}

.dropdown-divider{
  border-top-width: 0px;
  border-top-style: none;
}

.dropdown-menu{
  background-color: #F2F8FF;
  border-radius: 5px;
  padding: 10px;
  max-height: 600px;
}

li .dropdown-item {
  padding-left: 1.5em !important;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: #E7EDF5;
  color: black !important;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff !important;
  text-decoration: none;
  background-color: #192736;
}

.specialoption{
  background-color: #F2F8FF;
  color: black !important;
  border-bottom: 0px !important;
  border-radius: 5px;
  height: 36px;
  padding: 8px 10px 0px 10px;
}

.specialspan{
  position: relative;
  top: -3px;
  margin-left: 5px;
}

.specialspandetails{
  position: absolute;
  top: 8px;
  left: 150px;
  color:#a5b2bb;
}

.specialimg{
  position: relative;
  top: 0px;
  margin-left: 5px;
}

.btn-special{
  background-color: white;
}

.btn-special:focus, .btn-special.focus {
  background-color: white;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0, 0, 0, 0.19);
  
}

.btn-special:not(:disabled):not(.disabled):active:focus, .btn-special:not(:disabled):not(.disabled).active:focus,
.show > .btn-special.dropdown-toggle:focus {
  background-color: white;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.float-warn{
	position:fixed;
	width:770px;
	height:60px;
	bottom:50px;
	left:50%;
  margin-left: -385px;
  padding-top: 14px;
	background-color: #13B112;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
  font-family: inherit;
}

.float-timer{
	position:fixed;
	width:770px;
	height:60px;
	bottom:50px;
	left:50%;
  margin-left: -385px;
	background-color: #fd7e14;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
  font-family: inherit;
}

.float{
	position:fixed;
	width:120px;
	height:60px;
	bottom:50px;
	left:20px;
	background-color: #fd7e14;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
  font-family: inherit;
}

.my-warn{
  font-size: 26px !important;
}

.my-float{
	margin-top:17px;
  font-size: 22px !important;
}

.hero-background {
  background: url('../../images/top-view.jpg') top right no-repeat; 
  background-size: cover; 
  position: relative;  
  color: #14acc2;
}

@media (max-width: 575.98px) {
  .hero-background {
    background: url('../../images/top-view-mobilet.jpg') bottom left no-repeat;
    background-size: cover; 
    position: relative;  
    color: #14acc2;
  }

  h1 {
    font-size: 2rem !important;
    text-shadow: 1px 1px 1px black !important;
  }

  h6 {
    font-size: 1.4rem !important;
    text-shadow: 1px 1px 1px black !important;
  }
}


