* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

/*General styles*/

@font-face {
  font-family: "Sriracha";
  src: url('../fonts/Sriracha/Sriracha-Regular.ttf') format('truetype')
}

@font-face {
  font-family: "Montserrat";
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype')
}

a {
  text-decoration: none !important;
  outline: none !important;
  cursor: pointer;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0
}



h1,
h2,
h3,
h4,
h5,
h6,
p,
address {
  margin-bottom: 0;
}

p {
  color: #989898;
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-size: 18px;
}

button {
  cursor: pointer;
  outline: none !important
}

input::placeholder {
  color: #BBBBBB !important;
  font-size: 14px
}

textarea::placeholder {
  color: #BBBBBB !important;
  font-size: 14px
}

input[type=checkbox] {
  cursor: pointer;
  position: relative;
  bottom: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  width: 15px;
  height: 15px;
  outline: none;
  transition: 0.3s all linear;
}

input[type=checkbox]:checked {
  background: #F4D916;
  border: none
}

input[type=checkbox]:checked::before {
  content: "\f00c";
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  top: 2px;
  left: 4px;
  color: #fff;
  font-weight: 900;
  font-size: 8px;
  z-index: 1;
}

input[type=radio] {
  cursor: pointer;
  position: relative;
  bottom: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  width: 15px;
  height: 15px;
  outline: none;
  transition: 0.3s all linear;
}

input[type=radio]:checked {
  background: #fff;
  border: 1px solid #F4D916
}

input[type=radio]:checked::before {
  content: " ";
  width: 9px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #F4D916;
  height: 9px;
  border-radius: 50%;
  z-index: 1
}

.form-group .custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  height: 40px;
  padding-left: 8px;
  width: 100%;
  transition: all 0.2s linear;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group textarea.custom {
  min-height: 150px;
  max-height: 250px;
  padding: 5px 10px !important
}

.form-group textarea.custom.lg {
  min-height: 200px;
  max-height: 350px;
}

.form-group select.custom {
  background: #fff url("../imgs/icon/down-arrow.svg") no-repeat right .75rem center;
  background-size: 16px;
}

.form-control:focus {
  color: #989898;
  background-color: #fff;
  border-color: #F4D916;
  outline: 0;
  box-shadow: none;
}

.form-group .custom:focus {
  border-color: #F4D916
}

.select2 {
  width: 100% !important;
  text-align: left;
  vertical-align: top !important
}

.select2 .select2-selection {
  height: 40px !important;
  line-height: 40px !important;
  border: 1px solid #ccc;
  border-radius: 2px !important
}

.select2 .select2-selection__rendered {
  height: 40px !important;
  line-height: 40px !important;
  color: #666
}

.select2 .select2-selection__arrow {
  height: 40px !important;
  right: 10px !important
}

.fa-phone {
  transform: rotateY(180deg)
}

.background {
  background: center center no-repeat;
  background-size: cover;
}

/* Alerts */

/*
.require-icon {
  font-size: 12px;
  vertical-align: top;
}

.info-icon {
  font-size: 18px;
  vertical-align: top;
  color: #f27171;
}
*/

/*
.alerts .alert {
  position: fixed;
  padding: 0;
  bottom: 30px;
  right: 0;
  z-index: 111;
  width: auto;
  height: auto;
  border: none;
  border-radius: 5px 0 0 5px;
}

.alert.fade {
  transition: all 0.8s linear;
}

.alerts .alert .info {
  padding: 10px;
  border-radius: 5px 0 0 5px;
  width: 380px;
  min-height: 50px;
  float: right;
  position: relative;
  transition: all 0.8s linear;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.2)
}

.alerts .alert.success .info {
  background: #1cc664
}

.alerts .alert.warning .info {
  background: #e04848
}

.alert.fade .info {
  right: -100%
}

.alert.show .info {
  right: 0
}

.alerts .alert .info p {
  color: #fff;
  padding-left: 45px;
  padding-top: 3px
}

.alerts .alert .close-alert {
  width: 30px;
  height: 30px;
  background: #fff;
  border: none;
  color: #333;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px
}

.alerts .alert.success .close-alert {
  color: #1cc664
}

.alerts .alert.warning .close-alert {
  color: #e04848
}*/

