﻿body {
  background-color: #fef9f8;
  overflow-x: hidden;

}

.bgSmokeWhite {
  background-color: whitesmoke;
}

.bgWhite {
  background-color: white;
}

.padding {
  padding: 10px;
}

.navbarLink {
  color: white !important;
}

.navbarLink:hover {
  font-weight: bold !important;
}


/*Box shadow form Search Bar*/

.divShadow {
  border-radius: 5px 0 5px 0;
  box-shadow: 0 0 0 0 rgb(0 0 0 / 20%), 0px 6px 0px 7px rgb(0 0 0 / 19%);
  /* box-shadow: 5px 2px 10px #888888; */
}

.headerShadow {

  border-radius: 0 10px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /*box-shadow: 5px 2px 10px #888888;*/
}

.m-btn {
  margin-top: 35px;
}

.requiredfiedsignafter::after {
  content: " *";
  color: red;
}


.content-header {
  position: relative;
  padding: 15px 15px 10px 20px;
  /*margin-left: 10px;*/
  border-radius: 0 10px 0 10px;
  box-shadow: inset 0 0 5px rgba(53, 86, 129, 0.5);
  font-family: 'Muli', sans-serif;
  font-weight: normal;
}

.logo {
  float: left;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  padding: 0 10px;
  width: 210px;
  font-family: 'Kaushan Script', cursive;
  font-weight: 500;
  height: 60px;
  display: block;
}

.icon {
  width: 50vh;

  height: 100vh;
  width: 50%;
  height: 100%;

  /*margin-right: 10px;
  margin-top: 10px;*/
}


/*Alert Snackbar Error*/

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  /*background-color: #ffcccc;
  color: #ff3333;*/
  color: #D8000C;
  background-color: #FFBABA;

  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 25%;
  bottom: 30px;
  font-size: 17px;

}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}



@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/*_____________________________*/

.requiredfied::after {
  content: " *";
  color: red;
}

.TopRowHeading {
  background-color: whitesmoke;
  text-align: center;
  border-radius: 0 10px 0 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* checkbox */

input[type=checkbox] {
  /* Double-sized Checkboxes */
  -ms-transform: scale(1.5);
  /* IE */
  -moz-transform: scale(1.5);
  /* FF */
  -webkit-transform: scale(1.5);
  /* Safari and Chrome */
  -o-transform: scale(1.5);
  /* Opera */
  transform: scale(1.5);
  padding-left: 2px;
}

/* Might want to wrap a span around your checkbox text */
.checkboxtext {
  /* Checkbox text */
  font-size: 100%;
  display: inline;

}

/* ------------------------------------ */

.style-3:before {
  content: "";
  border-top: 1px solid black;
  position: absolute;
  width: 300%;
  top: 35%;
  left: -100%;
  z-index: -999;
}

.style-3:after {
  content: "";
  border-bottom: 1px solid black;
  position: absolute;
  width: 300%;
  bottom: 35%;
  left: -100%;
  z-index: -999;
}


/* On screens that are 991px wide or less, the background color is olive */
@media screen and (max-width: 991px) {
  #CityActvDiv {
    margin-top: 0 !important;
  }

  #CityBtnDiv {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  #CountryActvDiv {
    margin-top: 0 !important;
  }

  #CountryBtnDiv {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  #ProfActvDiv {
    margin-top: 0 !important;
  }

  #ProfBtnDiv {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  #UserActvDiv {
    margin-top: 5px !important;
  }

  #UserBtnDiv {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  #SearchBtnDiv {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
  }

}