* {
  /* color: var(--c9);*/
  /*font-size: 18px;
  line-height: 28px;*/
}

  *:focus {
    outline: none !important;
  }

body {
  background-color: #E3E5EB; /*var(--c13);*/
  padding-top: 90px;
  /*margin-top: 120px;*/
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.08);
}


.card-header {
  border: none;
  font-weight: bold;
  background-color: var(--c13);
  height: 60px;
  line-height: 45px;
}

  .card-header:first-child {
    border-radius: 12px 12px 0 0;
  }

.card-body {
  padding: 20px;
}

.card-footer {
  border: none;
  background-color: var(--c13);
  height: 60px;
  line-height: 45px;
}

  .card-footer:last-child {
    border-radius: 0 0 12px 12px;
  }


hr {
  height: 3px !important;
  margin: 9px 0 9px -10px;
  background: linear-gradient(to right, rgba(25, 40, 93, .4), rgba(54, 81, 150, 0)) !important;
}


h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}

h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}

h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}

.nav-form-control {
  color: #fff !important;
  height: 50px;
  padding: 25px;
  border-radius: 25px !important;
  border: none !important;
  background-color: rgba(255, 255, 255, 0.25) !important;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  transition: all linear .1s;
}

  .nav-form-control::-webkit-input-placeholder {
    color: #fff !important;
    opacity: 1;
  }

  .nav-form-control::placeholder {
    color: #fff !important;
    opacity: 1;
  }

  .nav-form-control:-ms-input-placeholder {
    color: #fff !important;
    opacity: 1;
  }

  .nav-form-control::-ms-input-placeholder {
    color: #fff !important;
    opacity: 1;
  }


  .nav-form-control:focus {
    background-color: #ffffff !important;
    color: #19285d !important;
  }

.text-success {
  color: var(--c1) !important;
}

.text-warning {
  color: var(--c3) !important;
}

.text-muted {
  color: var(--c11) !important;
}


.font-weight-normal {
  font-weight: 300;
}

.font-weight-bold {
  font-weight: 500;
}

.font-weight-bolder {
  font-weight: 700;
}

.font-weight-black {
  font-weight: 900;
}

.text-smaller {
  font-size: 16px;
  line-height: 26px;
}

.text-small {
  font-size: 14px;
  line-height: 24px;
}

.text-mini {
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
}

ol, ul {
  margin: 0 0 1.5em;
  padding: 0;
  counter-reset: item;
}
  /*
  ul > li {
    margin: 0;
    list-style-type: none;
    padding: 0 0 0 1em;
    text-indent: -1em;
  }
  */
  /*
  ul > li:before {
      display: inline-block;
      width: 1em;
      padding-right: 0.5em;
      font-weight: bold;
      text-align: right;
      text-indent: -1em;
      content: "•";
    }
   */
  ol > li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: -1em;
    list-style-type: none;
    counter-increment: item;
  }

    ol > li:before {
      display: inline-block;
      width: 1em;
      padding-right: 0.5em;
      font-weight: bold;
      text-align: right;
      text-indent: -1em;
      content: counter(item) ".";
    }

/* nav
box-shadow: 0 2px 14px 0 #cedde8;
  */




/*
.btn-normal {
  color: #fff;
  font-weight: bold;
  height: 50px;
  margin: 26px 470px 53px 1px;
  padding: 10px 27.5px 14px 28.5px;
  border-radius: 25px;
  border: none;
  background-image: linear-gradient(to bottom, var(--c3) 1%, var(--c4));
  transition: .5s;
  position: relative;
  background-size:100%;
}

  .btn-normal:before {
    color: red;
    background-image: linear-gradient(to right, var(--c1) 1%, var(--c2));
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -100;
    opacity: 0;
  }
  .btn-normal:hover:before {
opacity:1;  }*/


/* BUTTONS */

/* Primary button */
.btn {
  font-weight: bold;
  height: 50px;
  padding: 10px 25px 10px 25px;
  border-radius: 25px;
  border: none;
  background-size: 100%;
  cursor: pointer;
}

  .btn:disabled {
    color: var(--c9);
    background-color: var(--c13);
    background-image: none;
    opacity: 1;
  }