.fixed-alart {
  font-size: 14px;
  margin-bottom: 0;
  position: relative;
  top: 0;
  background-color: #d1ecf1;
  border-color: #d1ecf1;
  color: #0c5460;
  border-radius: 0;
}

.fixed-alart a {
  font-size: 16px;
  transition: .5s;
}

img {
  width: 100%;
  height: auto;
}

input::placeholder {
  color: #888;
  font-size: 14px
}

button {
  outline: none !important;
  cursor: pointer
}

.none {
  display: none;
}

.no-padding {
  padding: 0
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clear-both {
  clear: both;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.map-ifram {
  height: auto;
  width: 100%
}

main-color {
  color: #F4D916;
}

select {
  outline: none;
}

input[type=checkbox] {
  cursor: pointer;
  position: relative;
  bottom: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid#22A5C7;
  border-radius: 0px;
  background: #fff;
  width: 19px;
  height: 19px;
  outline: none;
  transition: 0.3s all linear;
}

input[type=checkbox]:checked {
  background: #22A5C7;
  border: none
}

input[type=checkbox]:checked::before {
  content: "\f00c";
  font-family: Font Awesome\ 5 Free;
  position: absolute;
  top: 1px;
  left: 3px;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  z-index: 1;
}

input[type=radio] {
  cursor: pointer;
  position: relative;
  bottom: -1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  width: 15px;
  height: 15px;
  outline: none;
  transition: 0.3s all linear;
}

input[type=radio]:checked {
  background: #fff;
  border: 1px solid #333;
}

input[type=radio]:checked::before {
  content: " ";
  width: 9px;
  position: absolute;
  top: 2px;
  left: 2px;
  background: #333;
  height: 9px;
  border-radius: 50%;
  z-index: 1
}

input.warn {
  border-color: #e04848 !important
}

.form {
  padding: 22px 8px;
}

.form-group {
  margin-bottom: 20px
}

.form-group .custom {
  width: 100%;
  border-radius: 5px;
  outline: none;
  border: 1px solid#22A5C7;
  height: 40px;
  background: #ffffff;
  padding: 0 8px;
  display: inline-block;
}


.form-group .custom:focus,
.form-group .custom:active {
  border: 1px solid #1e807b;
}

.custom-file-label::after {
  color: #ffffff;
  background: #22A5C7;
  border-color: #22A5C7;
}

.custom-file-label {
  color: #bbb;
}

.form-group .lable-admin {
  color: #22A5C7;
  font-size: 20px;
}

.lable-textarea {
  vertical-align: top;
}

.form-group textarea.custom-textarea {
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  outline: none;
  border: 1px solid #41B3AE;
  background: #fff;
  padding: 8px;
  display: inline-block;
  min-height: 100px;
  max-height: 150px;
}

.form-group .custom-textarea:focus,
.form-group .custom-textarea:active {
  border: 1px solid#22A5C7;
}

.fa-phone {
  transform: rotateY(180deg)
}

a.call-phone {
  color: inherit;
}

.yellow-color {
  color: #F4D916;
}

.black-color {
  color: #231F20;
}

/*
.alert-require {
  font-size: 14px;
}

.alert {
  color: #e04848;
  font-size: 14px;
  padding: 0rem;
}
*/

/*modal*/

.modal {
  z-index: 99999;
}

.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

/*button*/

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {

  /*border: none;*/
  color: #f4d916;
  background-color: #231f20;
  border-color: #f4d916;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none;
}

.ser-block {
  display: none;
}

iframe {
  height: 100%;
  width: 100%;
}
.number_ltr {
  direction: ltr !important;
  unicode-bidi: embed;
  color:white !important;
}