/* Custom scrollbar styles */
*::-webkit-scrollbar {
  width: 6px;
  height: 3px;
}

*::-webkit-scrollbar-thumb {
  background-color: #d1d0d0;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #a3a3a3;
}

*::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}

/* All Settings */

body {
  overflow-x: hidden;
  background-color: white !important;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: #FFFFFF;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
      sans-serif;
  font-size: 14px;
  color: #646464;
  line-height: 1.5;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
}

.center {
  padding-top: 30px;
  min-height: calc(100vh);
}

/* Color Filter */

.ik_bg_blue_one {
  background-color: #313D48;
}

.ik_bg_blue_two {
  background-color: #26333E;
}

.ik_bg_blue_three {
  background-color: #030D18;
}

.ik_bg_blue_four {
  background-color: hwb(211deg 2% 85% / 70%) !important;
}

.ik_clr_secondary {
  color: #dfdfdf;
}
.csPointer{
  cursor: pointer;
}

/* Includes */

.IKalert {
  display: none;
  position: fixed;
  bottom: -350px;
  right: -350px;
  width: 60%;
  border-radius: 5px;
  transition: all 0.5s;
  padding: 15px;
  box-shadow: 0px 0px 5px white;
  z-index: 9999;
}

@media only screen and (min-width:768px) {

  /* L */
  .IKalert {
    width: 400px;
  }
}

@media only screen and (max-width:767px) {

  /* S */
  .IKalert {
    width: 60%;
  }
}

.IKalertTopBar {
  display: none;
  position: fixed;
  width: 70%;
  padding: 15px;
  padding-left: 100px;
  padding-right: 100px;
  font-size: 20px;
  top: -100px;
  right: 15%;
  border-radius: 5px;
  transition: all 0.5s;
  box-shadow: 0px 0px 5px white;
  z-index: 9999;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  z-index: 999999999;
}

.loading {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(220deg 29% 90% / 50%);
}
.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: #9dff00;
}

.pl__ring--b {
  animation-name: ringB;
  stroke: #00319b;
}

.pl__ring--c {
  animation-name: ringC;
  stroke: #ffc400;
}

.pl__ring--d {
  animation-name: ringD;
  stroke: #ff0000;
}

/* Animations */
@keyframes ringA {
  from,
  4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%,
  54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%,
  to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@keyframes ringB {
  from,
  12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%,
  62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%,
  to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%,
  58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {
  from,
  8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%,
  50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

.loadingCenter {
  position: absolute;
  width: 200px;
  height: 200px;
  top: calc(50%- 100px);
  left: calc(50% - 100px);
  padding: 10px;
  animation: ids infinite;
  animation-duration: 700ms;
}

#rightBottom {
  display: none;
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  background-color: #440d0d;
  border-radius: 5px;
  color: azure;
  padding: 10px;
  z-index: 101;
}

#leftBottom {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
  font-size: 20px;
  border-radius: 50%;
  color: azure;
  z-index: 101;
}

#leftBottom>i {
  background-color: #25D366;
}

/* ToolTips */

.tooltips {
  position: relative;
}

.tooltips .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 1px 0;
  position: absolute;
  top: 0px;
  left: 110%;
  z-index: 1;
}

.tooltips:hover .tooltiptext {
  visibility: visible;
}

.tooltips .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 100%;
  /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}

/* Display Important */

.importantNone {
  display: none !important;
}

.importantFlex {
  display: flex !important;
}

.importantBlock {
  display: block !important;
}

/* Button Width */

.buttonWidth {
  position: relative;
  width: 87px;
}

.buttonWidth>.buttonTopIcon {
  position: absolute;
  top: -20px;
  left: calc(50% - 7px)
}

/* Btn outline  */

.btn-outline-success-select {
  background-color: #198754;
  color: white;
}

.btn-outline-success-select:hover {
  background-color: transparent;
  color: #198754;
}

.btn-outline-primary-select {
  background-color: #0D6EFD;
  color: white;
}

.btn-outline-primary-select:hover {
  background-color: transparent;
  color: #0D6EFD;
}

.btn-outline-secondary-select {
  background-color: #6C757D;
  color: white;
}

.btn-outline-secondary-select:hover {
  background-color: transparent;
  color: #6C757D;
}