.btn-normal, .btn-primary {
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, var(--c3) 1%, var(--c4));
  background-image: linear-gradient(to bottom, var(--c3) 1%, var(--c4));
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transform: translate(0%,0%);
}

  .btn-normal:before, .btn-primary:before {
    border-radius: inherit;
    background-image: -webkit-linear-gradient(to right, var(--c1) 1%, var(--c2));
    background-image: linear-gradient(to right, var(--c1) 1%, var(--c2));
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    -moz-transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }

  .btn-normal:hover:before, .btn-primary:hover:before {
    opacity: 1;
  }

  .btn-normal:active:before, .btn-primary:active:before {
    opacity: 0;
  }

  .btn-normal:hover, .btn-primary:hover {
    color: #fff;
  }

.btn-facebook {
  background-color: var(--facebook-button);
  color: #fff;
}

  .btn-facebook:hover, .btn-facebookLactive {
    color: #fff;
    background-color: #375591;
  }


.btn-light {
  color: var(--c9);
  background: #fff;
  border: 3px solid var(--c13);
}

  .btn-light:hover, .btn-light:active {
    background-color: var(--c13);
    border: 3px solid var(--c13);
  }

.img-shadow {
  width: 100%;
  background-image: linear-gradient(to bottom, #00000000, #000000E0);
  height: 200px;
  position: absolute;
  bottom: 0;
  /*
  box-shadow: inset 10px 10px 5px #ccc;
  -moz-box-shadow: inset 10px 10px 5px #ccc;
  -webkit-box-shadow: inset 10px 10px 5px #ccc;
  -khtml-box-shadow: inset 10px 10px 5px #ccc;
  */
}

/* Secondary button */
.btn-secondary {
  color: var(--c1) !important;
  background-size: 100%;
  background: transparent;
  text-decoration: underline;
}

  .btn-secondary:hover {
    color: var(--c9) !important;
    background: transparent;
  }

/* FORMS */


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: var(--c16) !important;
}

.form-label {
  /*font-size: 16px;*/
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 3px;
}

.form-control {
  color: var(--c16);
  height: 68px;
  border-radius: 12px;
  box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2);
  background-color: var(--c13) !important;
  padding: 0 12px 0 12px;
  border: none;
  /* border: solid 3px transparent;*/
  font-size: 16px;
  margin-bottom: 30px;
}

  .form-control:hover, .form-control:active, .form-control:focus {
    box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2), inset 0px 0px 0px 3px var(--c3);
    /*border: solid 3px var(--c3);*/
  }

  .form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: var(--c8);
    border-width: 3px;
    box-shadow: var(--c8) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
  }

  .form-control.is-invalid, .was-validated .form-control:invalid, .form-control.is-valid, .was-validated .form-control:valid {
    background-image: none;
  }

    .form-control.is-invalid:hover, .was-validated .form-control:invalid:hover {
      box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2), inset 0px 0px 0px 3px var(--c3), var(--c8) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
    }


    .form-control.is-invalid:active, .form-control.is-invalid:focus,
    .was-validated .form-control:invalid:active, .was-validated .form-control:invalid:focus {
      box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2), inset 0px 0px 0px 3px var(--c3), var(--c8) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
    }


.valid-tooltip, .invalid-tooltip {
  background: transparent;
  margin-top: -32px;
  font-size: 14px;
  font-weight: bold;
}

.form-control.is-valid, .was-validated .form-control:valid {
  border-color: var(--c15);
  border-width: 3px;
  box-shadow: var(--c15) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
  ;
}

  .form-control.is-valid:hover, .was-validated .form-control:valid:hover {
    box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2), inset 0px 0px 0px 3px var(--c3), var(--c15) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
  }


  .form-control.is-valid:active, .form-control.is-valid:focus,
  .was-validated .form-control:valid:active, .was-validated .form-control:valid:focus {
    box-shadow: inset 0 -3px 0 0 rgba(165, 170, 183, 0.2), inset 0px 0px 0px 3px var(--c3), var(--c15) 0 30px, inset 0 -3px 0 0 rgb(165 170 183 / 20%);
  }

