@charset "UTF-8";
/* [Master Stylesheet] */
/* ----------------------------------------------------------
    :: Template etamer-front
    :: Author: Turbo
    :: Author URL:www.boo-code.com 
    :: Version: 1.0
    :: Created: 4 2024
    :: Last Updated: 4 2024
    ---------------------------------------------------------- */
/* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&display=swap");
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Cairo", sans-serif;
  accent-color: #C79D65;
}

a {
  text-decoration: unset;
}

.main-button {
  background: #C79D65;
  color: #fff;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.main-button:hover {
  background: #b78542;
}

a.main-button:hover {
  color: #fff;
}

.outline-button {
  background: transparent;
  color: #C79D65;
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 2rem;
  border: 0.0625rem solid #C79D65;
  cursor: pointer;
  transition: 0.3s;
}
.outline-button:hover {
  border-color: transparent;
}

.main-title {
  font-size: 1.8rem;
  color: #C79D65;
  font-weight: 700;
}

.main-input {
  border: 0.0625rem solid #E1E1E1;
  border-radius: 0.5rem;
  padding: 0.8rem;
  background: #fff;
  outline-color: #C79D65;
}

.nav-breadcrumb {
  background: #f2f2f2;
  margin-bottom: 1rem;
  --bs-breadcrumb-divider: ">";
}
.nav-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0.6rem 0;
}
.nav-breadcrumb .breadcrumb li {
  color: #000;
}
.nav-breadcrumb .breadcrumb a {
  color: #C79D65;
}

.kufi-font {
  font-family: "Reem Kufi", sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #C79D65;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-link img {
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-link:hover {
  color: #fff;
}
.navbar .navbar-nav .nav-link:hover img {
  filter: brightness(0) invert(1);
}
.navbar .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar .navbar-nav .nav-link.active img {
  filter: brightness(0) invert(1);
}
.navbar .navbar-nav .nav-link.login-link {
  color: #fff;
  padding: 0.5rem 2rem;
}
.navbar .navbar-nav .nav-link.login-link img {
  filter: brightness(0) invert(1);
}
.navbar .navbar-toggler {
  border-color: #C79D65;
}
.navbar .navbar-toggler-icon {
  background-image: url("../images/navbar-toggle.svg");
}

.hero {
  background: url("../images/hero-bg.jpg") no-repeat center center/cover;
  height: 800px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.hero .hero-content h4 {
  margin-bottom: 1.4rem;
}
.hero .hero-content button {
  height: 51.59px;
  font-size: 1.2rem;
}

.ads-section {
  padding-top: 7rem;
  padding-bottom: 2rem;
}
.ads-section .main-title {
  margin-bottom: 1.5rem;
}
.ads-section .ads-box {
  width: 100%;
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.ads-section .ads-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ads-section .carousel-inner {
  border-radius: 1rem;
}
.ads-section .carousel-inner img {
  height: 37rem;
  width: 100%;
  border-radius: 1rem;
}
.ads-section .carousel-inner .carousel-caption h5 {
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-section {
  padding: 1rem 0;
  padding-bottom: 3rem;
}
.news-section .main-title {
  margin-bottom: 1.5rem;
}
.news-section .news-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1.5rem;
  align-items: center;
  border: 1px solid #eee;
}
.news-section .news-box a {
  flex-shrink: 0;
  width: 100%;
}
.news-section .news-box img.news-image {
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #ccc;
}
.news-section .news-box .news-content {
  padding: 0.5rem;
}
.news-section .news-box .news-content h2 {
  color: #585858;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-box .news-content h5 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}
.news-section .news-box .news-content a {
  color: #C79D65;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: end;
}
.news-section .owl-dots {
  text-align: start;
  margin-top: 20px;
}
.news-section .owl-dot {
  display: inline-block;
  margin: 0 5px;
}
.news-section .owl-dot span {
  width: 40px;
  height: 8px;
  background: #D6D6D6;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.news-section .owl-dot.active span {
  background: #C79D65;
  width: 60px;
}
.news-section a.see-more {
  width: 15rem;
  text-align: center;
  margin-top: 2rem;
  padding: 0.8rem 1rem;
}
.news-section .no-result-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9rem;
  background: #f6f6f6;
  border-radius: 1rem;
  margin-top: 1rem;
}
.news-section .no-result-box p {
  font-size: 1.5rem;
  color: #a8a8a8;
  margin: 0;
}

.search-input input {
  width: 400px !important;
  padding: 0.7rem 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  border-inline-end: transparent;
  margin-bottom: 0;
}
.search-input input:focus {
  box-shadow: none;
  border-color: #ccc;
}
.search-input .input-group-text {
  margin-right: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 1.6rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 1.6rem;
  background: #fff;
}
.search-input i {
  color: #C79D65;
}

a.create-order {
  flex-shrink: 0;
  padding: 0.7rem 2rem;
}

footer {
  padding-top: 3rem;
  background: #23282D;
  color: #fff;
}
footer .footer-logo {
  height: 10rem;
}
footer .footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #C79D65;
}
footer ul.links {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
footer ul.links li a {
  color: #fff;
  font-size: 1rem;
}
footer ul.links li a:hover {
  color: #C79D65;
}
footer ul.social {
  display: flex;
  gap: 1.5rem;
}
footer ul.social li a {
  color: #fff;
  font-size: 1.6rem;
}
footer ul.social li a:hover {
  color: #C79D65;
}
footer p {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}
footer .downloand-box {
  display: flex;
  gap: 1rem;
}
footer .downloand-box img {
  height: 3.4rem;
}
footer .bottom-footer {
  margin-top: 3rem;
  background: #000000;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.7rem 0;
  color: #fff;
}

.estalaam-section {
  padding: 2rem 0;
}
.estalaam-section h3 {
  margin-bottom: 2rem;
}
.estalaam-section h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #4b4b4b;
  font-weight: 700;
}
.estalaam-section .estalaam-buttons {
  background: #f2f2f2;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.estalaam-section .estalaam-buttons button {
  width: 200px;
}

.estalaam-details-box {
  margin-bottom: 3rem;
}
.estalaam-details-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.estalaam-details-box ul li {
  border-bottom: 0.0625rem solid #eee;
  padding-bottom: 0.5rem;
}
.estalaam-details-box h5 {
  font-size: 1.2rem;
  color: #464646;
  margin: 0;
}
.estalaam-details-box p {
  color: #999;
  font-size: 1.2rem;
  margin: 0;
}

ul.timeline {
  position: relative;
  list-style-type: none;
  padding-right: 180px;
}
ul.timeline:before {
  position: absolute;
  display: block;
  right: 136px;
  width: 3px;
  height: 100%;
  border-radius: 4px;
  background-color: #ccc;
  content: " ";
}
ul.timeline .event {
  position: relative;
  padding: 1rem;
  background: white;
  margin-bottom: 1.2rem;
}
ul.timeline .event:before {
  display: block;
  position: absolute;
  top: 15px;
  right: -58px;
  width: 30px;
  height: 30px;
  line-height: 25px;
  border: 3px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 4px -1px rgba(0, 0, 0, 0.6);
  color: #fff;
  content: "";
  text-align: center;
}
ul.timeline .event.done:before {
  border: 3px solid #006870;
  background-color: #006870;
  color: #fff;
  content: "✓";
}
ul.timeline h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}
ul.timeline .time {
  position: absolute;
  display: block;
  width: 120px;
  top: 15px;
  right: -179px;
  font-size: 0.9em;
  text-align: right;
  font-weight: 600;
  text-transform: uppercase;
}
ul.timeline video {
  width: 500px;
  height: auto;
  margin-top: 1rem;
}

.login-section {
  padding: 4rem 0;
}
.login-section .login-box {
  background: #f2f2f2;
  padding: 4rem 2rem;
  border-radius: 1rem;
}
.login-section .login-box h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
.login-section .login-box .form-group {
  margin-bottom: 1.5rem;
}
.login-section .login-box .form-group label {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.login-section .login-box .form-group input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
}
.login-section .login-box .form-group input[type=number] {
  direction: rtl;
}
.login-section .login-box .form-group select {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  color: #777;
}
.login-section .login-box .form-group label.file-label {
  padding: 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  display: block;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  background: #fff;
  color: #777;
}
.login-section .login-box input[type=file] {
  display: none;
}
.login-section .login-box button {
  width: 200px;
  display: block;
  margin-top: 1.4rem;
  border-radius: 0.4rem;
  margin-bottom: 1.4rem;
}
.login-section .login-box .register-link a {
  color: #C79D65;
  text-decoration: underline;
}
.login-section .login-box .forget-password {
  color: #d20000;
}
.login-section .login-logo {
  height: 12rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.order-section {
  padding: 2rem 0;
}
.order-section .no-order-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 9rem;
  background: #f6f6f6;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.order-section .no-order-card p {
  font-size: 1.5rem;
  color: #a8a8a8;
  margin: 0;
}
.order-section .order_card {
  border: 1px solid #d5d5d5;
  border-radius: 0.5rem;
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.order-section .order_card .action_bar {
  width: 3rem;
  padding: 1rem 0.5rem;
  background: #f8f8f8;
  border-radius: 0 0.5rem 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.order-section .order_card .action_bar .dropup .dropdown-toggle::after {
  display: none;
}
.order-section .order_card .action_bar a {
  cursor: pointer;
}
.order-section .order_card .content_box {
  padding: 1rem;
  width: 100%;
}
.order-section .order_card .content_box .row:not(:last-child) {
  margin-bottom: 1rem;
}
.order-section .order_card .content_box h6 {
  color: #ababab;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.order-section .order_card .content_box h5 {
  margin-top: 0.3rem;
  font-size: 0.95rem;
}
.order-section .order_card .content_box .details-link {
  color: #C79D65;
  text-decoration: underline;
  text-align: end;
}

.not-paied {
  color: #e82626 !important;
}

.paied {
  color: #1ede51 !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.create-button-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  background: #f6f6f6;
  border-radius: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.create-button-card button {
  background: transparent;
  border: none;
  outline: none;
  color: #C79D65;
  font-size: 1.2rem;
}

.add-client-card {
  border: 1px solid #d5d5d5;
  border-radius: 1rem;
  padding: 2rem;
  padding-top: 1rem;
  margin: 1rem 0;
}
.add-client-card label {
  display: block;
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.add-client-card .checkbox-card {
  background: #f6f6f6;
  border: 1px solid #d5d5d5;
  border-radius: 2rem;
  display: flex;
  padding: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.add-client-card .checkbox-card div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.add-client-card .checkbox-card label {
  display: inline-block;
  color: #000000;
  font-size: 1rem;
  margin-bottom: 0;
}
.add-client-card .checkbox-card input[type=radio] {
  width: 1.2rem;
  height: 1.2rem;
}
.add-client-card h4 {
  color: #000;
  font-size: 1.5rem;
  margin-top: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.add-client-card .input-box {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.add-client-card .input-box input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  background: #f6f6f6;
}
.add-client-card .input-box input[type=number] {
  direction: rtl;
}
.add-client-card .input-box select {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 1.6rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  color: #777;
  background: #f6f6f6;
}
.add-client-card .input-box textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  background: #f6f6f6;
  resize: none;
  height: 8rem;
}

.total-card {
  background: #fff;
  border-radius: 0.7rem;
  padding: 2rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  border: 1px solid #d5d5d5;
}
.total-card h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #C79D65;
}
.total-card h3 {
  font-size: 1.5rem;
  color: #999;
}
.total-card .total-include {
  width: 100%;
}
.total-card .total-include h4 {
  background: #efefef;
  padding: 0.8rem 1rem;
  width: 100%;
  font-size: 1.4rem;
}
.total-card .total-include ul li {
  font-size: 1.2rem;
  margin: 0.7rem 0;
  color: #888888;
}

.payment-card {
  border: 1px solid #d4d4d4;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0.7rem 0;
  min-height: 8rem;
  cursor: pointer;
}
.payment-card p {
  font-size: 1.2rem;
  color: #000;
  margin: 0;
  direction: ltr;
}

.payment-method-input {
  display: none;
}

input[type=radio].payment-method-input:checked + label .payment-card {
  border-color: #C79D65;
  background: rgba(199, 156, 101, 0.1333333333);
}

.buttons-box {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.buttons-box button {
  width: 48%;
}

.choose-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  font-weight: 700;
}

.wakeel-details-card {
  border: 1px solid #d5d5d5;
  border-radius: 1rem;
  margin: 1rem 0;
}
.wakeel-details-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.wakeel-details-card ul li {
  display: flex;
  padding: 0.8rem 1rem;
  align-items: start;
  border-bottom: 1px solid #d5d5d5;
  gap: 1rem;
  padding-bottom: 0.8rem;
}
.wakeel-details-card ul li:last-child {
  border-bottom: none;
}
.wakeel-details-card ul li i {
  color: #C79D65;
  font-size: 1.2rem;
}
.wakeel-details-card ul li h5 {
  margin: 0;
}
.wakeel-details-card ul li .map {
  margin-top: 1rem;
}
.wakeel-details-card ul li .map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 0.5rem;
}

.rating-box {
  width: 480px;
}
.rating-box li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: space-between;
  margin: 0.7rem 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #eee;
}
.rating-box li:last-child {
  border-bottom: none;
}
.rating-box li h5 {
  font-size: 1.2rem;
  color: #555;
}
.rating-box li .starts-box {
  display: flex;
  gap: 0.5rem;
}
.rating-box li .starts-box i {
  font-size: 1.5rem;
  color: #e2e2e2;
  cursor: pointer;
}
.rating-box li .starts-box i.active {
  color: #ffbc34;
}

textarea.rating-textarea {
  width: 480px;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 0.0625rem solid #ccc;
  outline-color: #C79D65;
  resize: none;
  height: 8rem;
}

button.rating-button {
  width: 200px;
  display: block;
  margin-top: 1.4rem;
}

.finish-box {
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #d5d5d5;
  width: 480px;
}

input[type=number],
input[type=text],
input[type=email],
input[type=tel] {
  direction: rtl;
}

/* Responsive */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  nav.navbar {
    padding-inline-start: 0;
    gap: 1rem;
  }
  nav.navbar .navbar-box {
    display: block;
  }
  nav.navbar .navbar-box .logo-box {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav.navbar .navbar-box .links-box {
    padding: 1rem;
    -webkit-clip-path: none;
            clip-path: none;
  }
  nav.navbar .navbar-box .links-box ul {
    gap: 1rem;
  }
  .hero {
    height: 100dvh;
  }
  .hero .hero-content {
    padding: 1rem;
    bottom: 7rem;
  }
  .hero .hero-content h4 {
    font-size: 1.2rem;
  }
  .hero .hero-content button {
    margin-top: 1rem;
  }
  .ads-section {
    padding-top: 6rem;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .ads-section .carousel-inner {
    margin-bottom: 2rem;
  }
  .ads-section .carousel-inner img {
    height: 22rem;
  }
  .ads-section .ads-box {
    height: 10rem;
  }
  .news-section .news-box .news-content h5 {
    font-size: 1rem;
  }
  .news-section .news-box img.news-image {
    height: 14rem;
  }
  .ads-section {
    padding-bottom: 1rem;
  }
  .news-section a.see-more {
    margin-bottom: 2rem;
  }
  footer .footer-logo {
    height: 6rem;
    margin-bottom: 1rem;
  }
  footer .footer-title {
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
  }
  ul.timeline {
    padding-right: 30px;
  }
  ul.timeline .time {
    right: unset;
    top: unset;
    left: 0;
    text-align: end;
  }
  ul.timeline video {
    width: 290px;
  }
  ul.timeline h3 {
    font-size: 1.2em;
  }
  ul.timeline:before {
    right: 0;
  }
  ul.timeline .event:before {
    right: -43px;
  }
  .login-section {
    padding: 2rem 0;
  }
  .login-section .login-row {
    flex-direction: column-reverse;
  }
  .login-section .login-logo {
    height: 6rem;
  }
  .login-section .login-box {
    padding: 2rem;
  }
  .login-section .login-box button {
    width: 100%;
  }
  footer ul.social li a {
    font-size: 1.4rem;
  }
  .order-section .order_card .content_box .details-link {
    text-align: start;
  }
  .add-client-card {
    padding: 1rem;
  }
  .add-client-card .checkbox-card {
    padding: 1rem;
  }
  .add-client-card .checkbox-card div {
    gap: 0.2rem;
  }
  .add-client-card .checkbox-card label {
    font-size: 0.8rem;
  }
  .add-client-card label {
    font-size: 1rem;
  }
  .add-client-card h4 {
    color: #000;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .payment-card {
    flex-direction: column;
  }
  .payment-card p {
    font-size: 0.8rem;
    text-align: center;
  }
  .total-card h1 {
    font-size: 2.5rem;
  }
  .total-card h3 {
    font-size: 1.1rem;
    color: #999;
  }
  .choose-title {
    font-size: 1.2rem;
  }
  .rating-box li h5 {
    font-size: 1rem;
  }
  ul.timeline .event {
    padding-right: 0.3rem;
  }
  .rating-box,
  textarea.rating-textarea,
  .finish-box {
    width: 100%;
  }
  .rating-box li .starts-box i {
    font-size: 1.2rem;
  }
}
/* galaxy S5 */
/* iphone x, 6/7/8 */
/* iphone 6/7/8 plus */
/* ipad */
/*  large screen  */
/* 17 inch */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.floating-animation {
  animation: floating 3s ease-in-out infinite;
}/*# sourceMappingURL=style.css.map */