[data-tooltip]::before{
  background:#d9d9d9 !important;
}
[data-tooltip]::after{
  border-top-color: #d9d9d9 !important;
}
 /* ***********************  HOVER EFFECTS *********************** */
.hover-secondary:hover  {
  color: #635C7F!important;
}
.hover-primary:hover  {
  color: #6238d7!important;
}
/* ***********************  MENU HOVER EFFECT *********************** */
.menu-hover-effect * {
  box-sizing: border-box;
}
/* .menu-hover-effect li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 1.5em;
  padding: 0;
} */
.menu-hover-effect a {
 /*  padding: 0.5em 0; */
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  letter-spacing: 1px;
  text-decoration: none;
  padding-right: 0 !important; 
  padding-left: 0 !important;
}
.menu-hover-effect a:before,
.menu-hover-effect a:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.menu-hover-effect a:before {
  bottom: 0;
  display: block;
  height: 3px;
  width: 0%;
  content: "";
  background-color: #6238d7;
}
.menu-hover-effect a:after {
  left: 0;
/*   top: 0; */
 /*  padding: 0.5em 0; */
  position: absolute;
  content: attr(data-hover);
  color: #6238d7;
  white-space: nowrap;
  max-width: 0%;
  overflow: hidden;
}
.menu-hover-effect a:hover:before,
.menu-hover-effect .current a:before {
  opacity: 1;
  width: 100%;
}
.menu-hover-effect a:hover:after,
.menu-hover-effect .current a:after {
  max-width: 100%;
}


/* Demo purposes only */
/* html {
  height: 100%;
}
body {
  background-color: #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
  margin: 0;
  height: 100%;
}
 */

/* ***********************  ARROW LINK HOVER EFFECT *********************** */
.link-arrowed {
  display: flex;
  align-items: center;
}
.link-arrowed .arrow-icon {
  position: relative;
  top: -1px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.link-arrowed .arrow-icon-circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}
.link-arrowed:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}
.link-arrowed:hover .arrow-icon-circle {
  stroke-dashoffset: 0;
}

/* ***********************  MODAL POPUP *********************** */
#modalQuote .modal-popup .label-title {
  min-height: 3.75rem;
  height: 100%;
}

label.checkbox-invalid,
.btn-check:checked+label.checkbox-invalid, 
.btn-check:hover+label.checkbox-invalid{
  border: 2px solid red !important;
  background-color: rgb(240 90 90 / 8%) !important;
}

.btn-check.focus-new-page.label-check, .label-check input[type=text]{
  color: #815AF0!important;
}


#modalQuote .modal-body .checkbox-text.inputValid {
  font-family: "Red Hat Display", sans-serif;
}
#modalQuote .btn:disabled {
  background: #DCD9E5!important;
  border-color: #DCD9E5!important;
}
#modalQuote label {
  cursor: pointer;
}
/* ***********************  ANIMATIONS MODAL CONTENT *********************** */
.animate-modal-next {
  animation: fadeInContentNext 500ms ease-out backwards;
  overflow: hidden;
}

@keyframes fadeInContentNext {
  from {
    transform: translateX(250px);
    opacity: 0;
  }
  50% {
    transform: translateX(70px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

.animate-modal-back {
  animation: fadeInContentBack 500ms ease-out backwards;
  overflow: hidden;
}

@keyframes fadeInContentBack {
  from {
    transform: translateX(-250px);
    opacity: 0;
  }
  50% {
    transform: translateX(-70px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* ***********************  MODAL SCROLLBAR *********************** */

#modalQuote .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  height: 1px;
  padding-right: 0;
  margin-right: 1.5rem !important;
}

#modalQuote .modal-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

#modalQuote .modal-body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

#modalQuote .modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(129, 90, 240, 0.4);
}

#modalQuote .modal-body::-webkit-scrollbar-thumb:hover,
#modalQuote .modal-body::-webkit-scrollbar-thumb:active {
  background: rgba(129, 90, 240, 0.8);
}

/* ***********************  MEDIA SCREEN  *********************** */
@media (max-height: 804px){
  .modal-fullscreen-height {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-height .modal-content{
    border: none;
    border-radius: initial;
    height: 100%;
  }
}