input[type='checkbox'] {
  width: 30px;
  height: 30px;
  margin-top: .25em;
  vertical-align: top;
  background-color: var(--c13);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

  ]

  input[type='checkbox']:hover, input[type='checkbox']:active, input[type='checkbox']:focus {
    border: solid 3px var(--c3);
  }


/* switch */

.form-switch .form-check-input {
  width: 30px;
  height: 30px;
  margin-top: .25em;
  vertical-align: top;
  background-color: var(--c11);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

#header-shape-gradient {
  --color-stop: #f12c06;
  --color-bot: #faed34;
}


input[type=checkbox].form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"), linear-gradient(to top, var(--c15) 0%, var(--c5) 100%);
}


.form-switch .form-check-input {
  width: 50px;
  margin-left: -50px;
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e    %3cdefs> <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" /> <stop offset="100%" style="stop-color:rgb(255,0,0);stop-opacity:1" /> </linearGradient> </defs> %3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); background-position: left center;
  */
  background-image: url("data:image/svg+xml,%3Csvg class='shadow' xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23fff'/%3E%3Cstop offset='100%25' style='stop-color:%23e8e8e8' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle r='3' fill='url(%23g)'/%3E%3C/svg%3E") !important;
  background-position: left center;
  border-radius: 2em;
  transition: background-position .15s ease-in-out;
}

  .form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3Csvg class='shadow' xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23fff'/%3E%3Cstop offset='100%25' style='stop-color:%23e8e8e8' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle r='3' fill='url(%23g)'/%3E%3C/svg%3E"), linear-gradient(to top, var(--c15) 0%, var(--c5) 100%) !important;
  }


.form-check-label {
  margin: 4px 0 0 10px;
}

/* MODAL */
.modal-content {
  border-radius: 10px;
}


.modal-header {
  border: none;
  border-radius: 10px 10px 0 0;
  background-color: var(--c13);
}

h5 {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #19285d;
}

h6 {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #19285d;
}

.modal-header .btn-close {
  width: 10px;
  height: 10px;
  padding: 10px 9px 9px;
  border-radius: 6px;
  border: solid 3px #e3e5eb;
  background-color: #fff;
}

.modal-body {
  font-size: 16px;
  line-height: 1.6;
}

.modal-footer {
  border: none;
}

.card-social-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.08);
}

.avatar-xl {
  height: 40px;
  width: 40px;
}

.avatar {
  position: relative;
  display: inline-block;
}

