/* Start Main Boxes */
.main-boxes .status {
  background-color: var(--bg-container);
}

.dark-mode .main-boxes .status {
  background-color: var(--bg-container-dark);
}

.main-boxes .points {
  background: var(--main-linear);
}

.main-boxes .order {
  background-image: url(../images/home/box.svg);
  background-size: cover;
  background-position: left 65px;
  background-repeat: no-repeat;
  background-size: 50%;
}

.main-boxes .credit {
  background-image: url(../images/home/price.svg);
  background-size: cover;
  background-position: left 50px;
  background-repeat: no-repeat;
  background-size: 50%;
}

.main-boxes .points .point-btn {
  background-color: var(--bg-container-dark);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
}

.main-boxes .status,
.main-boxes .points,
.main-boxes .order,
.main-boxes .credit {
  padding: 30px 20px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {

  .main-boxes .status,
  .main-boxes .points,
  .main-boxes .order,
  .main-boxes .credit {
    height: 180px;
  }
}

.main-boxes .status h5:first-child {
  color: var(--main-color);
}

.main-boxes .status i {
  background-color: var(--main-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: none;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  font-size: 24px;
  color: #000;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dark-mode .progress .progress-value {
  color: #fff;
}

.progress.blue .progress-bar {
  border-color: var(--main-color);
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 20px;
  }
}

/* Start Instructions */

.instructions .instruction-card {
  background-color: var(--bg-container);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.dark-mode .instructions .instruction-card {
  background-color: var(--bg-container-dark);
}

/* End Instructions */
/* Start New Order */
.new-order-content-container {
  background-color: #07bd5c;
  padding: 10px;
  margin-bottom: 2rem;
  border-radius: 10px;
}

/* End New Order */
.tab-panes label span,
.tab-panes label span i {
  font-size: 11px;
}

.tab-panes label span i {
  color: var(--main-color);
}

/* Social Media Filter */
.social-medida-filter {
  gap: 10px;

  margin-bottom: 2rem;
}

.social-medida-filter picture {
  display: block;
  width: 65px;
  height: 65px;
  background-color: var(--bg-container);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.dark-mode .social-medida-filter picture {
  background-color: var(--bg-container-dark);
}

@media (max-width: 991px) {
  .social-medida-filter {
    overflow-x: scroll;
    padding-bottom: 1rem;
  }

  .social-medida-filter picture {
    flex: 0 0 65px;
  }
}

#NewOrder .main-btn i {
  border: 0;
}

#NewOrder .main-btn:hover i {
  transform: unset;
}

@media (max-width: 400px) {
  .main-head {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============ */

.points-btn {
  background-color: #000;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  color: #fdf001;
  font-size: 10px;
  border-radius: 10px;
  line-height: 22px;
  margin-right: 4px;
}

.points-btn:hover,
.points-btn:focus {
  background-color: #000;
  color: #fdf001;
}

#statusModal .modal-lg {
  width: 1111px;
}

#statusModalLabel {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.ar .points-btn {
  margin-left: 4px;
  margin-right: 0;
}

.modal-logo img {
  max-width: 172px;
}

.statusModal .modal-lg {
  width: 1240px;
}

.statusModal .modal-header {
  padding: 0;
  border: none;
}

.statusModal .modal-content {
  border-radius: 45px;
  border: none;
}

.statusModal .modal-header button.close {
  position: absolute;
  right: 0;
  top: 0.2rem;
  box-shadow: none;
  background-color: #fdf001;
  z-index: 11;
  color: #000;
  opacity: 1;
  text-shadow: none;
  border: none;
  font-weight: 300;
  border-radius: 50%;
}

.statusModal .modal-body {
  padding: 0;
  display: flex;
}

.modal-left {
  max-width: 30%;
  flex: 0 0 30%;
}

.modal-right {
  max-width: 90%;
  flex: 0 0 90%;
  display: flex;
  flex-wrap: wrap;
}

.modal-logo {
  background-color: #000;
  text-align: center;
  padding: 25px 0;
}

.status-box-wrap {
  max-width: 16.65%;
  flex: 0 0 16.65%;
  transition: all 0.4s ease-in;
}

.modal-status-title {
  background-color: #f7f9f9;
  margin: 0;
  list-style: none;
  padding: 120px 25px 30px;
}

.ar .modal-status-title {
  padding: 120px 23px 30px;
}

.modal-status-title li {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 48px;
}

.modal-status-title li sup {
  font-size: 14px;
  font-weight: 700;
}

.status-slider .slick-list {
  padding: 0 !important;
}

.status-box-top {
  padding-bottom: 2rem !important;
  text-align: center;
}

.status-box-top h4 {
  color: #b0b0b0;
  font-weight: 300;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 5px;
}

.status-box-top h3 {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.status-box-badge {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: var(--main-color);
  border-radius: 50%;
}

.slick-center .status-box-badge {
  background-position: -127px 0px;
}

.modal-status-value {
  padding: 30px 0px;
  margin: 0;
  list-style: none;
}

.modal-status-value li {
  text-align: center;
  line-height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-status-value li .price {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  color: #000;
  line-height: inherit;
}

.modal-status-value li .price sup {
  font-weight: 700;
}

.slick-center .status-box-wrap {
  background-color: var(--main-color);
}

.slick-center .status-box-wrap h4 {
  color: #fff;
}

.modal-status-value li div {
  width: 24px;
  height: 24px;
  display: flex;
  margin: auto;
  border-radius: 50px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
}

.modal-status-value li div.disabl {
  color: #ffffff;
  background-color: #ff0000;
}

.modal-status-value li div.enble {
  background-color: var(--main-color);
}

.level-wrap {
  box-shadow: 0 0 0 0 rgba(253, 240, 1, 1);
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(253, 240, 1, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(253, 240, 1, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(253, 240, 1, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(253, 240, 1, 0.4);
    box-shadow: 0 0 0 0 rgba(253, 240, 1, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(253, 240, 1, 0);
    box-shadow: 0 0 0 10px rgba(253, 240, 1, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(253, 240, 1, 0);
    box-shadow: 0 0 0 0 rgba(253, 240, 1, 0);
  }
}

@media (max-width: 1200px) {
  .factorial {
    display: block;
  }

  #statusModal .modal-lg {
    width: auto;
  }

  #statusModalLabel {
    text-align: center;
    font-size: 28px;
  }

  .modal-logo {
    border-radius: 42px 42px 0 0;
  }

  .modal-status-title {
    display: none;
  }

  .statusModal .modal-body {
    flex-direction: column;
  }

  .modal-left,
  .modal-right {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .statusModal .modal-lg {
    width: auto;
  }

  .status-box-wrap {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .status-box-top {
    padding: 10px 0;
  }

  .modal-status-value {
    padding: 10px 0px;
  }

  .modal-status-value li {
    min-height: 38px;
  }

  .modal-status-value li div,
  .modal-status-value li h5 {
    position: relative;
    padding-left: 75%;
    border-radius: 4px;
    height: auto;
    line-height: 32px;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
    width: auto;
  }

  .modal-status-value li div::before,
  .modal-status-value li h5::before {
    content: attr(data-head);
    display: inline-block;
    position: absolute;
    left: 10px;
    font-size: 14px;
    line-height: 32px;
  }

  .modal-status-value li .price::before {
    position: relative;
    left: auto;
    margin-right: 10px;
  }

  .modal-status-value li div i {
    margin-right: 15px;
    margin-left: -15px;
  }

  .modal-status-value li .price {
    font-size: 14px;
    line-height: 32px;
    padding-left: 0;
    display: inline-block;
    white-space: nowrap;
  }

  .ar .modal-status-value li div::before,
  .ar .modal-status-value li h5::before {
    left: auto;
    right: 10px;
  }

  .ar .modal-status-value li div,
  .ar .modal-status-value li h5 {
    padding-right: 75%;
    padding-left: 0;
  }

  .ar .modal-status-value li div i {
    margin-right: -15px;
    margin-left: 15px;
  }

  .ar .modal-status-value li .price {
    padding-right: 0;
  }

  .ar .modal-status-value li .price::before {
    margin-left: 20px;
    margin-right: 0;
  }

  .nightmode .modal-status-value li div {
    color: #000;
  }

  .ar .statusModal .modal-header button.close {
    left: 5px;
  }

  .ar .modal-logo {
    border-radius: 42px 42px 0px 0;
  }
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content {
  display: flex;
  flex-direction: column;
}

.modal-top {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100% !important;
  height: auto;
}

.modal-left {
  width: 30%;
  flex-shrink: 0;
}

.modal-right {
  width: 70%;
  flex-grow: 1;
}

.modal-bottom {
  margin-top: 10px;
}

.modal-all-content {
  display: flex;
}

@media (max-width: 1200px) {
  .modal-all-content {
    flex-direction: column;
  }

  .modal-left {
    width: 100%;
  }

  .modal-right {
    width: 100%;
  }
}

.modal-dialog {
  max-width: 1240px !important;
}

.modal-dialog .modal-right {
  flex: unset;
}

.modal-footer {
  color: #000;
  justify-content: center;
}

.close {
  border: 0;
  background-color: var(--main-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* ============= */
.plyr__volume {
  display: none !important;
}

.instruction-content-tab {
  background: var(--bg-body);
  padding: 20px;
  border-radius: 10px;

}

.dark-mode .instruction-content-tab {
  background: var(--bg-body-dark);
}

.audio-section .audio-player {
  flex-direction: row;
  padding: 40px 10px;
  border-radius: 10px;
}

.audio-section .audio-player .cover {
  background-image: unset;
  width: auto;
  height: auto;
}

.audio-section .audio-player .cover img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.audio-section .audio-player .cover {
  flex: .5;
}

.audio-section .audio-player .plyr {
  flex: 2;
}

@media (max-width: 767px) {
  .audio-section .audio-player .plyr {
    flex: 1.5;
  }
}

.main-boxes .completed {
  background-position: left 100%;
  background-image: url(https://storage.perfectcdn.com/1847ba/polf9pjcx2mzp2qj.svg);
}

.select2-results__option{
    direction: rtl;
}

#service-description{
  min-height: 250px;
}                   

.select2-results__options{
  position: unset;
  display: block;
  background: var(--bg-body);
}

.dark-mode .select2-results__options{
  background: var(--bg-body-dark);
}

.input-wrapper__append{
  display: none;
}

.search-dropdown .input-wrapper{
  display: flex;
  align-items: center;
  position: relative;
}

.select2-selection{
  background-color: var(--bg-body);
  border-color: var(--bg-body);
  color: var(--text-color);
}

.dark-mode .select2-selection{
  background-color: var(--bg-body-dark);
  border-color: var(--bg-container-dark);
  color: var(--text-color-dark);
}
