.no__scrolling {
    overflow: hidden;
}

.ready_to_load_animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fastest__speed--item .ready_to_load_animation{
    transition: all 1.5s ease;
}


.slick-list .slick-slide {
    margin: 0 12px;
}

section .slick-arrow {
    background: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 30px;
    z-index: 3;
}

section .slick-arrow::before {
    content: "";
    background-image: url("/images/icon/chevron_left.svg");
    width: 13px;
    height: 20px;
    display: flex;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section .slick-next.slick-arrow::before {
    transform: translate(-50%, -50%) rotate(-180deg);
}

section .slick-arrow:hover,
section .slick-arrow:focus:hover {
    background: rgba(71, 112, 255, 0.8);
}

section .slick-arrow:focus {
    background: var(--primary-color);
}

.common_layer_header_wrapper {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .common_layer_header_wrapper .common_layer_header_title {
    font-size: 22px;
    color: var(--dark-black-color);
  }
  .common_layer_header_wrapper .common_layer_close {
    position: relative;
    cursor: pointer;
    border-radius: 100%;
    padding: 10px;
    transition: all 0.3s ease;
  }
  .common_layer_header_wrapper .common_layer_close img {
    width: 100%;
    height: 100%;
  }

  .common_input_wrapper > .error_alert {
    position: absolute;
    top: 3px;
    right: 6px;
    width: fit-content;
    height: 34px;
    transform: translateY(0%);
    background-color: #ff7676;
    color: var(--white-color);
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 13px;
    z-index: 3;
    white-space: nowrap;
  }
  .common_input_wrapper.error_alert_border > input,
  .common_input_wrapper.error_alert_border > textarea {
    border-color: #ff0000 !important;
  }

@media screen and  (max-width: 800px) {
  body::-webkit-scrollbar {
    display: none;
  }
}

.common_layer_body_wrapper .send_okay_text_box p {
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-black-color);
}

.common_layer .common_layer_body_wrapper {
  height: auto;
}