@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    min-height: 100%;
}

:root {
    --main-background: #fff;
    --secondary-background: linear-gradient(to left, #E5FFF3 0%, #e0f1ff 30%, #FDF2EF 100%);
    --main-color: #1CB098;
    --secondary-color: #0e2a47;
    --main-smoke-background: #e0fbdd;
    --navbar-height: 85px;
    --player-aside-width: 430px;
}

a.normal {
    text-decoration: none !important;
    color: unset;
}

.pointer {
    cursor: pointer;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.head {
    margin-bottom: 60px;
}

.head .hint {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    padding: 5px 15px;
}

.head h2 {
    line-height: 3.6rem;
}

@media (min-width: 767px) {
    .head h2 {
        width: 60%;
    }
}


.main.py {
    padding-top: 120px;
    padding-bottom: 120px;
}

.muted {
    color: #ddd !important;
}

/* Start input design */


/* input design */
.input-wrapper {
    position: relative;
    margin-top: 1.3rem;
}
  
.input-wrapper .form-control, .input-wrapper select {
    padding-top: 22px;
    font-size: .8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    height:55px !important;
    outline: 0 !important;
    box-shadow: none ;
    border-radius: 10px;
}

.input-wrapper .form-control:focus {
    border-color: #1773b0;
    box-shadow: 0 0 0 1px hsl(204, 77%, 39%);
}

.input-wrapper .form-control.error {
    border-color: hsl(0, 77%, 48%) !important;
    box-shadow: 0 0 0 1px hsl(0, 77%, 48%) !important;
}
  
.placeholder-text {
    position: absolute;
    right: 0.5rem;
    font-size: .75rem !important;
    top: 1rem;
    color: #868686;
    font-weight: 500;
    pointer-events: none;
    transition: 0.2s ease;
    background: transparent;
    padding: 0 4px;
    z-index: 99;
}

.input-wrapper.input-group .form-control {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.input-wrapper.input-group .placeholder-text {
    left: 3.65rem !important; 
}

.input-group-text {
    font-size: 14px;
    opacity: .9;
}
  
.input-wrapper.focused .placeholder-text,
.input-wrapper.filled .placeholder-text {
    top: 0.4rem;
    font-size: 0.65rem !important;
    /* color: #3b70fc; */
}

/* End input design */

.hero .backlinks li{
    font-size: 18px;
}

.hero .backlinks li {
    position: relative;
    margin-right: 20px;
}

.hero .backlinks li a:hover {
    color: blue;
}

.hero .backlinks li:after {
    content: '\e6a2';
    position: absolute;
    margin-right: 10px;
    font-weight: 600;
    font-size: 17px;
    color: #000;
    font-family: 'Pe-icon-7-stroke';
}

.hero .backlinks li:last-child::after{
    display: none !important;
}
.stars .star {
    color: rgb(192, 192, 192);
}

.stars .star.active {
    color: gold !important;
}

.checkbox-system input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }

  .checkbox-system .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  .checkbox-system .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-system .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    transition: all 0.2s ease;
  }
  .checkbox-system .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-system .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506EEC;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
  }
  .checkbox-system .cbx span:last-child {
    padding-left: 8px;
  }
  .checkbox-system .cbx:hover span:first-child {
    border-color: #506EEC;
  }

  .checkbox-system .inp-cbx:checked + .cbx span:first-child {
    background: #506EEC;
    border-color: #506EEC;
    animation: wave-46 0.4s ease;
  }
  .checkbox-system .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-system .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
  }

  @keyframes wave-46 {
    50% {
      transform: scale(0.9);
    }
  }