/* Radius */

.borderRadiusTop {
  border-left: 20px solid white !important;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 36px 138px;
  border-right: 20px solid white !important;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 36px 138px;
}

.borderRadiusBottom {
  border-left: 20px solid white !important;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 36px 138px;
  border-right: 20px solid white !important;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 36px 138px;
}

/* Extra Button */

.extraButton {
  cursor: pointer;
  min-width: 20%;
  width: auto;
  max-width: 200px;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 10px;
  border: 1px solid grey;
  border-radius: 10px;
  padding: 4px;
  margin-top: 4px;
  margin-right: 2px;
}

.extraButton:hover {
  border: 1px solid black;
  background-color: #212529 !important;
  color: white !important;
}

.extraButtonClosed {
  cursor: default;
  min-width: 100px;
  width: auto;
  max-width: 200px;
  text-align: center;
  text-decoration: none;
  background-color: #212529 !important;
  color: white;
  font-size: 10px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 4px;
  margin-top: 4px;
  margin-right: 2px;
}

.extraButtonClosed:hover {
  box-shadow: inset 0px 0px 10px #a19494;
  background-color: #212529 !important;
  color: white;
}

/* Rotating */

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

@keyframes hourSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.hourSpin:hover {
  animation: hourSpin infinite;
  animation-duration: 700ms;
}

/* col 1,5 */

@media only screen and (max-width:767px) {

  /* S */
  .col-1-5 {
    width: calc(100%/8);
  }
}

@keyframes danceBall {
  0% {
    -ms-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  25% {
    -ms-transform: translate(10px, 0px);
    -moz-transform: translate(10px, 0px);
    -webkit-transform: translate(10px, 0px);
    -o-transform: translate(10px, 0px);
    transform: translate(10px, 0px);
  }

  50% {
    -ms-transform: translate(10px, 10px);
    -moz-transform: translate(10px, 10px);
    -webkit-transform: translate(10px, 10px);
    -o-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }

  75% {
    -ms-transform: translate(0px, 10px);
    -moz-transform: translate(0px, 10px);
    -webkit-transform: translate(0px, 10px);
    -o-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
  }

  100% {
    -ms-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

/* Go In Link */
.goInLink {
  cursor: pointer;
}

@media only screen and (max-width:768px) {
  .onlyPC {
    display: none;
  }
}

@media only screen and (min-width:768px) {
  .onlyTel {
    display: none;
  }
}

.weZodiacFont {
  border: 1px solid purple;
  min-height: 100px;
  font-size: 20px;
  text-align: center;
  line-height: 100px;
}

@media only screen and (max-width:768px) {
  .weZodiacFont {
    font-size: 14px;
  }
}

.seeSystem {
  z-index: 9999;
  position: absolute;
  top: 15px;
  width: 100%;
}

.seeSystem>.seeSystemLook {
  background-color: white;
  border-radius: 20px;
  border: 5px solid grey;
  width: auto;
  text-align: center;
  min-height: auto;
  max-width: 100%;
  right: auto;
}

.seeSystemInImageArea {
  text-align: center;
  border-left: 2px solid grey;
  border-right: 2px solid grey;
  border-bottom: 2px solid grey;
  padding-top: 10px;
}

@media only screen and (max-width:920px) {
  .seeSystem {
    left: 10px;
    right: 10px
  }

  .seeSystemInImageArea {
    min-width: 100% !important;
  }

  .seeSystemInImageArea>.seeSystemInImage {
    width: 90%;
    height: 90%
  }
}

.seeSystemTextTitle {
  background-color: white;
  text-align: center;
  font-size: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dashed grey;
  box-shadow: 0px 0px 7px -2px gray inset;
  max-width: 900px;
  border-left: 2px solid grey;
  border-right: 2px solid grey;
  border-bottom: 2px solid grey;
}

/* Suggestions Boxs */

.suggestionsBox{
	text-align: center;
}
#autoSuggestionsList{
	list-style-type: none;
	padding: 10px;
	margin-right: 20px;
}
#autoSuggestionsList li{
	cursor: pointer;
	border: 1px solid grey;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 5px;
	font-weight: bold;
}
#autoSuggestionsList li:hover{
	background-color: #2160bd;
}