/*!
* Style Sheet for ""
* version: 1
* last modified:2023 By Applab
* author: Applab
* website: www.applab.qa
*/
/*b5 start -------------------------------------------------------------------------------------------------------------------*/
/*b5 end ---------------------------------------------------------------------------------------------------------------------*/
audio {
  font-size: 1rem;
}

.bg-orange {
  background: #F48F00 !important;
}
.station-main {
  width: 100%;
  position: fixed;
  bottom: -127px;
  transition: all 0.3s;
  min-height: 110px;
  z-index: 9;
  display: none;
  transition: all 0.3s;
}
.station-main.show-player {
  transition: all 0.3s;
  display: block !important;
  bottom: -1px;
}
@media (max-width: 1199px) {
  .station-main {
    position: relative;
    bottom: 0;
  }
}
.station-main.scrolled-near-bottom {
  position: sticky;
  transition: all 0.3s;
  min-height: 90px;
  bottom: -127px;
}
.station-main p {
  margin: 0;
}
@media (max-width: 1679px) {
  .station-main p {
    font-size: 14px !important;
  }
}
.station-main .close-frame {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  inset-inline-start: 100px;
  padding: 0;
}
.radio-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
}
.radio-player .controls {
  display: flex;
  align-items: center;
  gap: 40px;
}
.radio-player .controls button {
  background: transparent;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  outline: none;
}
.radio-player .controls button.play-pause-btn {
  background-color: white;
  color: #f08c30;
  border-radius: 50%;
  padding: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-player .controls button.play-btn img {
  position: relative;
  left: 1px;
  width: 20px;
}

.audio-image {
  width: 100px;
  height: 94px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1679px) {
  .audio-image {
    width: 80px;
    height: 74px;
  }
}

.livePlayer .audio-image {
  width: 81px;
  height: 81px;
}

.seek-bar-container {
  direction: ltr;
}

.seek-bar-range {
  cursor: pointer;
}

/* Styling the progress bar with image background */
.seek-bar-range {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 9;
  /* opacity: 0; */
  /* display: none; */
  height: 100%;
  width: 100%;
  opacity: 0;
}

.seek-bar {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  overflow: hidden;
  background: url("../images/seek-bg.svg") no-repeat center;
  background-size: contain;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.seek-bar.orange-seek-bar {
  background: url("../images/orange-seek-bg.svg") no-repeat center;
}

.seek-bar-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-container {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 92px; /* Adjust to match the seek bar height */
}

@media (max-width: 1679px) {
  .station-main, .seek-bar-container {
    min-height: 70px;
  }
}

.mix-blend {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ddd; /* The color of the progress */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: width 0.1s linear;
  z-index: 0;
}

.mix-blend {
  mix-blend-mode: luminosity;
  opacity: 0.5;
}

.time-display {
  position: relative;
  z-index: 9;
  font-size: 14px;
  color: #fff;
}

.seek-bar-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: default;
  z-index: 9;
}
.seek-bar-loader .loader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seek-bar-loader .dot {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Change color as needed */
  animation: bounce 0.6s infinite alternate;
}
.seek-bar-loader .dot:nth-child(1) {
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}
.seek-bar-loader .dot:nth-child(2) {
  animation-delay: 0.1s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(3) {
  animation-delay: 0.2s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(4) {
  animation-delay: 0.3s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(5) {
  animation-delay: 0.4s;
  width: 12px;
  height: 12px;
}
.seek-bar-loader .dot:nth-child(6) {
  animation-delay: 0.5s;
  width: 14px;
  height: 14px;
}
.seek-bar-loader .dot:nth-child(7) {
  animation-delay: 0.6s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(8) {
  animation-delay: 0.7s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(9) {
  animation-delay: 0.8s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(10) {
  animation-delay: 0.9s;
  width: 4px;
  height: 4px;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

.bg-orange {
  background-color: #F48F00 !important;
}
.bg-orange .seek-bar-loader, .bg-orange .mix-blend {
  background-color: #F48F00 !important;
}

.bg-grey .seek-bar-loader, .bg-grey .mix-blend {
  background-color: #F6F6F6 !important;
}
.bg-grey .mix-blend {
  mix-blend-mode: color;
  opacity: 1;
}
.bg-grey .time-display {
  color: #000;
}
.bg-grey .play-pause-btn {
  background-color: #F48F00 !important;
}
.bg-grey .play-pause-btn img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1); /* For Safari and older WebKit browsers */
}
.bg-grey .seek-bar-loader .dot {
  background-color: #c3c3c3;
}

.seekbar-otr {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.station-small {
  position: static;
}
.station-small .seekbar-otr {
  width: 80.1%;
}
.station-small .seek-bar.orange-seek-bar {
  background-position: right;
}
.station-small .time-display {
  font-size: 16px;
}
.station-small .seek-bar-container {
  justify-content: end;
  padding-inline-end: 25px;
}

@media (max-width: 1679px) {
  .station-main .close-frame {
    inset-inline-start: 15px;
  }
}
@media (max-width: 1500px) {
  .station-main .close-frame {
    inset-inline-end: 15px;
    text-align: left;
    z-index: 9;
    top: 25px;
    inset-inline-start: auto;
  }
  .station-main .close-frame img {
    width: 27px;
  }
}
@media (max-width: 991px) {
  .seek-bar-loader .dot {
    margin: 0 5px;
  }
  .radio-player .controls {
    gap: 15px;
  }
  .radio-player .controls button.play-pause-btn {
    width: 40px;
    height: 40px;
  }
  .radio-player .controls button.play-btn img {
    width: 15px;
  }
  .program-details h4 {
    font-size: 18px;
  }
  .seek-bar-container {
    margin: 0;
    justify-content: flex-end;
    display: flex;
  }
  .station-small .seek-bar {
    background-size: 80%;
    background-repeat: repeat-x;
  }
}
@media (max-width: 767px) {
  .audio-image {
    width: 75px;
    border-radius: 8px;
    box-shadow: 3px 4px 16px -7px rgba(0, 0, 0, 0.55);
    border: 3px solid #F48F00;
  }
  .station-main .close-frame {
    top: 40px;
  }
  .station-main .close-frame img {
    width: 25px;
  }
  .program-details {
    row-gap: 10px;
    flex-direction: row !important;
  }
  .seek-bar-container {
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
    min-height: 60px;
  }
  .seekbar-otr {
    width: 100%;
  }
  .radio-player {
    order: 3;
    justify-content: center !important;
  }
  .radio-player .controls {
    gap: 10px;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
  }
  .program-details {
    margin-bottom: 15px;
  }
  .station-small .seek-bar-container {
    margin-bottom: 0;
  }
  .station-small .radio-player {
    order: inherit !important;
  }
  .station-main .seek-bar-loader {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .station-small .seekbar-otr {
    width: 100%;
  }
  .station-small .seek-bar-container {
    width: 100%;
  }
  .program-details h4 {
    font-size: 16px;
  }
  .program-details {
    margin-bottom: 0px;
  }
}
p a {
  color: #0d6efd;
}
p a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

body {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #292D32;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-weight: 600;
}
body p {
  line-height: 1.5;
}

h1,
.h1 {
  font-size: 64px;
  line-height: 1.3;
}
@media (max-width: 1679px) {
  h1,
  .h1 {
    font-size: 44px;
  }
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    line-height: 1.5;
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 20px;
  }
}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 1600px) {
  h2,
  .h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
}
@media (max-width: 1199.98px) {
  h2,
  .h2 {
    font-size: 25px;
  }
}
@media (max-width: 991.98px) {
  h2,
  .h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

p {
  font-size: 18px;
}
@media (max-width: 1600px) {
  p {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  p {
    font-size: 14px;
  }
}

a:hover {
  color: #fd7e14 !important;
  text-decoration: none !important;
}

article p {
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  article p {
    font-size: 15px;
    line-height: 1.6;
  }
}

.m-xxl-4-5 {
  margin-top: 43px;
  margin-bottom: 15px;
}
@media (max-width: 1399.98px) {
  .m-xxl-4-5 {
    margin-top: 33px;
  }
}
@media (max-width: 991.98px) {
  .m-xxl-4-5 {
    margin-top: 25px;
  }
}

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

.fs-13 {
  font-size: 13px !important;
}

.fs-20 {
  font-size: 20px !important;
  line-height: 1.625rem;
}
@media (max-width: 767.98px) {
  .fs-20 {
    font-size: 17px !important;
  }
}

.fs-22 {
  font-size: 22px;
}
@media (max-width: 1199.98px) {
  .fs-22 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .fs-22 {
    font-size: 16px;
  }
}

.fs-24 {
  font-size: 24px;
}
@media (max-width: 1679px) {
  .fs-24 {
    font-size: 22px;
  }
}
@media (max-width: 1199.98px) {
  .fs-24 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .fs-24 {
    font-size: 16px;
  }
}

.fs-32 {
  font-size: 32px;
}
@media (max-width: 1600px) {
  .fs-32 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .fs-32 {
    line-height: 1.5;
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .fs-32 {
    font-size: 20px;
  }
}

.fs-40 {
  font-size: 40px;
}
@media (max-width: 1600px) {
  .fs-40 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .fs-40 {
    line-height: 1.5;
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .fs-40 {
    font-size: 20px;
  }
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-media-group .link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  transition: all 0.3s;
}
@media (max-width: 1679px) {
  .social-media-group .link {
    width: 40px;
    height: 40px;
  }
  .social-media-group .link img {
    width: 15px !important;
  }
}
@media (max-width: 575.98px) {
  .social-media-group .link {
    width: 30px;
    height: 30px;
  }
  .social-media-group .link img {
    width: 12px !important;
  }
}
.social-media-group .link img {
  aspect-ratio: 1/1;
}
.social-media-group .link:hover {
  background-color: #F48F00;
  scale: 1.1;
}
.social-media-group .dropdown-toggle::after {
  display: none;
}
.social-media-group .dropdown-menu.show {
  display: flex;
}

.social-media-sm .dropdown-items {
  display: flex;
  gap: 5px;
}
.social-media-sm .dropdown-menu {
  background-color: transparent;
  border: 0;
  inset: -45px auto 0px -78px !important;
  animation: dropdownMenuAnimation 0.03s ease-in forwards;
}
.social-media-sm .dropdown-toggle::after {
  display: none;
}
.social-media-sm .dropdown-menu.show {
  display: flex !important;
}
.social-media-sm .social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.social-media-sm .social-link:hover {
  background-color: #114782;
}
.social-media-sm .social-link:hover img {
  filter: brightness(0) invert(1);
}
.social-media-sm .social-link img {
  max-width: 12px !important;
  height: 13px !important;
  filter: brightness(0%);
  -o-object-fit: inherit !important;
     object-fit: inherit !important;
  aspect-ratio: inherit !important;
  transform: none !important;
}

@keyframes dropdownMenuAnimation {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.social-dark .link {
  border-color: #ccc !important;
}
.social-dark .link img {
  width: 20px;
}
.social-dark .link:hover {
  border-color: #c27203 !important;
}
.social-dark .link:hover img {
  /* WebKit prefix for older browsers */
  filter: brightness(100%);
  /* Standard filter property */
}
.social-dark .link img {
  /* WebKit prefix for older browsers */
  filter: brightness(0);
  /* Standard filter property */
}

.hover-effect figure {
  overflow: hidden;
}
.hover-effect img {
  transition: all 0.5s;
}
.hover-effect:hover img {
  scale: 1.1;
}

.blue-bg {
  background-color: #114782;
}

.fw-500 {
  font-weight: 500;
}

.info-size {
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .info-size {
    font-size: 13px;
  }
}
.info-size span {
  margin: 0 2px;
}
.info-size button {
  background-color: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  transition: all 0.1s;
}
.info-size button img {
  width: 100%;
}
.info-size button:hover {
  transform: scale(1.1);
}

.space-md {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1679px) {
  .space-md {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.heading-outer {
  margin-bottom: 40px;
}

.content-outer {
  margin-top: 30px;
}

.custom-p-end {
  padding-inline-end: 82px;
}

.custom-p-start {
  padding-inline-start: 82px;
}

@media (max-width: 1399.98px) {
  .custom-p-start, .custom-p-end {
    padding: 0 1rem;
  }
}

@media (max-width: 1199px) {
  .space-md {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .heading-outer {
    margin-bottom: 10px;
  }
  .space-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  article p {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .container-lg {
    max-width: 1392px;
  }
}
@media (max-width: 1679px) {
  .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
  .slick-arrow:after {
    background-size: 15px !important;
  }
}
@media (max-width: 1024px) {
  .slick-arrow {
    width: 35px !important;
    height: 35px !important;
  }
  .slick-arrow:after {
    background-size: 13px !important;
  }
}

.round-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 71, 130, 0.1);
}
@media (max-width: 575.98px) {
  .round-sm {
    width: 38px;
    height: 38px;
  }
  .round-sm img {
    width: 15px;
  }
}

.label-sm {
  background: rgba(17, 71, 130, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  color: #114782;
  display: inline-flex;
  font-size: 16px;
}
.sm-img {
  max-width: 90px;
}

.btn-grp-round {
  gap: 7px;
}
.btn-grp-round .btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 30, 0.65);
  padding: 0;
}
.btn-grp-round .btn img {
  width: 24px !important;
}
.btn-grp-round .btn.sm {
  width: 32px;
  height: 32px;
}
.btn-grp-round .btn.sm img {
  width: 17.5px !important;
  transform: none !important;
  scale: inherit !important;
}
@media (max-width: 575.98px) {
  .btn-grp-round .btn {
    width: 38px;
    height: 38px;
  }
  .btn-grp-round .btn img {
    width: 20px !important;
  }
}
.btn-grp-round .btn img {
  transition: all 300ms;
}
.btn-grp-round .btn:hover img {
  transform: scale(1.2);
}

.p_1 {
  padding: 6px !important;
}

.font-bold {
  font-weight: 600;
}

.national-day-theme .sub-header, .national-day-theme .station-main {
  background-color: #910D4F !important;
}
.national-day-theme .bg-orange.station-main .mix-blend, .national-day-theme .bg-orange.station-main .seek-bar-loader {
  background-color: #910D4F !important;
}
.national-day-theme section {
  position: relative;
}
.national-day-theme .ribbon {
  position: absolute;
  top: -159px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .national-day-theme .ribbon img {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .national-day-theme .ribbon {
    top: -213px;
  }
}
@media (max-width: 991px) {
  .national-day-theme .ribbon {
    top: -170px;
  }
}
@media (max-width: 767px) {
  .national-day-theme .ribbon {
    top: -127px;
  }
}
.national-day-theme .ribbon-2 {
  inset-inline-end: 0;
}
.national-day-theme .ribbon-02 {
  inset-inline-end: 0;
}
.national-day-theme .ribbon-lg {
  position: absolute;
  bottom: -140px;
}
@media (max-width: 1400px) {
  .national-day-theme .ribbon-lg img {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .national-day-theme .ribbon-lg {
    bottom: -110px;
  }
  .national-day-theme .ribbon-lg img {
    width: 50px;
  }
}

.national-day {
  margin-inline-end: 50px;
}
@media (max-width: 991px) {
  .national-day {
    position: absolute;
    inset-inline-start: 170px;
  }
  .national-day img {
    width: 80px;
  }
}
@media (max-width: 579px) {
  .national-day {
    inset-inline-start: 80px;
  }
  .national-day img {
    width: 50px;
  }
}

@media (max-width: 579px) {
  .national-day-theme header .navbar-brand img {
    width: 52px;
  }
}

.breadcrumb li {
  position: relative;
  padding-inline-end: 50px !important;
  font-size: 16px;
}
.breadcrumb li a:hover {
  color: #8D1B3D !important;
}
@media (max-width: 1199.98px) {
  .breadcrumb li {
    font-size: 13px;
    padding-inline-end: 30px !important;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb li {
    padding-inline-end: 30px !important;
  }
}
.breadcrumb li:last-child {
  padding-inline-end: 0 !important;
}
.breadcrumb li.active {
  font-weight: 600;
  color: #8D1B3D !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
.breadcrumb-item + .breadcrumb-item::after {
  content: "";
  border: solid #292D32;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 2px;
  inset-inline-start: -30px;
  top: 7px;
}
@media (max-width: 1199.98px) {
  .breadcrumb-item + .breadcrumb-item::after {
    inset-inline-start: -20px;
  }
}

.dot-vector {
  position: relative;
  background: url(../images/dots_vector.svg) no-repeat left bottom;
  background-size: contain;
}

address p {
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  address p {
    font-size: 15px;
    line-height: 1.6;
  }
}

.content-group {
  color: rgba(30, 30, 30, 0.65);
}
.content-group .icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(17, 71, 130, 0.1);
}
@media (max-width: 991.98px) {
  .content-group .icon {
    width: 40px;
    height: 40px;
  }
}
.content-group .icon img {
  width: 24px;
}
@media (max-width: 991.98px) {
  .content-group .icon img {
    width: 18px;
  }
}
.content-group a {
  color: rgba(30, 30, 30, 0.65);
}
.form_box {
  padding: 40px;
}
@media (max-width: 991.98px) {
  .form_box {
    padding: 20px;
  }
}
.form_box textarea {
  resize: none;
  height: 140px;
}
.form_box .wpcf7-form-control-wrap {
  width: 100%;
}
@media (max-width: 991.98px) {
  form input,
  form select,
  form textarea {
    font-size: 14px !important;
  }
}
form ::-moz-placeholder {
  color: rgba(46, 46, 46, 0.4) !important;
}
form ::placeholder {
  color: rgba(46, 46, 46, 0.4) !important;
}
form .form-check-input {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(41, 45, 50, 0.3);
  cursor: pointer;
}
form .form-check-input:checked {
  background-color: #114782;
  border-color: #0d6efd;
}
form .check-box-otr {
  cursor: pointer !important;
}

.file-upload {
  position: relative;
  height: 165px;
  transition: all 0.3s;
}
.file-upload:hover {
  box-shadow: 0 0 0 0.2rem rgba(19, 126, 241, 0.2);
  border-color: rgb(133, 178, 226);
}
@media (max-width: 991.98px) {
  .file-upload {
    height: 100px;
  }
}
.file-upload input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
.file-upload .center-info p {
  color: rgba(46, 46, 46, 0.4);
  font-size: 16px;
  margin: 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .file-upload .center-info p {
    font-size: 13px;
  }
}
@media (max-width: 991.98px) {
  .file-upload .center-info img {
    width: 30px;
  }
}

.custom-select-wrapper {
  position: relative;
  display: inline-block;
}
.custom-select-wrapper select {
  background-position: left 28px center;
}
@media (max-width: 991.98px) {
  .custom-select-wrapper select {
    background-position: left 20px center;
  }
}

html[dir=rtl] form {
  direction: rtl !important;
}

.select-2 select {
  width: 100%;
}

/* Main Select Box */
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 27px;
  min-height: 57px;
  padding: 5px 15px;
}
@media (max-width: 991.98px) {
  .select2-container--default .select2-selection--single {
    min-height: 38px;
  }
}

.select2-container .select2-selection--single .select2-selection__rendered {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: absolute;
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  inset-inline-end: 30px;
}
@media (max-width: 991.98px) {
  .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    inset-inline-end: 20px;
    top: -2px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  display: none !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #114782;
}

.select2-container--default .select2-results__option--selected {
  background-color: #EAECF0;
}

.select2-container {
  width: 100% !important;
}