.avatar-xl[class*="status-"]:before {
  border: 2px solid var(--falcon-avatar-status-border-color);
  height: 13px;
  width: 13px;
  right: -2px;
  top: -2px;
  border: solid 2px #ffffff;
  background-image: linear-gradient(to top, #01af3e 0%, #1cd95f 100%);
}

.avatar.status-online:before {
  background-color: #00d27a;
}

.avatar[class*="status-"]:before {
  content: "";
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}

.avatar img {
  -o-object-fit: cover;
  object-fit: cover;
}

.avatar img, .avatar .avatar-name {
  width: 100%;
  height: 100%;
}

.avatar img {
  display: block;
}

.p-3 {
  padding: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}


.chat-contact-body {
  position: relative;
  min-width: 0;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.subtitle {
  font-size: 12px;
  color: var(--c11);
  line-height: normal;
}

.Oval-Copy {
  width: 50px;
  height: 50px;
  margin: 0 17px 0 0;
  padding: 13px;
  background: #ee7a56; /* background-image: linear-gradient(to top, #01af3e, #1cd95f);*/
}

.btn-toolbar {
  width: 50px;
  height: 50px;
  padding: 10px 0 10px 0;
  text-align: center;
  display: inline-block;
}

.btn-green {
  background-color: var(--tool-green);
  transition: all linear .1s;
}

  .btn-green:hover {
    color: #fff;
    transition: all linear .1s;
    background-image: linear-gradient(to top, var(--c15) 0%, var(--c5) 100%);
  }

.btn-gray {
  color: #fff;
  background-color: #ffffff30;
  transition: all linear .1s;
}

  .btn-gray:hover {
    color: #fff;
    transition: all linear .1s;
    background-image: linear-gradient(to right, var(--c5) 0%, var(--c2) 100%);
  }

/* DROPDOWN MENU */
.dropdown-menu {
  box-shadow: 0 2px 20px 0 rgba(25, 40, 93, 0.15);
  border: none;
  border-radius: 12px;
}

/*
.dropdown-menu-arrow {
  top: -25px;
  left: 50%;
  width: 0;
  height: 0;
  position: relative;
}

  .dropdown-menu-arrow:before,
  .dropdown-menu-arrow:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    z-index: 1001;
  }

  .dropdown-menu-arrow:after {
    bottom: -18px;
    right: -8px;
    border-bottom-color: #fff;
  }

  .dropdown-menu-arrow:before {
    bottom: -17px;
    right: -8px;
    border-bottom-color: rgba(0,0,0,.15);
  }
  */
.dropdown-item {
  font-weight: bold;
  color: var(--c9) !important;
  width: calc(100% - 20px);
  margin-left: 10px;
  border-left: 2px solid transparent;
  line-height: 58px;
}

  .dropdown-item:focus, .dropdown-item:hover, .dropdown-item.selected {
    color: var(--c1) !important;
    background-image: linear-gradient(90deg, var(--c2) 0px, var(--c1) 3px, var(--menu-gradient-start) 3px, var(--menu-gradient-end) 100%);
  }

.dropdown-header {
  background-color: var(--c13);
  font-size: 1rem;
  line-height: 58px;
  font-weight: bold;
  margin: -.5rem 0 .5rem 0;
  border-radius: 12px 12px 0 0;
  padding: 0 1.5rem;
  color: var(--c9) !important;
}
/* ALERTS */
.alert {
  border-radius: 12px;
  font-weight: bold;
  color: var(--c9);
}

.alert-warning {
  background-color: var(--alert-warning);
  border: solid 3px var(--alert-warning-border);
}

.alert-info {
  background-color: var(--alert-info);
  border: solid 3px var(--alert-info-border);
}

.alert-success {
  background-color: var(--alert-success);
  border: solid 3px var(--alert-success-border);
}

.alert-danger {
  background-color: var(--alert-danger);
  border: solid 3px var(--alert-error-border);
}

.alert-light {
  background-color: var(--alert-light);
  border: solid 3px var(--alert-light-border);
}


.searchbox {
  padding-left: 50px;
  background-image: url('/images/icons-white/search.svg');
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: 15px;
}

  .searchbox:active, .searchbox:focus {
    padding-left: 50px;
    background-image: url('/images/icons-green/search.svg');
    background-repeat: no-repeat;
    background-position-x: 15px;
    background-position-y: 15px;
  }


@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }

  .searchbox {
    max-width: 50px;
    padding: 0;
    float: right;
    color: transparent !important;
    padding-right: 10px !important;
  }

    .searchbox:active, .searchbox:focus {
      max-width: 120px;
      width: 120px;
    }

    .searchbox::-webkit-input-placeholder {
      color: transparent !important;
    }

    .searchbox:-moz-placeholder {
      color: transparent !important;
    }

    .searchbox::-moz-placeholder {
      color: transparent !important;
    }

    .searchbox:-ms-input-placeholder {
      color: transparent !important;
    }


  #dropdownProfileBlock {
    width: 100%;
  }
}

.no-border-radius {
  border-radius: 0;
}

.notification-indicator {
  position: relative;
}

.notification-indicator-primary::before {
  background-color: #00d27a;
}

.notification-indicator::before {
  position: absolute;
  content: '';
  height: 13px;
  width: 13px;
  right: 3px;
  top: 28px;
  border: solid 2px #ffffff;
  background-image: linear-gradient(to top, #01af3e 0%, #1cd95f 100%);
  border-radius: 50%;
}


.autocomplete {
  z-index: 2000;
  box-shadow: 0 2px 20px 0 rgb(25 40 93 / 15%);
  border: none;
  border-radius: 12px;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 10px 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
}

  .autocomplete > .dropdown-item {
    font-weight: normal;
  }
