/* shortcuts  */
.showe {
  display: block !important;
}

.hiddeen {
  display: none;
}

.hr {
  background: #f1f1f1;
  width: 95%;
  padding: 1px;
  display: inline-block;
  margin: 1px auto;
}

.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn_success_gren {
  background-color: #27ae60;
  color: white !important;
}

.d-inline-block {
  display: inline-block;
}

.bac_white {
  background: white;
}

.bac_gray {
  background-color: #dddddd82;
}

.head_text {
  font-size: 1rem;
  font-weight: 600;
}

/* sidebar */
.navbar-header .navbar-brand .head_logo_text {
  display: inline-block;
  font-weight: 800;
  font-size: 30px;
}

.navbar-header .navbar-brand .head_logo_icon {
  width: 100%;
}

#sidebarnav {
  width: 95%;
  margin-left: 7px;
}

.arrow_nav {
  margin-left: 20%;
}

/* button */
.custom_but1 {
  border-radius: 5px;
  padding: 4px 4px;
  border: 1px solid;
  width: auto;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
  transition: ease-in-out 0.5s;
}

.custom_but_danger {
  border-radius: 5px;
  padding: 4px 4px;
  border: 1px solid;
  width: auto;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
  transition: ease-in-out 0.5s;
}

.buton_padding_icon {
  padding: 4px 15px !important;
}

.padding_smal_but {
  padding: 3px 30px !important;
}

.custom_but2 {
  border-radius: 5px;
  padding: 4px 4px;
  border: 1px solid;
  width: auto;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
  transition: ease-in-out 0.5s;
  background-color: transparent;
}

/* model */
.modal-body .adding_ded_data p {
  display: inline-block;
  padding-right: 0px;
  padding: 0px;
  color: #4e4d4d;
  margin: 10px 0px;
}

.modal-lg {
  width: 95% !important;
  max-width: 95% !important;
}

.modal-body .adding_ded_data img {
  width: 20px;
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 1060px;
  }
}

/* pagnatioon */
.pagnatioon {
  margin-top: 30px;
}

.pagnatioon nav {
  display: inline-block;
}

.pagnatioon .nextandback {
  border: none;
  border-radius: 5px;
}

.pagnatioon ul li {
  margin: 0 5px;
}

.pagnatioon ul li a {
  border-radius: 5px !important;
}

.pagnatioon ul li span {
  border-radius: 5px !important;
}

.scroll-sidebar2 {
  height: 100%;
  overflow: scroll;
}

/* change scroll style */
/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* -------------------------------------- */
/* new */
.edit_shope {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.edit_shope .item {
  width: 100%;
}

.edit_shope .item .card-body {
  min-height: 264px;
}

.edit_shope .item .card-body .content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 100%;
  min-height: 235px;
}

/* new */
.edit_shope .card .card-body p {
  font-size: 17px;
}

.edit_shope .card .card-body img {
  min-height: 120px;
  max-height: 120px;
}

.home_Summary .card .card-body img {
  height: 50px;
}

.home_Summary .card .card-body p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.website_visits .card .card-body img {
  height: 88px;
}

.website_visits .card .card-body .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.website_visits .card .card-body .content p {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.website_visits .card .card-body .content p span.visitorNumber {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  min-width: 40px;
  border-radius: 50%;
  background: #01529a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 3px;
}

.website_visits .card .card-body .content .head {
  font-size: 20px;
  font-weight: bold;
  color: #37474f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.website_visits .card .card-body .icon-clock {
  width: 20px;
  height: 20px;
  border: 2px solid #22cc66;
  /* لون إطار أخضر زاهي */
  border-radius: 50%;
  position: relative;
  display: inline-block;
  /* background: radial-gradient(circle at center, #fff 40%, #d6ffe0 100%); */
  animation: pulseClock 2s ease-in-out infinite;
}


.website_visits .card .card-body .icon-clock::before,
.website_visits .card .card-body .icon-clock::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: bottom center;
  border-radius: 1px;
}


.website_visits .card .card-body .icon-clock::before {
  width: 2px;
  height: 5px;
  background: #001f4d;
  animation: rotateHour 8s linear infinite;
}


.website_visits .card .card-body .icon-clock::after {
  width: 2px;
  height: 6px;
  background: #ff0000;
  animation: rotateSecond 2s linear infinite;
}


@keyframes rotateHour {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}


@keyframes rotateSecond {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}


@keyframes pulseClock {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(1, 82, 154, 0.6));
  }

  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(1, 82, 154, 0.8));
  }
}

.website_visits .card .card-body .col-md-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.website_visits a {
  cursor: auto;
  transition: transform 0.2s ease-in-out;
  display: block;
}

.website_visits a:hover {
  transform: scale(1.1) !important;
}

.card {
  position: relative;
}

.card .card_effect {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 0%;
  border-radius: 5px;
  transition: all ease-in-out 0.4s;
}

.card:hover .card_effect {
  height: 100% !important;
}

.summary_head,
.summary_data {
  transition: all ease-in-out 0.6s;
}

#morris-donut-chart text,
#morris-donut-chart tspan {
  font-family: "Tajawal", sans-serif !important;
  font-weight: normal !important;
}

.flot-chart {
  width: 100% !important;
  height: 350px !important;
}

.login-register {
  background-color: #01529ac2;
}

.Login_imege {
  position: absolute;
  width: 50%;
  right: 220px;
}

.login-register .shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #37474fa1;
}

.custom_input {
  position: relative;
}

.custom_input input {
  width: auto;
  padding-left: 40px;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 1px solid;
  border-radius: 20px;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom_input button {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.2rem 30px;
  margin-right: -40px;
  border-radius: 20px;
  border: 1px solid;
  width: auto;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
  transition: ease-in-out 0.5s;
}

.input-daterange {
  height: 30px;
}

.checkAll {
  display: block;
}

.UncheckAll {
  display: none;
}

.table_text_canter thead tr th,
.table_text_canter tbody tr td {
  text-align: center;
  vertical-align: middle !important;
}

.tabel_buton_icon {
  font-size: 17px !important;
  padding: 0px 15px !important;
  line-height: 1.2;
}

@media (min-width: 576px) {
  .ADD_MODAL .modal-dialog {
    max-width: 720px !important;
    margin: 30px auto;
  }
}

.catogry_img {
  width: 110px;
  height: 110px;
  display: inline-block;
  border-radius: 5px;
}

.catogry_buton {
  margin-top: 15px;
  padding: 0px 16px;
}

.catogry_group {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catogry_group button {
  width: 100%;
  background: transparent;
  border: none;
  height: 100%;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}

.catogry_group .dnl-index {
  display: none !important;
}

.catogry_group .dnl-title .dnl-graber .dnl-grab-icon {
  margin: 0;
  padding: 0;
  margin-right: 0 !important;
}

.catogry_group ul .dnl-title .dnl-graber .dnl-grab-icon {
  margin: 0;
  padding: 0;
}

.catogry_group ul {
  list-style: none;
}

.catogry_group li {
  border: 1px solid #ddd !important;
  padding: 7px;
  margin-top: 8px;
}

.catogry_group ul li {
  margin-right: 20px;
}

.catogry_group ul ul li {
  margin-right: 30px;
}

.catogry_group ul ul ul li {
  margin-right: 40px;
}

.catogry_group ul ul ul li {
  margin-right: 50px;
}

.catogry_group .dnl-grab-icon {
  font-size: 20px;
  padding: 0px 10px !important;
}

.masseg_valdiation {
  font-size: 12px;
  display: block;
}

.disabled_category {
  background-color: #ddd !important;
}

.disabled_category .dnl-grab-icon {
  display: none !important;
}

.tabel_img {
  width: 60px;
  height: 60px;
}

.Custom_dropdown {
  position: relative;
}

.Custom_dropdown .dropdown-menu {
  margin-top: 0px;
  right: 2px !important;
  left: auto !important;
  text-align: left;
}

.Custom_dropdown .dropdown-menu .dropdown-item {
  font-size: 14px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}

.Custom_dropdown2 {
  position: relative;
}

.Custom_dropdown2 .dropdown-menu {
  margin-top: 35px;
  right: 2px !important;
  left: auto !important;
  text-align: left;
}

.Custom_dropdown2 .dropdown-menu .dropdown-item {
  font-size: 14px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}

.No_discount_price {
  text-decoration-line: line-through;
  padding: 0 2px;
}

.discount_price {
  font-weight: bold;
  padding: 0 2px;
}

.tab_but_procedures {
  background-color: #f5f7f9;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  border: none;
  color: #37474f;
  height: 35px;
  width: 35px;
  font-size: 19px;
  line-height: 2;
  text-align: center;
}

/* =============================== new login ======================== */
.new_login_left .logo_img {
  width: 200px;
  height: 200px;
  display: inline-block;
  margin: 5px auto;
}

.new_login_left .login_butons {
  width: 100%;
  background-color: transparent;
  border: 2px solid #01529a;
  border-radius: 5px;
  text-align: center;
}

.new_login_left .login_butons button {
  background-color: transparent;
  border: none;
  text-align: center;
  width: 100%;
  padding: 15px;
  outline: none;
  cursor: pointer;
  color: #37474f;
  display: inline-block;
  transition: all ease-in-out 0.3s !important;
}

.new_login_left .login_butons button:hover {
  background-color: #01529a;
  color: #fff;
  font-weight: bold;
  transition: all ease-in-out 0.3s !important;
}

.new_login_left .login_butons .Active {
  background-color: #01529a;
  color: #fff;
  font-weight: bold;
}

.new_login_left .form-group .form-control {
  min-height: 40px !important;
}

.new_login_left .forget_password {
  font-size: 14px;
  font-weight: 700;
  color: #37474f;
}

.new_login_left .label-filter {
  color: #37474f;
  font-weight: 700;
  font-size: 14px;
}

.new_login_left .submit_but {
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  outline: none;
  cursor: pointer;
  background-color: #01529a;
  border: 1px solid #01529a;
  border-radius: 8px;
  transition: all ease-in-out 0.3s;
}

.new_login_left .submit_but:hover {
  background-color: transparent;
  color: #01529a;
  transition: all ease-in-out 0.3s;
}

.new_login_left .terms_contain {
  color: #37474f;
  font-size: 14px;
  font-weight: bold;
}

.new_login_left .terms {
  color: #01529a;
  cursor: pointer;
  padding: 0 2px;
  font-weight: bold;
}

.close_but {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  padding: 1px;
  height: 30px;
  width: 30px;
  border-radius: 20px;
}

#catogry_list .table span {
  display: inline-block;
}

#catogry_list .table td,
.table th {
  border-color: transparent !important;
  padding: 3px 0.75rem !important;
  vertical-align: baseline !important;
}

.add_photo_section {
  width: 100%;
  overflow: hidden;
  border: 2px dashed #ddd;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.add_photo_section .crrooper_cover img {
  width: 100%;
  height: 20vh;
}

.add_photo_section .crrooper_cover p {
  margin: 0;
}

.add_photo_section .crrooper_cover .img_size_note span {
  display: inline-block;
  width: auto;
  margin: 0;
  background: #FAFAFA;
  padding: 5px 15px;
  border: 2px dotted #ffe9e9;
  color: #2D3748;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.add_photo_section .crrooper_cover .img_size_note span i {
  color: #F06765;
}

.non_bac .select2-container--default .select2-selection--single {
  background-color: transparent !important;
}

.non_bac .select2-container--default .select2-selection--multiple {
  background-color: transparent !important;
}

.select2-container .select2-selection--multiple .head_iicon {
  background: #d4d0d091;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 2.3;
}

.ADD_producte .form-group label {
  margin-bottom: 0.8rem !important;
}

.show_photo {
  width: 100%;
  overflow: hidden;
  margin-top: 5px;
  padding: 5px;
  border: 2px solid;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.show_photo .chose_div [type="radio"]+label:before,
.show_photo [type="radio"]+label:after {
  content: "";
  position: absolute;
  left: 18px;
  top: -11px !important;
  margin: 4px;
  width: 15px;
  height: 15px;
  display: block !important;
  z-index: 0;
  transition: 0.28s ease;
}

.show_photo .imgContent .Delet_img {
  background-color: #ef5350;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #ef5350;
  cursor: pointer;
  padding: 0px;
  width: 15px;
  height: 15px;
  display: block;
  transition: all ease-in-out 0.5s;
  font-size: 10px;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 4px;
}

.show_photo .imgContent .Main_photo {
  background-color: #01529a;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #01529a;
  cursor: help;
  padding: 0px;
  width: 15px;
  height: 15px;
  display: block;
  transition: all ease-in-out 0.5s;
  font-size: 10px;
  text-align: center;
  position: absolute;
  top: 5px;
  left: 4px;
  display: none;
}

.show_photo .imgContent .Delet_img:hover {
  background-color: transparent;
  color: #ef5350;
}

.show_photo .ActiveMainPhoto .Main_photo {
  display: block !important;
}

.show_photo .imgContent {
  position: relative;
  width: 85px;
  margin: 6px 1px;
}

.imgContent .overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #37474f;
  width: 100%;
  height: 0%;
  display: block;
  opacity: 0;
  text-align: center;
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  /* Firefox 4 */
  -webkit-transition: all ease-in-out 0.5s;
  /* Safari and Chrome */
  -o-transition: all ease-in-out 0.5s;
  /* Opera */
  -ms-transition: all ease-in-out 0.5s;
  /* Explorer 10 */
}

.imgContent:hover .overlay {
  opacity: 1;
  height: 100%;
}

.imgContent .overlay .chose_div {
  margin-top: 30px;
  color: white;
}

.chose_div [type="radio"]+label:before,
[type="radio"]+label:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 0px;
  margin: 4px;
  width: 15px;
  height: 15px;
  display: block !important;
  z-index: 0;
  transition: 0.28s ease;
}

.chose_div [type="radio"]:not(:checked)+label {
  padding-left: 0;
  padding-right: 0px;
  height: 26px;
  line-height: 32px;
  font-weight: normal;
  font-size: 10px;
}

.chose_div [type="radio"]:checked+label {
  padding-left: 1px;
  height: 25px;
  line-height: 25px;
  font-weight: normal;
  padding-right: 1px;
  padding-top: 3px;
  font-size: 10px;
}

.show_more_less {
  height: 55px;
  overflow: hidden !important;
}

.routae_i i {
  transform: rotate(180deg);
}

.popup_info {
  cursor: pointer;
  font-size: 15px;
  padding: 0;
}

.textarea_editor1 body {
  text-align: right !important;
}

.Custom_margine_button {
  margin-top: 35px;
}

.up_File .fileUpload {
  background: #01529a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  overflow: hidden;
  padding: 4px;
  position: relative;
  text-align: center;
  cursor: pointer !important;
  display: inline;
  margin: 0;
  cursor: pointer !important;
  border: 1px solid #01529a;
  transition: ease-in-out 0.5s;
}

.up_File .fileUpload:hover,
.up_File .fileUpload:active,
.up_File .fileUpload:focus {
  background: transparent;
  cursor: pointer;
  color: #01529a;
  border: 1px solid #01529a;
}

.up_File .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.up_File input[type="file"] {
  position: fixed;
  right: 100%;
  bottom: 100%;
}

.up_File .custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.form-group .input-group-addon {
  padding: 0.3rem 0.75rem !important;
}

.form-group .addon_button {
  background-color: #01529a;
  border-left: 1px solid rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  color: #fff;
}

.Request_stat1 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #4a4ca4;
  font-size: 10px !important;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.Request_stat2 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #01529a !important;
  font-size: 10px !important;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.Request_stat3 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #fcc739;
  font-size: 10px !important;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.Request_stat4 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #28a3c1;
  font-size: 10px !important;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
}

.Request_stat5 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #39d5ad;
  font-size: 10px !important;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.Request_stat6 {
  display: inline-block;
  margin: 0;
  padding: 3px 10px;
  background-color: #dddddd82;
  color: #eb6460;
  font-size: 10px !important;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.Custom_dropdown .Custom_dropdown_opation {
  background: #fbfbfb;
  width: 100%;
  border: 1px solid #00000024;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  padding: 12px 0;
  border-radius: 0px;
  position: absolute;
  right: -50%;
  top: 0px;
  z-index: 99999;
  border-radius: 5px;
  display: none;
  box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
}

.Custom_dropdown_opation a {
  width: 100%;
  background: transparent;
  outline: none !important;
  border: none;
  color: #37474f;
  text-decoration: none;
  display: block;
  padding: 4px 0px 4px 20px;
}

.Custom_dropdown_opation a:hover {
  background: #f2f4f8;
}

#edit_requst_stat:hover .Custom_dropdown_opation {
  opacity: 1;
  right: 100%;
  display: block !important;
}

.Custom_dropdown .Custom_dropdown_opation2 {
  background: #fbfbfb;
  width: 100%;
  border: 1px solid #00000024;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  padding: 12px 0;
  border-radius: 0px;
  position: absolute;
  right: -50%;
  top: 40px;
  z-index: 99999;
  border-radius: 5px;
  display: none;
  box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
}

.Custom_dropdown_opation2 a {
  width: 100%;
  background: transparent;
  outline: none !important;
  border: none;
  color: #37474f;
  text-decoration: none;
  display: block;
  padding: 4px 0px 4px 20px;
}

.Custom_dropdown_opation2 a:hover {
  background: #f2f4f8;
}

#edit_requst_stat2:hover .Custom_dropdown_opation2 {
  opacity: 1;
  right: 100%;
  display: block !important;
}

.filtter_buton {
  text-align: left;
}

.sttats_circl_span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.circle_all {
  background: #50748c;
}

.circle_state1 {
  background: #4a4ca4;
}

.circle_state2 {
  background: #01529a;
}

.circle_state3 {
  background: #fcc739;
}

.circle_state4 {
  background: #28a3c1;
}

.circle_state5 {
  background: #39d5ad;
}

.circle_state6 {
  background: #eb6460;
}

.circle_state7 {
  background-color: red;
}

.filtter_buton button {
  border-radius: 3px;
  padding: 4px 8px;
  border: 1px solid #37474f;
  width: auto;
  font-size: 14px;
  color: #37474f;
  cursor: pointer;
  margin: 0 2px;
  outline: none !important;
  transition: ease-in-out 0.5s;
  background-color: transparent;
}

.filtter_buton button:hover {
  background: #37474f;
  color: #fff;
}

.filtter_buton .stat_Active {
  background: #37474f !important;
  color: #fff !important;
}

.requst_info_but .filtter_buton {
  display: flex;
  justify-content: center;
}

.requst_info_but .filtter_buton button {
  margin: 10px;
}

.recoust_info_data {
  display: flex;
  justify-content: space-between;
}

.recoust_info_data p {
  font-size: 15px;
  font-weight: bold;
  color: #949292;
  margin: 0;
}

.recoust_info_data p button {
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  display: inline;
  border: none;
}

.recoust_info_data .add_nots {
  display: block;
  margin: 0;
  background-color: rgb(238 238 238) !important;
  color: #37474f;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
}

.user_info img {
  width: 90px;
  height: 90px;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  padding: 5px;
}

.user_info_data div,
.Shipping_company_data div,
.payment_data div {
  margin: 0;
  margin-bottom: 2px;
}

.user_info_data div p,
.Shipping_company_data div p,
.payment_data div p {
  display: inline-block;
  margin: 0;
}

.Shipping_company,
.payment {
  background-color: #f4f5f7;
  padding: 12px 17px 12px 5px;
}

.Shipping_company p,
.payment p {
  margin: 0;
  font-weight: bold;
  display: inline-block;
}

.Shipping_company p span {
  font-weight: normal;
  color: #01529a;
}

.Shipping_company_data p a i {
  font-size: 23px;
  margin: 0 14px;
}

.requst_info_height {
  min-height: 270px;
}

.note_data {
  border: 1px solid #ebebeb;
  padding: 15px 15px 15px 3px;
}

.note_data p {
  margin: 0;
  font-size: 13px;
  margin-top: 3px;
}

.requst_edit_input {
  width: auto;
  display: inline-block;
  border: none;
  background-color: #f4f5f7;
  color: black;
  font-size: 13px;
  padding: 2px 7px;
}

.requst_edit_data {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none !important;
  font-size: 14px;
  padding: 0;
  display: inline-block;
  color: #37474f;
}

.Save_requst_but {
  background: transparent;
  border: none;
  font-size: 13px;
  color: blue;
  font-weight: 600;
  cursor: pointer;
}

.countries_requst_edit_data {
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 14px;
  padding: 0;
  display: inline-block;
  color: #fff;
}

.countries_Save_requst_but {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.countries_requst_edit_input {
  width: auto;
  display: inline-block;
  border: none;
  border-radius: 5px;
  background-color: #d4d4d4;
  color: black;
  font-size: 13px;
  padding: 2px 7px;
  margin: 0px 5px;
}

.edit_rqust_number {
  display: inline-block;
}

.datepicker {
  z-index: 9999 !important;
}

.pr_data {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.pr_data .re-photo,
.pr_data .re-nam,
.pr_data .re-barcode,
.pr_data .re-quantity,
.pr_data .re-price {
  width: calc(100% / 5.4);
  overflow: hidden;
  text-align: center;
  /* margin: 10px 6px; */
}

.pr_data .re-photo h4,
.pr_data .re-nam h4,
.pr_data .re-barcode h4,
.pr_data .re-quantity h4,
.pr_data .re-price h4 {
  font-weight: bold;
  font-size: 14px;
}

.pr_data .re-photo p,
.pr_data .re-nam p,
.pr_data .re-barcode p,
.pr_data .re-quantity p,
.pr_data .re-price p {
  margin: 0;
  margin-top: 20px;
}

.pr_data .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr_data .icon i {
  font-size: 30px;
  color: #3f3d56;
}

.tard_road {
  border-bottom: 7px solid #27ae60 !important;
  background-color: #f4f5f7;
}

.tard_road h5 {
  color: #37474f;
  font-weight: bold;
}

.tard_road p {
  margin-bottom: 5px;
}

.Noti_previwe_photo {
  position: relative;
  text-align: center;
  border: 1px solid #37474f;
  border-radius: 15px;
  padding: 5px;
}

.Noti_previwe_photo img {
  width: 220px;
  height: 220px;
  display: inline-block;
}

.Noti_previwe_photo button {
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  padding: 0 !important;
  text-align: center;
}

.reports_buton {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.reports_buton button {
  border-radius: 3px;
  padding: 4px 8px;
  border: 1px solid #37474f;
  width: auto;
  font-size: 14px;
  color: #37474f;
  cursor: pointer;
  margin: 0 2px;
  outline: none !important;
  transition: ease-in-out 0.5s;
  background-color: transparent;
}

.reports_buton button:hover {
  background: #37474f;
  color: #fff;
}

.reports_buton .Active {
  background: #37474f;
  color: #fff;
}

.No_report {
  max-width: 400px;
  max-height: 400px;
  display: inline;
  margin: 5px auto;
  width: 90%;
}

#the-count,
#the-count2,
#the-count2-1,
#the-count2-2 {
  display: inline-block;
  margin: 0 2px;
  background: #e2e2e2;
  padding: 1px 13px;
  border-radius: 5px;
  font-size: 18px;
}

.set_not {
  font-size: 13px;
}

.form_edit_subCat_area .img-container {
  max-height: 300px;
}

.set_nam {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  margin-top: 15px;
}

.SMS_nam {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  margin-top: 15px;
  background: #ffb22b !important;
  color: white;
  padding: 5px 0px;
  border-radius: 10px;
}

.set_icon {
  font-size: 50px;
  margin: 0;
}

.settings_card .card {
  box-shadow: none;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}

.settings_card .card:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pay_icon img {
  display: inline-block;
  width: 120px;
}

.SMS_icon {
  display: inline;
}

.SMS_icon img {
  display: inline-block;
  width: 160px;
}

.set_counteris_button {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  outline: none !important;
}

.set_counteris_button .card {
  box-shadow: none;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
}

.set_counteris_button .card:hover {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.set_counteris_button .set_nam {
  font-size: 23px;
}

.set_counteris_button .pay_icon img {
  width: 90px;
}

.Set_button_Activ .card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}

.Set_button_Activ .card {
  background-color: #01529ac9;
}

.Set_button_Activ p {
  color: #fff !important;
}

.sms_content {
  background: #dddddd42;
  padding: 5px 30px;
  border-radius: 7px;
  margin-top: 10px;
}

.account_seeting {
  background: #dddddd42;
  padding: 10px 10px;
  border-radius: 7px;
  margin-top: 10px;
  line-height: 1;
}

.recoed_edit,
.receiptPhoto {
  background: transparent;
  border: 1px solid #37474f;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 25px;
  height: 25px;
  padding: 2px;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  outline: none;
  color: #37474f;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
}

.recoed_edit:hover,
.receiptPhoto:hover {
  background: #37474f;
  color: white;
}

.flex_paymentHead {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: space-around;
}

.add_Permissions_content .add_Permissions_scroll {
  overflow: hidden;
  max-height: 190px;
  padding-top: 5px;
}

.add_Permissions_content .checkbox {
  margin-right: 10px;
}

.add_Permissions_content {
  border: 1px solid #ddd !important;
  box-shadow: none !important;
}

.add_Permissions_content .card-body {
  padding: 5px;
}

.permetion_content {
  display: inline-block;
  margin-top: 3px;
  padding: 4px 7px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  background: #37474f;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.Show_password {
  background-color: transparent;
  border: none;
  outline: none;
  color: black;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 999;
}

.password_content {
  position: relative;
}

.permissions_head label {
  font-size: 14px;
}

.add_Permissions_scroll label {
  font-size: 12px;
}

.Login_Logo {
  max-width: 230px;
  max-height: 230px;
}

.custom_login_alert {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  font-size: 13px;
  animation: wiggle 2s linear infinite;
  -webkit-animation: wiggle 2s linear infinite;
}

@keyframes wiggle {

  0%,
  7% {
    transform: rotateZ(0);
  }

  15% {
    transform: rotateZ(-15deg);
  }

  20% {
    transform: rotateZ(10deg);
  }

  25% {
    transform: rotateZ(-10deg);
  }

  30% {
    transform: rotateZ(6deg);
  }

  35% {
    transform: rotateZ(-4deg);
  }

  40%,
  100% {
    transform: rotateZ(0);
  }
}

.Svg_admin {
  width: 100%;
  max-height: 400px;
}

/* responsive fore login */

@media only screen and (max-width: 1190px) {
  .Login_imege {
    right: 90px;
  }
}

@media only screen and (max-width: 930px) {
  .Login_imege {
    right: 20px;
  }
}

@media only screen and (max-width: 780px) {
  .Login_imege {
    right: 0px;
    position: relative;
  }

  .login_content {
    display: block !important;
  }

  .form_bac {
    width: 100% !important;
    height: auto;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .Login_imege {
    position: relative;
    width: 100%;
    max-height: 240px;
  }

  .login-box .card-body .form-horizontal a img {
    max-width: 180px !important;
    max-height: 150px;
  }

  #wrapper {
    height: 100vh;
    overflow: scroll;
  }

  #wrapper::-webkit-scrollbar {
    width: 2px;
  }

  .login-sidebar .login-box {
    height: auto !important;
  }

  .Upload_img_responsive .img-container {
    height: auto;
    max-height: 250px;
  }
}

@media only screen and (max-width: 575px) {
  .Svg_admin {
    display: none;
  }
}

.up_logo_setting .img-container {
  height: 255px !important;
  max-height: 275px !important;
  max-width: 100% !important;
}

.Open_store {
  background: transparent;
  border: 1px solid #01529a;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
  width: auto;
  padding: 3px 25px;
  margin: 0;
  color: #01529a;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}

.Open_store:hover {
  background: #01529a;
  color: #ffffff;
}

.Labels_content {
  position: relative;
}

.Labels_content .ribbon-vertical-l {
  clear: none;
  padding: 0 5px;
  height: 15px;
  width: 12px;
  line-height: 5px;
  text-align: center;
  left: 12px;
  top: -2px;
}

.Labels_content .ribbon-bookmark.ribbon-vertical-l:before {
  top: 100%;
  left: 0;
  margin-top: -4px;
  border-bottom: 11px solid transparent;
}

.Labels_content .ribbon-bookmark:before {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  content: "";
}

.ribbon-color1 {
  background: #fda403;
}

.ribbon-color1:before {
  border-right: 6px solid #fda403 !important;
  border: 6px solid #fda403;
}

.ribbon-color2 {
  background: #898121;
}

.ribbon-color2:before {
  border-right: 6px solid #898121 !important;
  border: 6px solid #898121;
}

.ribbon-color3 {
  background: #e178c5;
}

.ribbon-color3:before {
  border-right: 6px solid #e178c5 !important;
  border: 6px solid #e178c5;
}

.ribbon-color4 {
  background: #124076;
}

.ribbon-color4:before {
  border-right: 6px solid #124076 !important;
  border: 6px solid #124076;
}

.ribbon-color5 {
  background: #7f27ff;
}

.ribbon-color5:before {
  border-right: 6px solid #7f27ff !important;
  border: 6px solid #7f27ff;
}

.ribbon-color6 {
  background: #cdfadb;
}

.ribbon-color6:before {
  border-right: 6px solid #cdfadb !important;
  border: 6px solid #cdfadb;
}

.ribbon-color7 {
  background: #fc6736;
}

.ribbon-color7:before {
  border-right: 6px solid #fc6736 !important;
  border: 6px solid #fc6736;
}

.ribbon-color8 {
  background: #820300;
}

.ribbon-color8:before {
  border-right: 6px solid #820300 !important;
  border: 6px solid #820300;
}

.ribbon-color9 {
  background: #245953;
}

.ribbon-color9:before {
  border-right: 6px solid #245953 !important;
  border: 6px solid #245953;
}

.ribbon-color10 {
  background: #352f44;
}

.ribbon-color10:before {
  border-right: 6px solid #352f44 !important;
  border: 6px solid #352f44;
}

.mark_color1 {
  color: #fda403;
}

.mark_color2 {
  color: #898121;
}

.mark_color3 {
  color: #e178c5;
}

.mark_color4 {
  color: #124076;
}

.mark_color5 {
  color: #7f27ff;
}

.mark_color6 {
  color: #cdfadb;
}

.mark_color7 {
  color: #fc6736;
}

.mark_color8 {
  color: #820300;
}

.mark_color9 {
  color: #245953;
}

.mark_color10 {
  color: #352f44;
}

.Custom_label_select .btn {
  min-height: 30px !important;
  height: 30px !important;
  font-size: 14px;
  padding: 2px 5px !important;
  outline: none !important;
}

.Custom_label_select .btn-group {
  height: 30px !important;
}

.Custom_label_select .dropdown-toggle::after {
  margin-left: -1.7em;
  margin-top: 10px;
}

.Custom_label_select .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

.Custom_label_select .btn-default:focus {
  background-color: transparent !important;
}

.Custom_label_select .btn:focus {
  box-shadow: none !important;
}

.Custom_label_select .bootstrap-select .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.Custom_label_select .custom-select {
  background: none !important;
}

.add_Proudact_add_img .img-container {
  max-height: 440px;
}

.legend table {
  left: 5px !important;
  right: auto !important;
}

.dnl-icon-collapsed {
  transform: rotate(180deg);
}

/* .recoust_info_data p>.requst_way,
.recoust_info_data p>.requst_Time {
  float: right;
} */

.delvery_padding {
  padding: 0px 40px !important;
}

.nowrap {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.login_bacColor {
  background-color: #01529ac2;
  min-height: 100vh;
}

.form_bac {
  background-color: #fff;
  min-height: 100vh;
  width: calc(100% - 66.6%);
  padding: 10px 20px;
}

.login_content {
  display: flex;
  justify-content: left;
  align-items: center;
}

.login_content label {
  font-size: 15px;
  padding-bottom: 5px;
  font-weight: 700;
}

.login_content .form-group .form-control {
  min-height: 30px;
  display: initial;
  font-size: 15px;
  padding: 7px 5px;
  font-weight: 500;
}

.login_content .input-group .form-control {
  min-height: 30px;
  display: initial;
  font-size: 15px;
  padding: 7px 5px;
  font-weight: 500;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.login_content .input-group .Show_password {
  top: 7px;
}

.lost_pass {
  background-color: transparent;
  color: #01529a;
  outline: none;
  border: none;
  cursor: pointer;
}

.login_sumb {
  border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  -ms-border-radius: 3px !important;
  -o-border-radius: 3px !important;
  font-size: 16px;
  font-weight: 600;
}

#reset_pass {
  display: none;
}

.edit_shope .card-body .text_text {
  min-height: 90px;
}

.flot-chart .legend>div {
  left: 5px !important;
  right: auto !important;
}

.addetional_option {
  padding: 20px 10px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.addetional_option_h {
  color: #000;
  margin-top: 20px;
}

.addetional_option_h span {
  font-size: 15px;
  color: #5a5a5a;
}

/* .addetional_option .checkbox {
  margin: 5px 20px;
} */

.admin_virion {
  margin: 0 5px;
  color: #848484;
}

.addation_option {
  border: 1px solid #f3f1f1;
}

.addation_option p {
  margin: 0;
  font-size: 14px;
  text-align: left;
}

.addation_option p span {
  padding: 0px 10px;
}

.delet_addation {
  color: #ef5350 !important;
  font-size: 15px;
}

/* new */

.theem_edit {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-around;
}

.theem_border {
  width: 2px;
  height: 30px;
  background-color: #67757c;
}

.theem_edit .custom_but1 {
  padding: 6px 20px;
}

.previwe_theem {
  /* min-height: 100vh;
  padding: 10px;
  border: 1px solid #67757c;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  position: relative; */
  margin-top: 10px;
}

.previwe_theem iframe {
  display: block;
  width: 100%;
  height: 100vh;
  background: lightyellow;
  border: none;
}

.Custom_select .select-dropdown {
  position: relative;
  display: block;
  max-width: 100%;
  min-width: 100%;
  height: 30px;
}

.Custom_select .select-dropdown__button {
  padding: 0.2rem 0.4rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #666666;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.Custom_select .select-dropdown__button::focus {
  outline: none;
}

.Custom_select .select-dropdown__button .zmdi-chevron-down {
  position: absolute;
  right: 10px;
  top: 12px;
}

.Custom_select .select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 0px 0px 20px 0px;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 4;
  border: 2px solid #ddd;
  border-top: navajowhite;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-bottom: 60px;
}

.Custom_select .select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}

.Custom_select .select-dropdown__list-item {
  display: flex;
  list-style-type: none;
  padding: 2px 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #cbcbcb;
  transition: all ease-in-out 0.3s;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.Custom_select .select-dropdown__list-item p {
  margin: 0;
}

.Custom_select .select-dropdown__list-item .dot_img img {
  width: 40px;
  height: 40px;
}

.Custom_select .select-dropdown__list-item:hover {
  color: #01529a;
}

.Custom_select .select-dropdown__button i {
  margin-top: 5px;
}

.Custom_select .select-dropdown__button {
  display: flex;
  justify-content: space-between;
}

.Custom_select .select-dropdown__button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Customization_options {
  position: absolute;
  left: -100%;
  top: 0px;
  background-color: #fff;
  padding: 30px 15px;
  z-index: 9;
  min-height: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 15px;
  max-height: 100vh;
  height: 100vh;
  width: 370px;
}

.customiz_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #eee;
}

.close_Customization_options2 {
  color: black;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  border: none;
  border-left: 1px solid #ddd;
  width: 60px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all linear 0.4s;
  flex-direction: column;
  gap: 0;
}

.close_Customization_options2:hover {
  background-color: #fff;
  border-top: 10px solid #01529a;
  color: #ef5350;
}

.customize_section .customiz_head .save_home_edits {
  font-size: 16px;
  padding: 4px 23px;
  font-weight: bold;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-right: 10px;
  background-color: #39d5ad;
  border-color: #39d5ad;
}

.customize_section .customiz_head .save_home_edits:hover {
  background-color: transparent;
  color: #39d5ad;
}

.customize_section .customiz_head .save_home_edits i {
  font-size: 17px;
}

.scond_customiz_head_contain {
  padding: 10px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.scond_customiz_head_contain span {
  font-size: 17px;
  color: #555d66;
}

.main_tittle ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 60px;
}

.main_tittle ul li {
  display: block;
  width: 100%;
  margin: 3px 0px;
}

.main_tittle ul li button {
  display: flex;
  width: 100%;
  color: #555d66;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  border-left: 4px solid #fff;
  font-size: 14px;
  font-weight: 600;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 10px;
  transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -webkit-transition: 0.15s color ease-in-out,
    0.15s background-color ease-in-out, 0.15s border-color ease-in-out;
  -moz-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -ms-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -o-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
}

.main_tittle ul li button:hover {
  color: #01529a;
  background: #f3f3f5;
  border-left-color: #01529a;
}

.third_customiz_head_contain {
  padding: 3px;
  min-height: 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.third_customiz_head_contain span {
  font-size: 17px;
  color: #555d66;
  display: block;
}

.third_customiz_head_contain .back_buton button {
  color: black;
  background-color: transparent;
  font-size: 30px;
  font-weight: bold;
  border: none;
  border-right: 1px solid #ddd;
  outline: none;
  width: 60px;
  height: 70px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all linear 0.4s;
  -webkit-transition: all linear 0.4s;
  -moz-transition: all linear 0.4s;
  -ms-transition: all linear 0.4s;
  -o-transition: all linear 0.4s;
}

.third_customiz_head_contain .back_buton button i {
  transform: rotate(180deg);
}

.third_customiz_head_contain .back_buton button:hover {
  background-color: #f3f3f5;
  border-left: 3px solid #01529a;
  color: #01529a;
}

.third_customiz_head_contain .customize_data {
  margin-left: 10px;
}

.add_section,
.section_data,
.sort_sections,
.third_customiz_head,
.Site_color_contain,
.site_logo_contain,
.Site_Name_contain,
.text_add_contain,
.customFontsContain,
.home_page_times {
  display: none;
}

.all_section,
.sort_sections {
  margin-top: 20px;
}

.all_section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 60px;
}

.all_section ul li {
  display: flex;
  width: 100%;
  margin: 3px 0px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.all_section ul li button.home_page_sections {
  display: flex;
  width: 100%;
  color: #555d66;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  border-left: 4px solid #fff;
  font-size: 14px;
  font-weight: 600;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 10px;
  transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -webkit-transition: 0.15s color ease-in-out,
    0.15s background-color ease-in-out, 0.15s border-color ease-in-out;
  -moz-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -ms-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
  -o-transition: 0.15s color ease-in-out, 0.15s background-color ease-in-out,
    0.15s border-color ease-in-out;
}

.all_section ul li button.home_page_sections:hover {
  color: #01529a;
  background: #f3f3f5;
  border-left-color: #01529a;
}

.all_section .Delete_This_sections {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border: 1px solid #ef5350;
  color: #fff;
  background: #ef5350;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  cursor: pointer;
  margin-left: 5px;
}

.all_section .Delete_This_sections:hover {
  border: 1px solid #ef5350ad;
  background: #ef5350ad;
}

.customize_section {
  display: none;
}

.Add_adds,
.Add_product_section,
.Add_Display_brands,
.Add_main_category {
  margin-top: 40px;
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  display: none;
}

.add_section .form_buttons {
  display: none;
}

.customize_section .customiz_contain {
  margin-bottom: 300px !important;
}

.theme_salary {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.theme_salary p.free {
  margin: 0;
  background: #39d5ad;
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding: 3px 9px;
  border-radius: 5px;
}

.theme_salary p.Not_free {
  margin: 0;
  background: #538aba;
  font-size: 16px;
  font-weight: bold;
  color: white;
  padding: 3px 9px;
  border-radius: 5px;
}

.theme_salary .border {
  display: block;
  border: 0 !important;
  width: 2px;
  height: 25px;
  background: #ddd;
}

.theme_salary .switch {
  display: inline-block;
}

.themes_view .them_description {
  font-size: 12px;
}

.Edit_thems {
  padding-bottom: 100px;
}

/*  */
.button_tab button {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #7ca4c6;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.button_tab button:hover {
  background-color: #fff;
  color: #01529a;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.button_tab button.Active {
  background-color: #fff;
  font-weight: 500;
  color: #01529a;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.subscribe_big_Contain,
.resets_sammery {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-top-left-radius: 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  min-height: 900px;
}

.subscribe_big_Contain .head_section {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 500;
  color: #05091e;
}

.package_data {
  background: #fbfbfb;
  margin: 5px 10px;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.package_data p {
  margin: 0;
  margin-top: 15px;
}

.package_data p:first-child {
  margin-top: 0px;
}

.package_data p span:first-child {
  font-size: 17px;
  color: #484845;
  font-weight: 700;
}

.package_data p span:last-child {
  font-size: 15px;
  font-weight: 500;
  color: #484845;
}

.package_active {
  color: #39d5ad;
  padding: 2px 15px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.package_Unactive {
  color: #ef5350 !important;
  padding: 2px 15px;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  -moz-border-radius: 20px !important;
  -ms-border-radius: 20px !important;
  -o-border-radius: 20px !important;
}

/* .package_type .pricing-plan {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
} */

.package_type .pricing-plan .pricing-box {
  width: 100%;
}

.package_type .pricing-plan .price-table-content .price-row {
  padding: 20px !important;
}

.package_type .pricing-plan .price-table-content .price-row p {
  margin: 0;
  margin-bottom: 15px;
}

.package_type .pricing-plan .price-table-content .price-row p:last-child {
  margin-bottom: 0px;
}

.package_type .pricing-plan .price-lable {
  width: 160px !important;
}

.massage_package {
  width: 100%;
  margin-top: 15px;
  padding: 10px 20px;
  border: 2px solid #ebf3f5;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  background: #fff;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin: 5px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.subscription_model .massage_package {
  padding: 10px 15px;
}

.massage_package:hover {
  background-color: #ebf3f5;
}

.massage_package .text span {
  font-size: 13px;
}

.massage_package .form-check-label {
  font-size: 15px;
  font-weight: 600;
  display: block;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: #000;
}

.massage_package .form-check-label span {
  font-size: 10px;
  display: block;
  margin-top: 10px;
}

.massage_package .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #01529a;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  left: 0;
  opacity: 1;
  margin-left: 30px;
  margin-right: 0;
}

.massage_package_contain {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

.package_data_head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.un_choose {
  /* border: 1px solid #ef5350; */
  border-radius: 15px;
  border: none;
  color: #ef5350;
  padding: 5px 20px;
  font-size: 16px;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.subscription_type,
.payment_type {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.subscription_type .item {
  margin: 5px;
  width: calc(100% / 3.3);
  margin-bottom: 0;
}

.payment_type .item {
  margin: 5px;
  width: calc(100% / 3.3);
  margin-bottom: 0;
}

.subscription_type .item input[type="radio"],
.payment_type .item input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.subscription_type .item label,
.payment_type .item label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  font-size: 15px;
  text-transform: uppercase;
  background: #f4f4f4;
  white-space: normal;
  text-overflow: ellipsis;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.payment_type .item label {
  height: 90px;
}

.subscription_type .item label span:first-child,
.payment_type .item label span:first-child {
  font-weight: bold;
  font-size: 20px;
}

.payment_type .item label img {
  display: inline-block;
  width: 40px;
  margin-top: 10px;
}

.subscription_type .item label::after,
.subscription_type .item label::before {
  display: none !important;
}

.payment_type .item label::after,
.payment_type .item label::before {
  display: none !important;
}

.subscription_type .item input[type="radio"]:checked+label,
.payment_type .item input[type="radio"]:checked+label {
  border: 3px solid #d1fadf;
  background-color: #d1fadf;
  color: #39d5ad;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.subscription_type .item label:hover,
.payment_type .item label:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.bank_data {
  padding: 30px 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.bank_data .transfer_name {
  text-align: center;
  background: #f0f2f4;
  padding: 6px 0px;
  border-radius: 11px;
}

.bank_data .transfer_name span:first-child {
  font-size: 18px;
  color: #01529a;
  font-weight: 700;
}

.bank_data .transfer_name span:last-child {
  font-size: 15px;
  color: #7ca4c6;
  font-weight: 700;
}

.bank_data .form-group label {
  font-size: 18px;
  color: #01529a;
  font-weight: 500;
}

.bank_data .form-group .form-control {
  font-size: 17px;
  padding: 5px 15px;
}

.bank_data .input-group-addon {
  color: #01529a;
  cursor: pointer;
}

.bank_data .input-group-addon:hover {
  color: #7ca4c6;
}

.sammery_data {
  padding: 20px 25px;
  border: 3px solid #cfcfcf;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.sammery_data h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.sammery_data h1 span {
  font-size: 15px;
  color: #484845;
  font-weight: 700;
}

.sammery_data p span {
  font-size: 15px;
  color: #484845;
  font-weight: 700;
}

.sammery_data p {
  margin: 0;
}

.form_pay_now {
  height: 50px;
  font-size: 20px;
  width: 50%;
}

.discount_form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #01529a;
  border-radius: 5px;
}

.discount_form input {
  border: none;
  height: 48px;
  padding: 0px 10px;
  font-size: 16px;
  color: var(--TextColor);
  width: 100%;
  margin-right: 70px;
  background-color: transparent;
}

.discount_form button {
  width: 150px;
  height: 50px;
  border: none;
  background-color: transparent;
  color: #01529a;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.Total_price {
  margin: 0px !important;
}

.Total_price span:first-child {
  color: #01529a !important;
  font-size: 20px !important;
  font-weight: bold !important;
}

.Total_price span:last-child {
  color: #01529a !important;
  font-size: 18px !important;
  font-weight: bold !important;
}

.resets_sammery {
  display: none;
}

.rotat_icon i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.domain_head {
  margin-top: 50px;
  font-size: 45px;
  font-weight: bold;
  color: #01529a;
  margin-bottom: 0;
}

.domain_small_head {
  margin: 0;
  margin-top: 10px;
  font-size: 16px;
  color: #000;
}

.choose_your_way {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.choose_your_way .form-inputs {
  padding: 0 10px;
}

.input_search_domain {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 50px;
}

.input_search_domain .form-group {
  width: calc(100% - 180px);
  margin: 0;
}

.domains_available {
  margin-top: 30px;
}

.domains_available h4 {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 15px 0px;
  width: 100%;
  color: #000;
  background-color: #fbfbfb;
}

.domains_available ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.domains_available ul li {
  background: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  border: 2px solid #ccc;
  border-left: 6px solid #01529a;
}

.domains_available ul li p {
  margin: 0;
  font-size: 15px;
  font-weight: bold;
  color: #01529a;
}

.domains_available ul li button {
  background-color: #01529a;
  border: 1px solid #01529a;
  color: #fff;
  padding: 5px 23px;
  cursor: pointer;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  display: block;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.domains_available ul li button:hover {
  background-color: transparent;
  color: #01529a;
}

.step_buttons {
  margin-top: 40px;
  text-align: right;
}

.step2,
.step3,
.last_step {
  display: none;
}

/*  */

.pricing_plan .switch label input[type="checkbox"]:checked+.lever.switch-col-blue {
  background-color: #e4e4e4;
}

.pricing_plan .switch label .lever:after {
  width: 15px;
  height: 15px;
  top: 5px;
}

.pricing_plan .switch label input[type="checkbox"]:checked+.lever:after {
  right: 28px;
  left: auto;
}

.pricing_plan .switch label .lever {
  width: 50px;
  height: 25px;
}

.pricing_plan .switch label .lever:after {
  background-color: #01529a;
}

.pricing_plan .switch label .lever:after {
  right: 7px;
  left: auto;
}

.pricing_plan .switch label .lever {
  background-color: #e4e4e4;
}

.pricing_plan p {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  color: #01519b;
}

.pricing_plan p:last-child {
  color: #797979;
}

.pricing_plan {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #dcdcdc;
  padding-bottom: 22px;
}

.pricing_box {
  border: 3px solid #ccc;
  border-radius: 20px;
  padding: 24px 25px;
  min-height: 760px;
  position: relative;
  margin-top: 20px;
}

.pricing_head {
  text-align: center;
  padding: 20px 0px;
  border-bottom: 2px solid #404040;
}

.pricing_head .pricing_name {
  font-size: 25px;
  font-weight: 600;
  color: #000;
}

.pricing_head .pricing_sallary {
  font-size: 55px;
  font-weight: 500;
  margin-top: 20px;
}

.pricing_head .pricing_sallary label {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.pricing_head .monthly_salary {
  margin: 0;
  font-size: 17px;
  background: rgb(4, 76, 141);
  background: linear-gradient(66deg,
      rgba(4, 76, 141, 0.9472163865546218) 0%,
      rgba(23, 42, 45, 1) 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 9px;
}

.pricing_features {
  padding: 30px 0px;
  min-height: 400px;
}

.pricing_features p {
  margin: 0;
  margin-top: 12px;
  font-size: 15px;
  color: #282828;
  font-weight: 500;
  white-space: pre-wrap;
}

.pricing_features p:first-child {
  margin-top: 0 !important;
}

.price_row button {
  background-color: #01529a;
  border: 1px solid #01529a;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 8px 0px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.price_row button:hover {
  background-color: transparent;
  color: #01529a;
}

.price_row button.disabled,
.Most_used .price_row button.disabled {
  background-color: #ddd;
  border: 1px solid #ddd;
  color: #fff;
  cursor: not-allowed;
}

.choose_domain .form-group label {
  font-size: 18px;
  font-weight: 500;
}

.choose_domain .form-group .form-control {
  height: 50px;
  font-size: 16px;
}

.choose_domain .custom_but1 {
  height: 50px;
  width: 170px;
  font-size: 16px;
}

.choose_domain .masseg_valdiation {
  font-size: 16px;
}

.choose_your_way .form-inputs:first-child {
  padding-left: 0;
}

.payment_sammery .sammery_data .head_text {
  color: #686c70;
}

#checkoutFirstScan form {
  width: 100%;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  min-width: auto;
}

#checkoutFirstScan form input {
  height: 40px;
}

.success_pay {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

.success_pay .icon {
  text-align: center;
}

.success_pay .icon svg {
  width: 70%;
}

.success_pay .text h1 {
  font-size: 24px;
  font-weight: bold;
  color: #242424;
}

.success_pay .text p {
  font-size: 16px;
  font-weight: 500;
  color: #242424;
  margin: 0;
}

.success_pay .buttons a {
  display: inline-block;
  width: 50%;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #01529a;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.success_pay .buttons a:first-child {
  color: #fff;
  background-color: #01529a;
}

.success_pay .buttons a:first-child:hover {
  color: #01529a;
  background-color: transparent;
}

.success_pay .buttons a:last-child {
  color: #01529a;
  background-color: transparent;
}

.success_pay .buttons a:last-child:hover {
  color: #fff;
  background-color: #01529a;
}

.Invoice_print {
  background-color: transparent;
  color: #01529a;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 25px;
}

.loader-contain2 {
  position: fixed;
  height: 100%;
  top: 0;
  width: 100%;
  right: 0;
  z-index: -9999999;
  opacity: 0;
  background-color: #02519a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-contain2 .in_contain {
  height: 100px;
}

.loader-contain2 h1 {
  color: #fff;
  font-size: 25px;
  margin-top: 20px !important;
  text-align: center;
}

.loader-contain2 .loader2 {
  --c: no-repeat linear-gradient(#fff 0 0);
  background: var(--c), var(--c), var(--c), var(--c), var(--c), var(--c),
    var(--c), var(--c), var(--c);
  background-size: 26px 26px;
  animation: l32-1 1s infinite, l32-2 1s infinite;
}

@keyframes l32-1 {

  0%,
  100% {
    width: 65px;
    height: 65px;
  }

  35%,
  65% {
    width: 95px;
    height: 95px;
  }
}

@keyframes l32-2 {

  0%,
  40% {
    background-position: 0 0, 0 50%, 0 100%, 50% 100%, 100% 100%, 100% 50%,
      100% 0, 50% 0, 50% 50%;
  }

  60%,
  100% {
    background-position: 0 50%, 0 100%, 50% 100%, 100% 100%, 100% 50%, 100% 0,
      50% 0, 0 0, 50% 50%;
  }
}

.Most_used {
  background: rgb(4, 76, 141);
  background: linear-gradient(180deg,
      rgba(4, 76, 141, 1) 0%,
      rgba(23, 42, 45, 1) 70%);
  border: none;
  position: relative;
  margin-top: 0px !important;
  min-height: 810px;
}

.Most_used p {
  color: #fff;
}

.Most_used .pricing_head .pricing_name,
.Most_used .pricing_head .pricing_sallary {
  color: #fff;
}

.Most_used .pricing_head .monthly_salary {
  background: #fff;
  color: #034d90;
}

.Most_used .pricing_plan p:last-child {
  color: rgba(255, 255, 255, 0.5);
}

.Most_used .pricing_head {
  border-bottom: 2px solid #fff;
}

.Most_used .price_row button {
  background-color: #fff;
  border: 1px solid #fff;
  color: #01529a;
}

.Most_used_p p {
  font-weight: 500;
  background: #fff;
  color: #036aa0;
  text-align: center;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.Most_used_p {
  position: absolute;
  left: 0px;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  top: -17px;
}

.Most_used .pricing_plan {
  margin-top: 20px;
}

.Most_used .price_row {
  bottom: 58px;
}

.scroll-sidebar2::-webkit-scrollbar {
  width: 10px;
}

.scroll-sidebar2::-webkit-scrollbar-track {
  background: #eeeeee7a;
}

/* Handle */
.scroll-sidebar2::-webkit-scrollbar-thumb {
  background: #00000070;
}

/* Handle on hover */
.scroll-sidebar2::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.Upgrade_now {
  margin-top: 17px;
}

.Upgrade_now a {
  white-space: nowrap;
}

.last_step .payment_method {
  padding: 0px 20%;
}

.subscription_back {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
}

.subscription_back i {
  padding-right: 10px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.card_num {
  position: relative;
}

.card_num img {
  position: absolute;
  width: 50px;
  right: 8px;
  top: 42px;
}

.promoCodeSubmit_form {
  width: 100% !important;
}

.no_logo {
  background: #e9e9e9;
  color: #756d6d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 0;
}

.loader-contain2 .icon .text h1 {
  color: #fff;
  font-weight: 500;
}

.loader-contain2 .icon .text p {
  color: #fff;
}

.uber_alert {
  margin: 0px !important;
}

.uber_alert p {
  margin: 0;
}

.uber_alert p span {
  font-weight: bold;
  text-decoration: underline;
}

.logo_nots {
  border: 2px dashed #ddd;
  margin-top: 10px;
  padding: 7px;
}

.logo_nots p {
  margin: 0px;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
}

.logo_nots p::before {
  content: "-";
  font-size: 17px;
  display: inline-block;
  height: 0px;
  margin: 0px 2px;
}

.logo_nots p span {
  color: #ef5350;
  font-weight: bold;
}

.discount_note {
  text-align: center;
  margin-top: 30px;
  background: #fa812f;
  padding: 7px 40px;
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
}

.discount_note span {
  font-size: 25px;
  font-weight: bold;
}

.discount_note img {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0px 3px;
}

.pricing_sallary span label {
  color: #adadad;
  text-decoration: line-through;
}

.deleteTags .modal-header .modal-title span {
  font-size: 15px;
  font-weight: bold;
  color: #01529a;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px !important;
}

.select2-container .select2-selection--multiple {
  min-height: 29px !important;
}

/* Start Support */

.Support {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  margin-left: 7px;
  width: 90%;
  background-color: #01529a;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.Support .circle {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 174px;
  height: 184px;
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}

.Support .circle circle {
  stroke: #3475ae;
}

.Support .data {
  padding: 15px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.Support .data svg {
  width: 35px;
  height: 35px;
}

.Support .data h1 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0px;
  height: 30px;
}

.Support .data h2 {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  margin: 0px;
}

.Support .data a {
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  color: #2d3748;
  text-align: center;
  min-height: 25px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.Support .data a:hover {
  background-color: transparent;
  color: #fff;
}

.mini-sidebar .Support {
  width: auto;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 10px;
}

.mini-sidebar .Support .circle,
.mini-sidebar .Support .data h1,
.mini-sidebar .Support .data h2,
.mini-sidebar .Support .data a {
  display: none;
}

.mini-sidebar .Support .data {
  padding: 7px;
}

.mini-sidebar .Support .data svg {
  width: 25px;
  height: 25px;
}

.mini-sidebar .Support:hover.Support .data h1,
.mini-sidebar .Support:hover.Support .data h2,
.mini-sidebar .Support:hover.Support .circle {
  display: block;
}

.mini-sidebar .Support:hover.Support .data a {
  display: flex;
}

.mini-sidebar .Support:hover.Support .data svg {
  width: 35px;
  height: 35px;
}

.mini-sidebar .Support:hover.Support .data {
  padding: 15px;
}

.mini-sidebar .Support:hover.Support {
  width: 220px;
  display: block;
}

@media (max-width: 767px) {

  .mini-sidebar .Support .circle,
  .mini-sidebar .Support .data h1,
  .mini-sidebar .Support .data h2 {
    display: block;
  }

  .mini-sidebar .Support .data a {
    display: flex;
  }

  .mini-sidebar .Support .data svg {
    width: 35px;
    height: 35px;
  }

  .mini-sidebar .Support .data {
    padding: 15px;
  }

  .mini-sidebar .Support {
    width: 90%;
    display: block;
  }

  .mini-sidebar .Support:hover.Support {
    width: 90%;
  }
}

.support_layout1>.col-12,
.support_layout2>.col-12 {
  margin-top: 10px;
}

.support_layout1 .card-body {
  min-height: 80vh;
}

.new_breadcrumb .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.new_breadcrumb .breadcrumb .breadcrumb-item a {
  color: #a0aec0;
  font-size: 12px;
  font-weight: normal;
}

.new_breadcrumb .breadcrumb-item.active {
  color: #2d3748;
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
}

.new_breadcrumb .breadcrumb-item {
  float: left;
  margin: 0;
}

.no_tickets {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 10%;
}

.no_tickets svg {
  width: 185px;
  height: 137px;
}

.no_tickets h1 {
  font-size: 40px;
  font-weight: bold;
  color: #242424;
  margin: 0;
  margin-top: 20px;
  text-align: center;
}

.no_tickets p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  color: #242424;
  text-align: center;
}

.no_tickets a {
  background-color: #01529a;
  color: #fff;
  border: 1px solid #01529a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 25px;
  padding: 7px 65px;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.no_tickets a:hover {
  background-color: transparent;
  color: #01529a;
}

.add_tickets_head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.add_tickets_head .count_ticket p {
  margin: 0;
  color: #2d3748;
  font-size: 14px;
  font-weight: bold;
}

.add_tickets_head .Create_ticket {
  text-decoration: none;
  background-color: #01529a;
  border: 1px solid #01529a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  padding: 11px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.add_tickets_head .Create_ticket:hover {
  background-color: transparent;
  color: #01529a;
}

.add_tickets_head .search_tickets {
  width: calc(100% - 23%);
}

.add_tickets_head .search_tickets form input {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  font-size: 12px;
  padding: 9px 11px;
  width: 100%;
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.add_tickets_head .search_tickets form input::placeholder {
  color: #a0aec0;
  opacity: 1;
  /* Firefox */
}

.add_tickets_head .search_tickets form input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #a0aec0;
}

.add_tickets_head .search_tickets form button {
  background: #01529a;
  border: none;
  color: #fff;
  font-size: 14px;
  height: 38px;
  padding: 0px 12px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
}

.add_tickets_head .search_tickets form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.flitter_buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.flitter_buttons button {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  background: transparent;
  border: none;
  min-width: 100px;
  padding: 0;
  cursor: pointer;
  margin-right: 40px;
}

.flitter_buttons button .head {
  font-size: 12px;
  font-weight: bold;
  color: #a0aec0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flitter_buttons button .head i {
  margin-right: 5px;
}

.flitter_buttons button .number {
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  color: #2d3748;
}

.flitter_buttons button .border {
  width: 100%;
  background-color: #e2e8f0;
  padding: 2px;
  margin-top: 8px;
  border: none !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.flitter_buttons .All_tick .head i {
  color: #e5ecf2;
}

.flitter_buttons .open_tick .head i {
  color: #c1f0e4;
}

.flitter_buttons .Under_review_tick .head i {
  color: #fbebc1;
}

.flitter_buttons .closed_tick .head i {
  color: #fdd1d1;
}

.flitter_buttons .All_tick.Active .border {
  background-color: #e5ecf2;
}

.flitter_buttons .open_tick.Active .border {
  background-color: #c1f0e4;
}

.flitter_buttons .Under_review_tick.Active .border {
  background-color: #fbebc1;
}

.flitter_buttons .closed_tick.Active .border {
  background-color: #fdd1d1;
}

.flitter_buttons button.Active .head {
  color: #000;
}

.tickets_data {
  margin-top: 40px;
}

.tickets_data .tick_item {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.tickets_data .tick_item .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.tickets_data .tick_item .head .data_contain {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.tickets_data .tick_item .head .data_contain .text {
  font-size: 12px;
  font-weight: 500;
  color: #787878;
}

.tickets_data .tick_item .head .data_contain .data {
  font-size: 12px;
  font-weight: bold;
  color: #37474f;
  margin-top: 6px;
}

.tickets_data .tick_item .head .ticket_status {
  margin: 0;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  padding: 6px 21px;
}

.tickets_data .tick_item .head .open_status {
  background-color: #ecfbf7;
}

.tickets_data .tick_item .head .Under_review_status {
  background-color: #fffaec;
}

.tickets_data .tick_item .head .close_status {
  background-color: #fff1f1;
}

.tickets_data .tick_item .border {
  background-color: #e6e6e6;
  width: 100%;
  display: block;
  margin: 20px 0px;
  padding: 0px 2px;
}

.tick_description h1 {
  margin: 0;
  color: #54595e;
  font-size: 14px;
  font-weight: bold;
}

.tick_description p {
  margin: 0;
  color: #2c2c2e;
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.8;
  text-align: justify;
}

.tick_action {
  margin-top: 25px;
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.tick_action .show_tick {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  background-color: #01529a;
  border: 1px solid #01529a;
  padding: 6.5px 26px;
  margin-right: 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.tick_action .show_tick:hover {
  background-color: transparent;
  color: #01529a;
}

.ticket_footer {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.tick_action .close_tick {
  text-decoration: none;
  color: #f06765;
  font-size: 12px;
  background-color: transparent;
  border: 1px solid #f06765;
  padding: 6px 26px;
  cursor: pointer;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.tick_action .close_tick:hover {
  background-color: #f06765;
  color: #fff;
}

.ticket_footer .pagnatioon {
  margin: 0;
}

.form_add_tick .form-group {
  margin-top: 20px;
}

.form_add_tick .form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #54595e;
}

.form_add_tick .select2-container--default .select2-selection--single {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  height: 37px;
  font-size: 12px;
}

.form_add_tick .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px;
  color: #acacac;
}

.form_add_tick .form-group .tick_descrption {
  border: 1px solid #d1d1d1;
  min-height: 222px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form_add_tick .form-group .send_tick {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01529a;
  border: 1px solid #01529a;
  color: #fff;
  width: 100%;
  padding: 7px 0px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.form_add_tick .form-group .send_tick:hover {
  background-color: transparent;
  color: #01529a;
}

.form_add_tick .tick_attatchments .dropify-wrapper {
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
  color: #0f0f0f;
  background-color: #f8f8ff;
  border: 2px dashed #e5e5e5;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-message span.file-icon {
  font-size: 70px;
  color: #01529a;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-message p {
  margin: 5px 0 0;
  text-align: center;
  position: relative;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-message p::after {
  content: "التنسيقات المدعومة: صور، PDF، Excel";
  position: absolute;
  width: 100%;
  text-align: center;
  top: 32px;
  right: 0px;
  color: #676767;
  font-size: 12px;
  font-weight: 400;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-message p span {
  color: #01529a;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-message span.file-icon:before {
  line-height: 0em;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-errors-container ul li {
  text-align: center;
  list-style: none;
}

.form_add_tick .tick_attatchments .dropify-wrapper .dropify-errors-container ul {
  width: 100%;
}

.form_add_tick .tick_attatchments {
  margin-top: 20px;
}

.form_add_tick .attatchments_files {
  margin-top: 20px;
}

.form_add_tick .attatchments_files h1 {
  font-size: 14px;
  font-weight: 500;
  color: #676767;
  margin: 0;
  line-height: 1;
}

.form_add_tick .attatchments_files h1 span {
  font-size: 14px;
  font-weight: bold;
  color: #01529a;
  margin: 0;
}

.form_add_tick .attatchments_files ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form_add_tick .attatchments_files ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #11af22;
  padding: 5px 15px;
  margin-top: 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.form_add_tick .attatchments_files ul li .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  max-width: 80%;
}

.form_add_tick .attatchments_files ul li .icon_ex svg {
  width: 26px;
  height: 26px;
}

.form_add_tick .attatchments_files ul li .name {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #0f0f0f;
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form_add_tick .attatchments_files ul li .delet {
  background-color: #fce8e8;
  border: 1px solid #fce8e8;
  color: #e41d1d;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.form_add_tick .attatchments_files ul li .delet:hover {
  background-color: transparent;
  border-color: #E41D1D;
}

.send_tick_small {
  display: none;
}

.close_tick_but {
  text-align: right;
}

.close_tick_but button {
  font-size: 9px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f06765;
  background-color: #f06765;
  color: #fff;
  cursor: pointer;
  padding: 8px 9px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.close_tick_but button:hover {
  background-color: transparent;
  color: #f06765;
}

.close_tick_but button i {
  margin-right: 5px;
  font-size: 12px;
}

.ticket_info {
  margin-top: 20px;
}

.ticket_info .info_head {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.ticket_info .tick_number {
  margin: 0;
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #2c2c2e;
}

.tick_ifo_stauts {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.tick_ifo_stauts p {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.tick_ifo_stauts p .datat {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 500;
  color: #01529a;
}

.tick_ifo_stauts p .tittel {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #7e7e7e;
}

.tick_ifo_descrption {
  margin-top: 20px;
}

.tick_ifo_descrption .head {
  font-size: 16px;
  font-weight: bold;
  color: #54595e;
  margin: 0;
}

.tick_ifo_descrption .the_descraption {
  color: #2c2c2e;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.ticket_info_attachments {
  margin-top: 20px;
}

.ticket_info_attachments .attach_head {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 10px;
}

.ticket_info_attachments .no_attachments {
  margin-top: 10px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 225px;
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.ticket_info_attachments .no_attachments svg {
  margin: 0;
  width: 120px;
  height: 120px;
}

.ticket_info_attachments .no_attachments p {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #0f0f0f;
}

.attachments_files {
  margin-top: 10px;
}

.attachments_files .attach {
  background-color: #f1f3f7;
  padding: 10px;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin-top: 10px;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: calc(100% / 4.2);
}

.attachments_files .attach .icon svg {
  width: 48px;
  height: 48px;
}

.attachments_files .attach .name {
  font-size: 12px;
  font-weight: 500;
  color: #0f0f0f;
  margin: 0;
  margin-top: 1px;
  width: 100%;
  text-align: center;
}

/* .attachments_files .attach .download {
  margin-top: 1px;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #01529a;
  padding: 2px;
  width: 100%;
  cursor: pointer;
  background-color: #e6eef5;
  border: 1px solid #e6eef5;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
} */

/* .attachments_files .attach .download svg {
  width: 16px;
  height: 16px;
} */

/* .attachments_files .attach .download:hover {
  background-color: transparent;
} */


.tickets_comments {
  margin-top: 20px;
}

.tickets_comments .comments {
  min-height: 100px;
  padding-bottom: 50px;
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
  direction: rtl;
}

.tickets_comments .comment_form .inputs .comment_input {
  background-color: transparent;
  border: none;
  font-size: 16px;
  width: 100%;
}

.tickets_comments .comment_form .inputs .comment_input::placeholder {
  color: #919191;
  opacity: 1;
  /* Firefox */
}

.tickets_comments .comment_form .inputs .comment_input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #919191;
}

.tickets_comments .comment_form .inputs {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.tickets_comments .comment_form .inputs_contain {
  background-color: #fff;
  border: 1px solid #E7E7E7;
  padding: 8px 10px;
  width: 95%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.tickets_comments .comment_form .inputs .bar {
  background-color: #919191;
  height: 25px;
  padding: 0px;
  width: 2px;
  margin: 0px 10px;
}

.tickets_comments .comment_form .comment_buton button {
  width: 40px;
  height: 40px;
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  padding: 0px;
  cursor: pointer;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.tickets_comments .comment_form .comment_buton button:hover {
  background-color: transparent;
  color: #01529A;
}

.tickets_comments .comment_form {
  margin-top: 20px;
}

.tickets_comments .comment_form form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  /* position: relative; */
}

.tickets_comments .comment_form .inputs .comment_attach {
  display: none;
}

.tickets_comments .comment_form .inputs .comment_attach_label {
  font-size: 27px;
  color: #919191;
  margin: 0;
  cursor: pointer;
}

.tickets_comments .comment_form form .attch_name_close {
  background-color: #F8F8F8;
  border: 1px solid #D7D7D7;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}

.tickets_comments .comment_form form .attch_name_close p {
  margin: 0px 10px;
  padding: 0;
  font-size: 12px;
  color: #2C2C2E;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tickets_comments .comment_form form .attch_name_close svg {
  width: 20px;
  height: 20px;
}

.tickets_comments .comment_form form .attch_name_close .delet_attach {
  font-size: 16px;
  cursor: pointer;
  color: #25314C;
  border: none;
  background-color: transparent;
  padding: 0;
}

.tickets_comments .comments ul {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 20px;
  direction: ltr;
}

.tickets_comments .comments ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tickets_comments .comments ul li .comment_card {
  background-color: #fff;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.tickets_comments .comments ul li .comment_card .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.tickets_comments .comments ul li .comment_card .head .logo {
  background-color: #F2F2F2;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.tickets_comments .comments ul li .comment_card .head .logo img {
  width: 100%;
}

.tickets_comments .comments ul li .comment_card .head .name_date {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding-left: 10px;
}

.tickets_comments .comments ul li .comment_card .head .name_date .name {
  padding: 0;
  margin: 0;
  color: #01529A;
  font-size: 18px;
}

.tickets_comments .comments ul li .comment_card .head .name_date .date {
  color: #606060;
  font-size: 12px;
  margin: 0;
  padding: 0;
  margin-top: 2px;
}

.tickets_comments .comments ul li .comment_card .conntent {
  margin-top: 5px;
  background-color: #F8F8F8;
  padding: 15px 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.tickets_comments .comments ul li .comment_card .conntent .conntent_data {
  margin: 0;
  padding: 0;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.tickets_comments .comments ul li .comment_card .conntent .file_attach {
  position: relative;
  background-color: transparent;
  border: 1px solid #D7D7D7;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.tickets_comments .comments ul li .comment_card .conntent .file_attach svg {
  width: 20px;
  height: 20px;
}

.tickets_comments .comments ul li .comment_card .conntent .file_attach .name {
  margin: 0;
  padding: 0;
  margin-left: 8px;
  color: #606060;
  font-size: 16px;
  font-weight: 500;
}

.tickets_comments .comments ul li .comment_card .conntent .file_attach .download_attach {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6eef5;
  top: -100%;
  right: 0;
  bottom: auto;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.tickets_comments .comments ul li .comment_card .conntent .file_attach:hover .download_attach {
  bottom: 0px;
  top: 0px;
}

.tickets_comments .comments::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  cursor: pointer;
}

.tickets_comments .comments::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #D9D9D9;
}

.tickets_comments .comments::-webkit-scrollbar-track:hover {
  background-color: #D9D9D9;
}

.tickets_comments .comments::-webkit-scrollbar-track:active {
  background-color: #D9D9D9;
}

.tickets_comments .comments::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #01529A;
  cursor: pointer;
}

.tickets_comments .comments::-webkit-scrollbar-thumb:hover {
  background-color: #01529A;
  cursor: pointer;
}

.tickets_comments .comments::-webkit-scrollbar-thumb:active {
  background-color: #01529A;
  cursor: pointer;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-size: 12px;
}

/* End Support */

/* Platform-Updates */
.Platform_Updates .head_text {
  color: #01529A;
  font-size: 20px;
  text-transform: capitalize;
}

.Platform_Updates .Custom_select {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.Platform_Updates .Custom_select .select-dropdown {
  position: relative;
  display: block;
  height: 40px;
  width: auto;
  min-width: 200px !important;
  max-width: 100% !important;
}

.Platform_Updates .Custom_select .select-dropdown__button {
  padding: 7px 24px;
  background-color: white;
  border: 1px solid #C9C9C9;
  color: #01529A;
  cursor: pointer;
  max-width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.Platform_Updates .Custom_select .select-dropdown__button::focus {
  outline: none;
}

.Platform_Updates .Custom_select .select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 4;
  border: 2px solid #CED6E0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.Platform_Updates .Custom_select .select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}

.Platform_Updates .Custom_select .select-dropdown__list-item {
  display: flex;
  list-style-type: none;
  padding: 9px 10px;
  background: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  color: #3C4242;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.Platform_Updates .Custom_select .select-dropdown__list-item p {
  margin: 0;
}

.Platform_Updates .Custom_select .select-dropdown__list-item:hover {
  background-color: #e8ecef;
}

.Platform_Updates .Custom_select .select-dropdown__button svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.Platform_Updates .Custom_select .select-dropdown__button {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: center;
}

.Platform_Updates .Custom_select .select-dropdown__button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Platform_Updates .no-data .card-body {
  height: 80vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.Platform_Updates .no-data .card-body svg {
  width: 180px;
  height: 180px;
}

.Platform_Updates .no-data .card-body h1 {
  margin: 0;
  padding: 0;
  margin-top: 20px;
  color: #242424;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.Platform_Updates .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.Platform_Updates .section_head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.Platform_Updates .section_head .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.Platform_Updates .section_head .right .logo {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.Platform_Updates .section_head .right .logo img {
  width: 100%;
}

.Platform_Updates .section_head .right .text h1 {
  margin: 0;
  padding: 0;
  margin-left: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #1E293B;
}

.Platform_Updates #insertUpdates {
  overflow: hidden;
}

.Platform_Updates #insertUpdates img {
  max-width: 100% !important;
}


.Platform_Updates .section_head .left svg {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.Platform_Updates .section_head .left span {
  color: #334155;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  margin: 0px;
}

.Platform_Updates .section_head .left span.dash {
  color: #334155;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  margin: 0px 5px;
}

.Platform_Updates .section_head .left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Platform_Updates .contennt {
  margin-top: 20px;
}

.fire_icon {
  width: 27px;
  height: 15px;
  margin-left: -5px;
}

.platform_updates_model .close_model {
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  color: #979797;
}

.platform_updates_model .modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  border: none !important;
}

.platform_updates_model .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding-top: 0;
  padding-bottom: 20px;
}

.platform_updates_model .modal-header {
  padding: 5px 10px;
  padding-bottom: 0px;
}

.platform_updates_model .modal-content {
  background-clip: unset;
  border: none;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.platform_updates_model .modal-body .icon svg {
  width: 135px;
  height: 135px;
  transform: scale(-1, 1);
}

.platform_updates_model .modal-body .data {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.platform_updates_model .modal-body .data h1 {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #01529A;
  text-transform: capitalize;
}

.platform_updates_model .modal-body .data p {
  font-size: 16px;
  color: #393939;
  margin: 0;
  padding: 0;
  margin-top: 5px;
  line-height: 2;
  text-align: center;
}

.platform_updates_model .modal-body .data a {
  display: block;
  width: 90%;
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  margin-top: 5px;
  padding: 6px 0px;
  transition: all .4S ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all .4S ease-in-out;
  -moz-transition: all .4S ease-in-out;
  -ms-transition: all .4S ease-in-out;
  -o-transition: all .4S ease-in-out;
}

.platform_updates_model .modal-body .data a:hover {
  background-color: transparent;
  color: #01529A;
}

.reorder_note {
  margin: 10px 0px;
}

.reorder_note span i {
  color: #F06765;
}

.reorder_note span {
  display: block;
  text-align: center;
  width: auto;
  margin: 6px;
  background: #FAFAFA;
  padding: 5px 15px;
  border: 2px dotted #ffe9e9;
  color: #2D3748;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}


/* start edit messages */

.Record_changes_but {
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.Record_changes_but:hover {
  background-color: transparent;
  color: #01529A;
}

.Record_changes_but:hover svg path {
  fill: #01529A;
}

.Record_changes_but svg {
  width: 20px;
  height: 15px;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.Record_changes_but svg path {
  fill: #fff;
}

.sms_head {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.sms_head svg {
  width: 130px;
  height: 120px;
}

.sms_head .left h1 {
  font-size: 40px;
  color: #000;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.sms_head .left p {
  margin: 0;
  padding: 0;
  margin-top: 8px;
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 400;

}

.messages_variables {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.messages_variables .v_items {
  width: 100%;
}

.messages_variables .v_items .card-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.messages_variables .v_items .card-body p {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.messages_variables .v_items .card-body span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  padding: 0;
}

.messages_variables .v_items .card-body button {
  width: 90%;
  color: #fff;
  background-color: #01529A;
  border: 1px solid #01529A;
  font-size: 12px;
  font-weight: bold;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.messages_variables .v_items .card-body button i {
  margin: 0px 2px;
}

.messages_variables .v_items .card-body button:hover {
  background-color: transparent;
  color: #01529a;
}

.message_alert {
  background-color: #f0e2e2;
  border-left: 2px solid #EB5757;
  padding: 5px 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.message_alert h1 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #EB5757;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.message_alert h1 span {
  font-weight: bold;
}

.message_alert svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.messages_inputs .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.messages_inputs .head h1 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
}

.messages_inputs .head h1 span {
  font-size: 16px;
  font-weight: 400;
  color: #EB5757;
  margin: 0;
  padding: 0;
}

.messages_inputs .head select {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  height: 40px;
}

.messages_inputs .input {
  margin-top: 20px;
  border: 1px dashed #8A8A8A;
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.messages_inputs .input textarea {
  width: 100%;
  height: 100px;
  max-height: 100px;
  border: none;
  background-color: transparent;
  color: #373737;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.messages_inputs .input textarea::placeholder {
  color: #8A8A8A;
}

.messages_inputs .input .messages_counter {
  margin: 0;
  padding: 0;
  text-align: right;
  color: #CACED2;
  font-size: 12px;
  font-weight: 500;
}

.messages_inputs .input .messages_counter span {
  color: #01529A;
}

.Action_record .head .tittle svg {
  width: 25px;
  height: 25px;
  display: inline-block;
}

.Action_record .head .tittle span {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.Action_record .head .tittle {
  margin: 0;
  padding: 0;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}

.Action_record .head .date {
  margin: 0;
  padding: 0;
  color: #01529A;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

.Action_record .head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.Action_record .content {
  margin: 0;
  padding: 0;
  margin-top: 25px;
}

.Action_record .content p {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 16px;
}


.payment_card {
  border: 1px solid #E4E7EC;
  margin-top: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.payment_card .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  background-color: #F2F4F7;
  padding: 10px 15px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.payment_card .head img {
  width: 20px;
  height: 20px;
}

.payment_card .head h1 {
  color: #020246;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.payment_card .body {
  padding: 10px 15px;
}

.payment_card .body .ways {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 15px;
}

.payment_card .body .ways .options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment_card .body .ways p {
  font-size: 16px;
  color: #667085;
  margin: 0;
}

.payment_card .body .descrption {
  font-size: 16px;
  color: #667085;
  margin: 0;
}

.payment_card .body .ways .data p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 15px;
}

.payment_card .switch label {
  margin: 0;
}

.payment_card .action_contain button {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  background-color: #F5F7F9;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.payment_card .action_contain .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 12px;
}

.payment_card .action_contain .dropdown-menu .dropdown-item.delete,
.payment_card .action_contain .dropdown-menu .dropdown-item.delete i {
  color: #cc8081;
}

.payment_card .action_contain .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  padding: 5px;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.payment_card .action_contain .dropdown-menu .dropdown-item i {
  color: #01529A;
}

.payment_card .action_contain .dropdown-menu .dropdown-item:hover {
  background-color: #fff;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.payment_card .bank_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.payment_card .bank_head .right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment_card .bank_head .add_account_bank {
  color: #fff;
  background: #01529A;
  padding: 5px 15px;
  border: 1px solid #01529A;
  border-radius: 4px;
  font-size: 13px;
  gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.payment_card .bank_head .add_account_bank:hover {
  background-color: transparent;
  color: #01529A;
}

.bank_accounts .account {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.bank_accounts .account .right p {
  margin: 0;
  padding: 0;
}

.bank_accounts .account .right p span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(1, 82, 154, 50%);
}

.bank_accounts .account .right p span.span2 {
  color: #01529A;
}

.bank_accounts .account .left .options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
}

.show_more {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  background-color: transparent;
  color: #01529A;
  border: none;
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.noAccounts p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #667085;
  margin-top: 16px;
}

.delete_modal .modal-dialog .modal-content {
  width: 100%;
  border: none;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.delete_modal .modal-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;

}

.delete_modal .modal-body h4 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #393D40;
}

.delete_modal .modal-body .action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
  flex-wrap: nowrap;
}

.delete_modal .modal-body .action .delete {
  background-color: #EC5451;
  color: #fff;
  border: 1px solid #EC5451;
  font-size: 16px;
  cursor: pointer;
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.delete_modal .modal-body .action .close_modal {
  color: #505050;
  border: 1px solid #CDCDCD;
  font-size: 16px;
  background-color: transparent;
  cursor: pointer;
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.add_bank_account .modal-content,
.edit_bank_account .modal-content,
.new_modal_design .modal-content,
.edit_paypal .modal-content {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: none;
}

.add_bank_account .modal-content .modal-body,
.edit_bank_account .modal-content .modal-body,
.new_modal_design .modal-content .modal-body,
.edit_paypal .modal-content .modal-body {
  padding-top: 30px;
}

.add_bank_account .modal-header,
.edit_bank_account .modal-header,
.new_modal_design .modal-header,
.edit_paypal .modal-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.add_bank_account .form-group label,
.edit_bank_account .form-group label,
.new_modal_design .form-group label,
.edit_paypal .form-group label {
  color: #6A787F;
  font-size: 16px;
  font-weight: bold;
}

.add_bank_account .form-group .form-control,
.edit_bank_account .form-group .form-control,
.new_modal_design .form-group .form-control,
.edit_paypal .form-group .form-control {
  height: 35px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.payment_logs_table tbody tr td span {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.payment_logs_table tbody tr td span.f_span {
  color: #01529A;
}

.payment_logs_table tbody tr td span.s_span {
  color: #787878;
}

.payment_logs_table tbody tr td p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment_logs_table thead tr th,
.payment_logs_table tbody tr td {
  text-align: left !important;
  white-space: nowrap;
}


/* Currencie */

.currencies_card {
  border: 1px solid #E4E7EC;
  margin-top: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 20px;
}

.currencies_card .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  background-color: #F2F4F7;
  padding: 10px 15px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.currencies_card .head img {
  width: 20px;
  height: 20px;
}

.currencies_card .head p {
  color: #020246;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.currencies_card .body {
  padding: 10px 15px;
}

.Main_currency .body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
}

.Main_currency .body p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #EB5757;
  text-align: left;
}

.Main_currency .body .form-group {
  margin: 0;
}

.Main_currency .body .action {
  text-align: right;
}

.Main_currency .body .note1,
.Main_currency .body .note2,
.Main_currency .body .form-group {
  width: 100%;
}

.Available_currency .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.Available_currency .add_new_currency {
  color: #fff;
  background: #01529A;
  padding: 5px 15px;
  border: 1px solid #01529A;
  border-radius: 4px;
  font-size: 13px;
  gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.Available_currency .add_new_currency:hover {
  background-color: transparent;
  color: #01529A;
}

.Available_currency .currencies_items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Available_currency .currencies_items .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
}

.Available_currency .currencies_items .item:last-child {
  border-bottom: none;
}

.currencies_items .item .right .currency_name {
  font-size: 16px;
  color: #667085;
  margin: 0;
  padding: 0;
}

.currencies_items .item .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

.currencies_items .item .left .delete {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  cursor: pointer;
  color: #f18989;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.currencies_items .item .left .delete:disabled {
  color: #d6d6d6;
  cursor: not-allowed;
  transform: scale(1.1) !important;
  -webkit-transform: scale(1.1) !important;
  -moz-transform: scale(1.1) !important;
  -ms-transform: scale(1.1) !important;
  -o-transform: scale(1.1) !important;
}

.currencies_items .item .left .delete:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.currencies_items .item .left .switch label .lever {
  height: 10px;
  margin: 0;
  width: 28px;
}

.currencies_items .item .left .switch label input[type="checkbox"]:checked+.lever:after {
  left: 15px;
}

.currencies_items .item .left .switch label .lever:after {
  width: 15px;
  height: 15px;
  top: -2px;
}

.currencies_items .item .left .switch label {
  margin: 0px !important;
}

.Available_currency .no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Available_currency .no-data h3 {
  text-align: center;
}


.Available_currency .no-data {
  min-height: 40vh;
}


.Custom_messages {
  border: 1px solid #E4E7EC;
  margin-top: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin-top: 20px;
}

.Custom_messages .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
  background-color: #F2F4F7;
  padding: 10px 15px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  flex-direction: row;
}

.Custom_messages .head .head_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.Custom_messages .head img {
  width: 20px;
  height: 20px;
}

.Custom_messages .head p {
  color: #020246;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.Custom_messages .body {
  background-color: #fff;
  padding: 10px 15px;
}

.Custom_messages .add_new_massage {
  color: #fff;
  background: #01529A;
  padding: 5px 15px;
  border: 1px solid #01529A;
  border-radius: 4px;
  font-size: 13px;
  gap: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.Custom_messages .add_new_massage:hover {
  background-color: transparent;
  color: #01529A;
}

.Custom_messages .no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  min-height: 40vh;
}

.Custom_messages .body .massages_count {
  font-size: 16px;
  color: #667085;
  margin: 0;
  padding: 0;
}

.Custom_messages .body .massages_count span {
  color: #01529A;
}

.Custom_messages .massages_items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-top: 15px;
}

.Custom_messages .massages_items .item .right .massage_name {
  font-size: 16px;
  font-weight: bold;
  color: #01529A;
  margin: 0;
  padding: 0;
}

.Custom_messages .massages_items .item .left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
}

.Custom_messages .massages_items .item .left .action_contain button {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  background-color: #F5F7F9;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.Custom_messages .massages_items .item .left .action_contain .dropdown-menu {
  background-color: #fff;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 12px;
}

.Custom_messages .massages_items .item .left .action_contain .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  padding: 5px;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.Custom_messages .switch label {
  margin: 0;
}

.Custom_messages .massages_items .item .delete_item {
  color: #cc8081 !important;
}

.custom_massage_input {
  border: 1px solid #D1D1D1;
  padding: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.custom_massage_input textarea {
  width: 100%;
  height: 100px;
  max-height: 100px;
  border: none;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.custom_massage_input .messages_counter {
  margin: 0;
  padding: 0;
  text-align: right;
  color: #CACED2;
  font-size: 12px;
  font-weight: 500;
}

.custom_massage_input .messages_counter span {
  color: #01529A;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.salaryInputs {
  position: relative;
}

.salaryInputs .currencyName {
  position: absolute;
  right: 1px;
  top: 55%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  background: #f1f1f1;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
  font-size: 14px;
  font-weight: bold;
  color: #242426;
  min-width: 50px;
  overflow: hidden;
  BORDER: 1px solid #d9d9d9;
  border-right: 0;
}


.checkout_options {
  border: 1px solid #E4E7EC;
  margin-top: 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.checkout_options .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  background-color: #F2F4F7;
  padding: 15px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.checkout_options .head.Active p {
  color: #020246;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.checkout_options .head.disabled p {
  color: #A4A4A4;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.checkout_options .head.Active p span {
  color: #01529A;
}

.checkout_options .head.disabled p span {
  color: #F48A88;
}

.checkout_options .head.Active svg path {
  fill: #01529A;
}

.checkout_options .head.disabled svg path {
  fill: #A4A4A4;
}

.checkout_options .head svg {
  width: 20px;
  height: 20px;
}

.checkout_options .body {
  padding: 10px 15px;
}

.checkout_options .body .items {
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 16px;
  padding-bottom: 16px;
}

.checkout_options .body .items:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.checkout_options .body .items p {
  margin: 0;
  padding: 0;
  color: #667085;
  font-size: 16px;

}

.checkout_options .body .items .switch label,
.checkout_options .body .items .switch label .lever {
  margin: 0px !important;
}

.checkout_options.no_bottom_border {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}





.Feature_data_content,
.Feature_data_details .Feature_data_details_parent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.Feature_data_content div,
.Feature_data_details .Feature_data_details_parent div {
  width: 100%;
}

.Feature_parent .Action {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.Feature_parent .Action .form-group {
  width: auto !important;
  margin-bottom: 0 !important;
}

.Feature_parent .Action .form-group .switch label {
  margin: 0 !important;
}


.info1 .card-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.changeCurrency {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  padding: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.changeCurrency:hover {
  background-color: transparent;
}

.changeCurrency:hover svg g {
  fill: #01529A;
}

.changeCurrency svg {
  width: 20px;
  height: 20px;
}

.changeCurrency svg g {
  fill: #fff;
}



/* new */

.occasion_photo {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

.occasion_photo .item {
  /* display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 15px; */
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  width: 100%;
}

.occasion_photo .item:last-child {
  border: none;
}

.occasion_photo .item .label-filter .occasionsGallery {
  max-width: 100%;
  max-height: 80px;
  cursor: pointer;
  display: block;
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.occasion_photo .item .label-filter .occasionsGallery:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.occasion_photo [type="checkbox"]:checked+.label-filter {
  border: 1px solid #01529A;
  padding: 10px;
  border-radius: 5px;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transform: scale(.85);
  -webkit-transform: scale(.85);
  -moz-transform: scale(.85);
  -ms-transform: scale(.85);
  -o-transform: scale(.85);
}

.occasion_photo .item .label-filter {
  display: inline-block;
  height: auto;
  margin: 0;
  padding: 0px;
}

.occasion_photo [type="checkbox"]+label:before,
.occasion_photo [type="checkbox"]:not(.filled-in)+label:after {
  display: none !important;
}

.occasion_photo .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}


.panelAdsContain {
  margin-top: 40px;
}

.panelAds img {
  width: 100%;
  border-radius: 10px;
  min-height: 70px;
  max-height: 600px;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-nav {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.owl-carousel .owl-nav button {
  width: 30px;
  height: 30px;
  align-items: center;
  justify-items: center;
  border-radius: 50%;
  background-color: #CDCDCD !important;
  color: #01529A;
  font-size: 13px !important;
}



.owl-carousel .owl-nav button:hover {
  background-color: #fff !important;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
  margin-right: 15px;
}

.panelAds .item,
.panelAds a {
  width: 100% !important;
}

.deliveryWeight {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.deliveryWeight p {
  padding: 0;
  margin: 0;
  font-size: 19px;
}

.deliveryWeightInput {
  margin-top: 25px;
  width: 100%;
}

.Quick-operations .card {
  position: relative;
  background-color: #01529A;
  transition: all ease-in-out .4s;
}

.Quick-operations .card:hover {
  transform: scale(0.9);
}

.Quick-operations .itemContent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.Quick-operations .itemContent .right .icon svg {
  width: 24px;
  height: 24px;
}

.Quick-operations .itemContent .right .name p {
  margin: 0;
  padding: 0;
  font-size: 13PX;
  font-weight: bold;
  color: #fff;
}

.Quick-operations .itemContent .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.Quick-operations .itemContent .left svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.Quick-operations .itemContent .left svg path {
  fill: #fff;
}

.Quick-operations .itemContent .right .icon {
  height: 24px;
}

.Quick-operations .itemContent .left {
  height: 16px;
}

.addWeightValues .delete_option,
.editWeightValues .delete_option2 {
  display: inline-block;
  background-color: #ef5350;
  border-color: #ef5350;
  color: #fff;
  border-radius: 5px;
  border: 1px solid;
  width: auto;
  font-size: 14px;
  cursor: pointer;
  outline: none !important;
  transition: ease-in-out 0.5s;
  margin-top: 20px;
}


.addWeightValues .delete_option:hover,
.editWeightValues .delete_option2:hover {
  background-color: transparent;
  border-color: #ef5350;
  color: #ef5350;
}

.addWeightValues .delete_option:disabled,
.editWeightValues .delete_option2:disabled {
  background-color: #ddd !important;
  border-color: #ddd !important;
  color: #fff !important;
  cursor: not-allowed !important;
}

.addWeightValues .col-1,
.editWeightValues .col-1 {
  display: flex;
  align-items: center;
}


.editPaymentName {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  transition: all .4s ease-in-out;
  padding: 0;
  margin: 0;
  color: #01529A;
}

.editPaymentName:hover {
  transform: scale(1.1);
}




/* new edit categories */



.leftSide {
  min-height: 100vh;
}

.leftSide .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftSide img {
  width: 90%;
}

/* 
.categoriesItems .parent {
  margin-bottom: 16px;
}
.categoriesItems .parent .data {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #DDDDDD;
  width: 88%;
}
.categoriesItems .parent .data .right,
.categoriesItems .parent .data .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.categoriesItems .parent .data .right img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.categoriesItems .parent .data .right .categoriName {
  margin: 0;
  padding: 0;
  color: #44555E;
  font-size: 14px;
  font-weight: bold;
}
.categoriesItems .parent .data .left .openCategoriButton {
  background-color: transparent;
  border: none;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  transform: rotate(180deg);
  margin: 0;
  padding: 0;
}
.openCategoriButton.rotat {
  transform: rotate(0deg) !important;
}
.categoriesItems .parent .data .left .Custom_dropdown .optionsButton {
  background-color: #F5F7F9;
  color: #25314C;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu {
  border: none;
  padding: 12px;
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item.delete,
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item.delete i {
  color: rgba(154, 1, 4, 50%) !important;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #667085 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 5px 0px !important;
  cursor: pointer;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item i {
  color: #01529A;
  font-size: 15px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item svg {
  width: 18px;
  height: 18px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch span,
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label {
  margin: 0;
  padding: 0;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever:after {
  width: 15px;
  height: 15px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever {
  width: 25px;
  height: 12px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label input[type="checkbox"]:checked+.lever:after {
  left: 14px;
}
.categoriesItems .parent .data .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever:after {
  top: -1px;
  right: -4px;
}
.categoriesItems .parent .itemChild {
  margin-top: 10px;
  margin-left: 30px;
  width: 100%;
  display: none;
} */


.sortCategori,
.saveSort {
  padding: 4px 30px !important;
}

.add_category .chooseType,
.edit_category .chooseType {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.addSubCategory {
  margin-top: 15px;
}

.reorderNote {
  background: #fdeeee;
  border-left: 2px solid #EB5757;
  padding: 13px 10px;
}

.reorderNote span {
  font-size: 14px;
  font-weight: 400;
  color: #EB5757;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.reorderNote span i {
  color: #fff;
  font-size: 17px;
}

.noDataContain .noData {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
}

/* 
.noSortInMobile {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
}

.noSortInMobile h3 {
  font-size: 14px;
} */

.addCategoriesInProduct {
  background-color: transparent;
  border: none;
  color: #01529A;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.addCategoriesInProduct:hover {
  transform: scale(1.1);
}



.parent-list .parent {
  cursor: grab;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid #DDDDDD;
}

.parent-list .parent .categoryHeadData {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.parent-list .parent .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.parent-list .parent .right .data {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.parent-list .parent .right .data img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.parent-list .parent .right .data p {
  margin: 0;
  padding: 0;
  color: #44555E;
  font-size: 14px;
  font-weight: bold;
}

.parent-list .parent .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.parent-list .parent .left .Custom_dropdown .optionsButton {
  background-color: #F5F7F9;
  color: #25314C;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu {
  border: none;
  padding: 12px;
  border-radius: 4px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #667085 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 5px 0px !important;
  cursor: pointer;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item i {
  color: #01529A;
  font-size: 15px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item svg {
  width: 18px;
  height: 18px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item.delete,
.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item.delete i {
  color: rgba(154, 1, 4, 50%) !important;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label,
.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch span {
  margin: 0;
  padding: 0;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever {
  width: 25px;
  height: 12px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever:after {
  top: -1px;
  right: -4px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label input[type="checkbox"]:checked+.lever:after {
  left: 14px;
}

.parent-list .parent .left .Custom_dropdown .dropdown-menu .dropdown-item .switch label .lever:after {
  width: 15px;
  height: 15px;
}

.parent-list .parent .left .toggle-btn {
  background-color: transparent;
  border: none;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  transform: rotate(180deg);
  margin: 0;
  padding: 0;
}

.parent-list .toggle-btn i {
  transition: transform 0.3s ease;
}

.parent-list .toggle-btn.rotated i {
  transform: rotate(180deg);
}

.parent-list .disabled-parent,
.parent-list .disabled-child {
  background-color: #aaaaaa !important;
  cursor: not-allowed !important;
}

.parent-list .nested-list {
  list-style-type: none;
  padding-left: 0;
  display: none;
  margin-top: 20px;
  padding-left: 40px;
}

.parent-list .nested-list li {
  padding: 8px;
  margin-bottom: 5px;
  background-color: #dcdcdc2e;
  border-radius: 4px;
  cursor: grab;
  border: 1px solid #DDDDDD;
}

.parent-list {
  list-style-type: none;
  padding: 0;
}


.homeSortable .icon i {
  font-size: 14px;
}

.homeSortable .data p {
  margin: 0;
  padding: 0;
  color: #44555E;
  font-size: 14px;
  font-weight: bold;
}

.homeSortable li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}


.pageControl {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.pageControl .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.pageControl .right p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: #C8C8C8;
}

.pageControl .right button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transform: scaleX(-1);
}

.pageControl .right button svg {
  width: 20px;
  height: 14px;
}

.pageControl .lavePage {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #9a0104;
  text-decoration: none;
  cursor: pointer;
  font-size: 17px;
  border-radius: 8px;
}

.forSmallScreen {
  display: none;
}




.pageControl {
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.pageControl .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.pageControl .right p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  color: #C8C8C8;
}

.pageControl .right button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transform: scaleX(-1);
}

.pageControl .right button svg {
  width: 20px;
  height: 14px;
}

.pageControl .lavePage {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #9a0104;
  text-decoration: none;
  cursor: pointer;
  font-size: 17px;
  border-radius: 8px;
}

.forSmallScreen {
  display: none;
}


.whatsAppLink {
  margin-top: 10px;
  /* border-bottom: 2px solid #ddd; */
  min-height: 50px;
}

.whatsAppLink .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.whatsAppLink .head span {
  width: 100%;
  height: 1.5px;
  background-color: #ddd;
  display: block;
}

.whatsAppLink .head p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #67757c;
  white-space: nowrap;
}

.whatsAppLink .links {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0px;
}

.whatsAppLink .links .userWhatsAppLink {
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  width: 35px;
  height: 35px;
  transition: all .4s ease-in-out;
  outline: none;
  cursor: pointer;
  color: #fff;
}

.whatsAppLink .links .userWhatsAppLink:hover {
  transform: scale(1.2);
}

.orderDetailsHead {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.Navigation_arrows {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.Navigation_arrows a {
  border: 1px solid #007bff;
  width: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #007bff;
  transition: all .4s ease-in-out;
}

.Navigation_arrows a i {
  transform: rotate(180deg);
}

.Navigation_arrows a:hover {
  background-color: #007bff;
  color: #fff;
}


.profileContain .sectionName {
  font-size: 18px;
  font-weight: bold;
  color: #2D3748;
}

.profileContain .profileContent {
  border: 1px solid #CDCDCD;
  border-radius: 15px;
  padding: 24px;
  margin-bottom: .5rem;
}

.profileContain .profileContent .form-group .form-control {
  border: 1px solid #D9D9D9;
  border-radius: 2px;
  padding: 6px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
}

.profileContain .profileContent .form-group label,
.profileContain .profileContent .phoneData .head label {
  font-size: 16px;
  font-weight: 400;
  color: #5C5C5C;
}

.profileContain .profileContent .phoneData .data {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D9D9D9;
  padding: 6px;
  border-radius: 2px;
}

.profileContain .profileContent .phoneData .data .right span {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #9E9E9E;
}

.profileContain .profileContent .phoneData .data .left .verified,
.profileContain .profileContent .phoneData .verified {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
  color: #169775;
  font-weight: 400;
}

.profileContain .profileContent .phoneData .data .left {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.profileContain .profileContent .phoneData .data .left .editPhone,
.change_phoneNumber .editPhone {
  cursor: pointer;
  border: 1px solid #E9E9E9;
  border-radius: 3px;
  padding: 3px 7px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  font-weight: bold;
  background: transparent;
  color: #01529A;
  transition: all .4s ease-in-out;
}

.profileContain .profileContent .phoneData .data .left .editPhone:hover,
.change_phoneNumber .editPhone:hover {
  transform: scale(1.1);
}



.change_phoneNumber p {
  font-size: 16px;
  font-weight: bold;
  color: #6A7B7F;
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  margin-top: 32px;
}

.iti {
  direction: ltr !important;
  display: block;
}

.iti input {
  direction: ltr !important;
  text-align: left !important;
}

.iti--inline-dropdown .iti__dropdown-content {
  z-index: 9999 !important;
  direction: ltr !important;
}

[dir=ltr] .iti__search-input {
  padding-right: inherit !important;
  padding-left: 30px !important;
  background-position: right 8px center !important;
  min-height: 40px;
}

[dir=ltr] .iti__search-clear {
  left: auto !important;
  right: 4px !important;
}

[dir=ltr] .iti__search-icon {
  right: auto !important;
  left: 8px !important;
}

.iti--fullscreen-popup .iti__country {
  direction: ltr !important;
}

.iti__il {
  --iti-flag-offset: -2848px !important;
}

.change_phoneNumber .iti {
  width: 100%;
}

.change_phoneNumber .input .form-control {
  min-height: 35px;
  border-color: #D1D1D1;
  border-radius: 8px;
}

.change_phoneNumber button.custom_but1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 4px;
  margin-top: 30px;
}

.change_phoneNumber .secondStep .head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 32px;
}

.change_phoneNumber .secondStep .head .right p {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.change_phoneNumber .secondStep .head .right span {
  font-size: 12px;
  font-weight: 400;
  color: #6C7278;
}


.change_phoneNumber .codeInput {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  direction: ltr;
}

.change_phoneNumber .codeInput input {
  width: 12%;
  aspect-ratio: 1 / 1;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  outline: none !important;
}

.change_phoneNumber .codeInput input:focus {
  border-color: #C8F9E8 !important;
  box-shadow: 0 0 0 .25rem rgba(1, 82, 154, .60);
}

.change_phoneNumber .codeInput input:focus-visible {
  border-color: #C8F9E8 !important;
}

.change_phoneNumber .resendCode {
  text-align: center;
}

.change_phoneNumber .resendCode p {
  text-align: center;
  margin: 0;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #262626;
  padding: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.change_phoneNumber .resendCode p span {
  font-weight: bold;
  color: #01529A;
}

.change_phoneNumber .resendCode .resendButton {
  background-color: transparent;
  border: none;
  display: inline-block;
  color: #01529A;
  cursor: pointer;
  margin: 0;
  padding: 0;
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
  transition: all .4s ease-in-out;
}

.change_phoneNumber .resendCode .resendButton:hover {
  transform: scale(1.1);
}

.change_phoneNumber .phoneChanged {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 200px;
}

.change_phoneNumber .phoneChanged h2 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  color: #242424;
  text-align: center;
}

.change_phoneNumber .thirdStep,
.change_phoneNumber .secondStep {
  display: none;
}

.profileContain .userDomain .data .right .companyDomain {
  color: #02529B !important;
  font-size: 16px !important;
  font-weight: bold !important;
  direction: ltr;
  border-right: 1px dashed #02529B;
  width: 110px;
  text-align: left;
}

.userDomain .data .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}


.inputDomainInput {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  border: 1px solid rgba(102, 102, 102, 35%);
  border-radius: 12px;
  padding: 0px 10px;
  height: 55px;
  overflow: visible;
  position: relative;
}

.errorInput {
  border-color: #b04f51 !important;
}

.inputDomainInput .fixedDomain {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed #01529A;
  padding-right: 10px;
}

.inputDomainInput input {
  border: none;
  padding: 0px;
  direction: ltr;
  text-align: right;
}

#thirdUserDomainName {
  text-align: left;
  padding-left: 10px;
}

.fixedDomain .form-select {
  border: none;
  background-color: transparent;
  width: auto;
  padding: 0;
  background-position: right -0.12rem center;
  /* padding-right: 15px; */
  background-image: none !important;
  font-size: 16px;
  font-weight: bold;
  color: #01529A;
  cursor: not-allowed;
  outline: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.availableInput input {
  color: #219880 !important;
}

.availableDomain {
  color: #219880 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-top: 8px !important;
}

.errorText {
  color: #b04f51 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-top: 8px !important;
}

.domainThirdStep {
  display: none;
}

.PackageDetails {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid #E1E4ED;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.PackageDetails .right p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000;
}

.PackageDetails .right p:last-child {
  margin-top: 10px;
  font-weight: bold;
}

.PackageDetails .left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 10px);
}

.PackageDetails .left .balanceItems {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 13px;
  padding: 23px 19px;
  border-radius: 20px;
  background-color: #F7F7FA;
  width: calc(50% - 10px);
}

.PackageDetails .left .balanceItems .balanceItems_title {
  font-size: 16px;
  color: #000;
}

.PackageDetails .left .balanceItems p {
  font-size: 20px;
  color: #3c3c43;
  font-weight: bold;
}

.orderPrice {
  margin-top: 24px;
  background-color: #F4F4F4;
  padding: 10px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.orderPrice p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.plan {
  width: 19%;
  min-width: 220px;
  cursor: pointer;
  position: relative;
}

.plan input {
  display: none;
}

.plans {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.plan-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px;
  text-align: left;
  transition: 0.3s ease;
  border: 2px solid #e1e6ef;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.price-box {
  background: rgba(1, 82, 154, 10%);
  padding: 10px;
  border-radius: 14px;
  font-size: 27px;
  font-weight: bold;
  color: #01529A;
  /* color: rgba(1, 82, 154, 10%); */
  margin-bottom: 25px;
  transition: 0.3s;
  direction: ltr;
}

.features {
  list-style: none;
  text-align: left;
  font-size: 13px;
  color: #2A2828;
  padding: 0;
  margin: 0 !important;
}

.features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.features li:last-child {
  margin-bottom: 0;
}

.features li span {
  color: #02529B;
  font-weight: bold;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #02529B;
  font-weight: bold;
}

.price-box .currency {
  font-size: 16px;
  vertical-align: super;
  margin-left: 2px;
}

.plan .plan-card:hover {
  transform: translateY(-8px);
}

/* Selected Style */
.plan input:checked+.plan-card {
  background: #02529B;
  color: white;
  border-color: #02529B;
  transform: translateY(-8px);
}

.plan input:checked+.plan-card .price-box {
  background: #fff;
  color: #02529B;
  font-weight: bold;
}

.plan input:checked+.plan-card .features li {
  color: white;
}

.plan input:checked+.plan-card .features li span {
  color: white;
}

.plan input:checked+.plan-card .features li::before {
  color: white;
}

@media (max-width: 1200px) {
  .plans {
    flex-wrap: wrap;
    justify-content: center;
  }

  .plan {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}

.subscribe_Now {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  background-color: #02529B;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  margin-top: 24px;
  transition: all 0.4s ease-in-out;
  border: 1px solid #02529B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.subscribe_Now i {
  transform: rotate(180deg);
}

.subscribe_Now:hover {
  background-color: transparent;
  color: #02529B;
}

.subscribe_Now:disabled {
  background-color: #b0b8c1;
  border-color: #b0b8c1;
  color: #fff;
  cursor: not-allowed;
}

.other_packages {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.customBorder {
  border-top-left-radius: 0 !important;
}


#installBtn {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  margin: 30px auto;
  background: transparent;
  border: 1px solid #01529a;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #01529a;
  gap: 10px;
  padding: 8px 0px;
  cursor: pointer;
  transition: all ease-in-out .4s;
}

#installBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#installBtn img {
  width: 30px;
}


/* applicationsStore */
.applicationsStore_content .card {
  background-color: #fff;
  padding: 28px 21px;
  border-radius: 15px;
}

.applicationsStore_content .card .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
}

.applicationsStore_content .card .head h4 {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: bold;
  color: #101010;
  padding: 0;
  margin: 0;
}

.applicationsStore_content .card .head h4 span {
  color: #01529A;
}

.applicationsStore_content .card .head .showMore {
  color: #01529A;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  transition: all ease-in-out .4s;
}

.applicationsStore_content .card .head .showMore:hover {
  transform: scale(1.05);
}

.appsCard {
  border-radius: 8px;
  border: 1px solid #F1F1F3;
  background-color: #fff;
  width: calc(100% / 3 - 7px);
  overflow: hidden;
  min-height: 137px;
}

.appsCard .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #FCFCFD;
  padding: 8px 16px;
  margin: 0 !important;
}

.appsCard .head .right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.appsCard .head .right p,
.appsCard .head .right a {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  color: #333333;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: block;
  transition: all ease-in-out .4s;
}

.appsCard .head .right p:hover,
.appsCard .head .right a:hover {
  transform: scale(1.05);
}

.appsCard .head .right img {
  width: 24px;
  height: 24px;
}

.appsCard .head .left i {
  font-size: 15px;
  color: #05CD99;
}

.appsCard .content {
  padding: 8px 16px;
}



.appsCard .content .price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.appsCard .content .price .salePriceContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 7px;
}

.appsCard .content .price .salePrice {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  color: #000;
  margin: 0;
  padding: 0;
}

.appsCard .content .price .originalPrice {
  font-size: clamp(9px, 2vw, 10px);
  font-weight: 500;
  color: #C8C6C6;
  margin: 0;
  padding: 0;
  text-decoration: line-through;
}

.appsCard .content .price .discount {
  font-size: clamp(9px, 2vw, 10px);
  font-weight: 500;
  color: #289D47;
  margin: 0;
  padding: 10px 14px;
  background-color: rgba(69, 196, 103, 10%);
  border-radius: 5px;
}

.appsCard .content .description {
  font-size: clamp(9px, 2vw, 10px);
  font-weight: 500;
  color: #4C4C4D;
  margin: 0;
  padding: 0;
  margin: 7px 0px;
}

.appsCard .content .ballourBadge p {
  font-size: clamp(9px, 2vw, 10px);
  font-weight: bold;
  color: #01529A;
  margin: 0;
  padding: 0;
}

.appsStoreContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.allLabels {
  margin: 21px 0px;
  position: relative;
}

.allLabels .label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid #F1F1F3;
  border-radius: 30px;
  background-color: rgba(1, 82, 154, 10%);
  cursor: pointer;
  color: #01529A;
  font-size: clamp(11px, 2vw, 16px);
  font-weight: 500;
  direction: rtl;
  transition: all ease-in-out .4s;
}

.allLabels .label:hover {
  background-color: #01529A;
  color: #fff;
}

.allLabels .label:hover svg path {
  fill: #fff;
}

.allLabels .label svg {
  width: 16px;
  height: 16px;
  transition: all ease-in-out .4s;
}

.allLabels .label svg path {
  fill: #01529A;
  transition: all ease-in-out .4s;
}

.allLabels .label p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.allLabelsCarousel .item {
  width: 100%;
}

.allLabelsCarousel .owl-stage {
  display: flex;
}

.allLabelsCarousel {
  /* direction: ltr; */
  width: 93%;
  margin: 0 auto;
}

.allLabelsCarousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 10px;
  bottom: auto;
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
}

.allLabelsCarousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  align-items: center;
  justify-items: center;
  border-radius: 50%;
  background-color: rgba(37, 49, 76, 20%) !important;
  color: #fff;
  font-size: 13px !important;
}

.allLabelsCarousel .owl-nav button:hover {
  background-color: #25314C !important;
}

.allLabelsCarousel .owl-nav button.owl-prev {
  margin: 0;
  padding: 0;
  right: -3%;
}

.allLabelsCarousel .owl-nav button.owl-next {
  margin: 0;
  padding: 0;
  left: -3%;
}

.requestApp {
  display: flex;
  flex-direction: column;
}

.requestApp .content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.requestApp .content .right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.requestApp .content .right h4 {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: bold;
  color: #0D0D0D;
  margin: 0;
  padding: 0;
}

.requestApp .content .right p {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  color: #7A7A7A;
  margin: 0;
  padding: 0;
}

.requestApp .content .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.requestApp a {
  width: 100%;
  padding: 10px 14px;
  border-radius: 5px;
  background-color: #01529A;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all ease-in-out .4s;
  margin-top: 24px;
  display: block;
  border: 1px solid #01529A;
}

.requestApp a:hover {
  background-color: transparent;
  color: #01529A;
}


.searchContent {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.searchContent .form-group {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: calc(100% - 5%);
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  background-color: #fff;
  padding: 4px 8px;
}

.searchContent .form-group i {
  font-size: 16px;
  color: #2D3748;
  margin: 0;
  padding: 0;
}

.searchContent .form-group input {
  border: none;
  outline: none;
  background-color: transparent;
  border-radius: 0;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  color: #2D3748;
  margin: 0;
  width: calc(100% - 30px);
  height: 100%;
  object-fit: contain;
}

.searchContent .form-group input::placeholder {
  color: #A0AEC0;
  opacity: 1;
  /* Firefox */
}

.searchContent .form-group input::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #A0AEC0;
}

.searchContent button {
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 8px 36px;
  border-radius: 5px;
  transition: all ease-in-out .4s;
  cursor: pointer;
}

.searchContent button:hover {
  background-color: transparent;
  color: #01529A;
}

.dropdownFilterList .filterList {
  background-color: #01529A;
  border: 1px solid #01529A;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 4px 10px;
  border-radius: 5px;
  transition: all ease-in-out .4s;
  cursor: pointer;
}

.dropdownFilterList .filterList:hover {
  background-color: transparent;
  color: #01529A;
}

.dropdownFilterList {
  position: relative;
}

.dropdownFilterList .filterListContain {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  padding: 10px;
  margin: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 150px;
}

.dropdownFilterList .filterListContain li {
  transition: all ease-in-out .4s;
  padding: 10px;
}

.dropdownFilterList .filterListContain li a {
  text-decoration: none;
  color: #000;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 500;
  margin: 0;
  padding: 0;
  display: block;
}

.dropdownFilterList .filterListContain li:hover {
  background-color: #f1f1f1;
}

.filterListContain.show {
  display: block;
}


.requestAppPage {
  margin-top: 20px;
}

.requestAppPage_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.requestAppPage_content .right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.requestAppPage_content .right p {
  color: #8D8BA7;
  font-size: clamp(11px, 2vw, 16px);
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.requestAppPage_content .right h4 {
  color: #01529A;
  font-size: clamp(24px, 2vw, 39px);
  font-weight: bold;
  margin: 10px 0;
  padding: 0;
}

.requestAppPage_content .right,
.requestAppPage_content .left {
  padding: 20px;
  width: 50%;
}

.requestAppPage_content .left {
  padding-right: 0;
}

.requestAppPage_content .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scaleX(-1);
}

.requestAppForm .form-group {
  width: 100%;
}

.requestAppForm .form-control {
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  background-color: #fff;
  padding: 14px 21px;
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 500;
  color: #2D3748;
  margin: 0;
}

.requestAppForm textarea {
  resize: none;
  min-height: 70px;
  field-sizing: content;
}

.requestAppForm .dropify-wrapper {
  height: 90px !important;
  border-style: dashed;
  border-radius: 8px;
  border-color: #D9D9D9;
}

.requestAppForm .dropify-message p {
  text-align: center !important;
  font-size: clamp(11px, 2vw, 14px) !important;
  color: #8a9096 !important;
}

.requestAppButton {
  width: 100%;
  padding: 10px 14px;
  border-radius: 5px;
  background-color: #01529A;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all ease-in-out .4s;
  cursor: pointer;
  border: 1px solid #01529A;
}

.requestAppButton:hover {
  background-color: transparent;
  color: #01529A;
}


.storeDetails .storeHead {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.storeDetails .storeHead .left .howToLink {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  background-color: #F2F2F2;
  color: #2F2F2F;
  padding: 9px 16px;
  font-size: clamp(11px, 2vw, 13px);
  border-radius: 5px;
  cursor: pointer;
}

.storeDetails .storeHead .left .howToLink i {
  color: #DD2B2F;
}

.storeDetails .storeHead .right .top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.storeDetails .storeHead .right .top img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.storeDetails .storeHead .right .top .info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
}

.storeDetails .storeHead .right .top .info .appName {
  font-size: 18px;
  font-weight: bold;
  color: #202124;
  margin: 0;
  padding: 0;
}

.storeDetails .storeHead .right .top .info .ballourBadge {
  font-size: 10px;
  font-weight: 500;
  color: #01529A;
  margin: 0;
  padding: 0;
}

.storeDetails .storeHead .right .top .info .labels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 100%;
  gap: 5px;
}

.storeDetails .storeHead .right .top .info .labels .label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 30px;
  background-color: rgba(1, 82, 154, 10%);
  color: #01529A;
  white-space: wrap;
}

.storeDetails .center,
.storeDetails .bottom,
.appDescriptionAndReviews {
  margin-top: 12px;
}

.storeDetails .center .price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.storeDetails .center .price .salePriceContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 7px;
}

.storeDetails .center .price .salePrice {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 0;
  padding: 0;
}

.storeDetails .center .price .originalPrice {
  font-size: 13px;
  font-weight: 500;
  color: #C8C6C6;
  margin: 0;
  padding: 0;
  text-decoration: line-through;
}

.storeDetails .center .price .discount {
  font-size: 13px;
  font-weight: 500;
  color: #289D47;
  margin: 0;
  padding: 7px 9px;
  background-color: rgba(69, 196, 103, 10%);
  border-radius: 5px;
}

.storeDetails .bottom .installButton {
  width: 148px;
  height: 31px;
  border-radius: 5px;
  background-color: #01529A;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 1px solid #01529A;
  transition: all ease-in-out .4s;
  cursor: pointer;
}

.storeDetails .bottom .installButton:hover {
  background-color: transparent;
  color: #01529A;
}

.storeDetails .bottom .uninstallButton {
  width: 148px;
  height: 31px;
  border-radius: 5px;
  background-color: #DD2B2F;
  color: #fff;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 1px solid #DD2B2F;
  transition: all ease-in-out .4s;
  cursor: pointer;
}

.storeDetails .bottom .uninstallButton:hover {
  background-color: transparent;
  color: #DD2B2F;
}

.storeDetails .center .inputContainer {
  width: 100%;
  margin-top: 10px;
}

.storeDetails .center .inputContainer input {
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background-color: #fff;
  padding: 10px 14px;
}

.storeDetails .center .inputContainer input::placeholder {
  color: #A0AEC0;
  opacity: 1;
  /* Firefox */
}

.appDescriptionAndReviews .headContainer {
  width: fit-content;
  background: #f1f5f2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 6px 12px;
  border-radius: 20px;
}

.appDescriptionAndReviews .headContainer button {
  font-size: 13px;
  font-weight: bold;
  color: #9EA1A1;
  background-color: transparent;
  border: 1px solid #F5F7F7;
  cursor: pointer;
  padding: 6px 31px;
  border-radius: 11px;
  transition: all ease-in-out .4s;
  white-space: nowrap;
}

.appDescriptionAndReviews .headContainer button:hover {
  color: #0B2B23;
  background-color: #F5F7F7;
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.appDescriptionAndReviews .headContainer button.active {
  color: #0B2B23;
  background-color: #F5F7F7;
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.appDescriptionAndReviewsContent {
  margin-top: 16px;
}


.facebookCatalog .catalog-links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.facebookCatalog .catalog-link {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  background-color: #F2F2F2;
  color: #2F2F2F;
  padding: 9px 16px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease-in-out .4s;
  border: 1px solid #F2F2F2;
  margin-top: 10px;
}

.facebookCatalog .catalog-link:hover {
  background-color: transparent;
  color: #01529A;
  cursor: pointer;
}

.facebookCatalog .catalog-link span {
  width: 30px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #37474f;
  border-radius: 10px;
  border: 1px solid #f2f2f2;
}

.facebookCatalog .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #2F2F2F;
  margin: 0;
  padding: 0;
}

.facebookCatalog .card-text {
  font-size: 14px;
  font-weight: 400;
  color: #2F2F2F;
  margin: 0;
  padding: 0;
}

.editor-label {
  font-size: 16px;
  font-weight: 600;
  color: #2F2F2F;
  margin: 0;
  padding: 0;
}



@media only screen and (max-width: 1506px) {
  .add_tickets_head .search_tickets {
    width: calc(100% - 43%);
  }
}

@media only screen and (max-width: 992px) {
  .requestAppPage_content .left {
    display: none;
  }

  .requestAppPage_content .right {
    width: 100%;
    padding: 0;
  }

  .requestAppPage_content .right h4 {
    margin: 0;
  }

  .requestAppPage {
    background-color: #fff;
    padding: 28px 21px;
    border-radius: 15px;
  }

  .leftSide {
    display: none;
  }

  .appsCard {
    width: calc(100% / 2 - 7px);
  }

  .pricing_head .pricing_sallary {
    font-size: 32px;
  }

  .pricing_head .monthly_salary {
    font-size: 15px;
    padding: 4px 20px;
  }

  .pricing_plan p {
    font-size: 16px;
  }

  .pricing_plan .switch label .lever {
    width: 45px;
    height: 20px;
  }

  .pricing_plan .switch label .lever:after {
    width: 11px;
    height: 11px;
    top: 4px;
  }

  .Most_used_p p {
    font-size: 11px;
    padding: 4px 20px;
  }

  .price_row button {
    font-size: 15px;
    padding: 5px 0px;
  }

  .last_step .payment_method {
    padding: 0px 10%;
  }

  .new_breadcrumb .breadcrumb .breadcrumb-item a {
    font-size: 8px;
  }

  .new_breadcrumb .breadcrumb-item.active {
    font-size: 10px;
    margin-top: 7px;
  }

  .no_tickets svg {
    width: 132px;
    height: 98px;
  }

  .no_tickets h1 {
    font-size: 24px;
    margin-top: 10px;
  }

  .no_tickets p {
    font-size: 12px;
    color: #718096;
    margin-top: 10px;
  }

  .no_tickets a {
    font-size: 12px;
  }

  .no_tickets {
    margin-top: 17%;
  }

  .add_tickets_head {
    flex-wrap: wrap;
  }

  .add_tickets_head .search_tickets {
    width: 50%;
  }

  .add_tickets_head .Create_ticket {
    margin-top: 20px;
  }

  .flitter_buttons button {
    min-width: 85px;
  }

  .add_tickets_head .count_ticket {
    width: 50%;
  }

  .ticket_info .info_head,
  .ticket_info_attachments .attach_head {
    font-size: 18px;
  }

  .ticket_info .tick_number {
    font-size: 20px;
    margin-top: 0;
  }

  .tick_ifo_stauts p .datat {
    font-size: 16px;
  }

  .tick_ifo_stauts p .tittel {
    font-size: 12px;
    margin-top: 2px;
  }

  .tick_ifo_stauts {
    margin-top: 10px;
  }

  .tick_ifo_descrption {
    margin-top: 10px;
  }

  .ticket_info_attachments .no_attachments {
    margin-top: 0px;
    min-height: 190px;
  }

  .ticket_info_attachments .no_attachments svg {
    margin: 0;
    width: 90px;
    height: 90px;
  }

  .ticket_info_attachments .no_attachments p {
    font-size: 12px;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
    font-size: 9px;
  }

  .close_tick_but button {
    padding: 4px;
    font-size: 8px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
  }

  .close_tick_but button i {
    margin-right: 3px;
    font-size: 9px;
  }

  .tickets_comments .comment_form .inputs_contain {
    width: 90%;
  }

  .sms_head svg {
    width: 70px;
    height: 70px;
  }

  .sms_head .left h1 {
    font-size: 16px;
  }

  .sms_head .left p {
    font-size: 12px;
    margin: 0;
  }

  .messages_variables {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start
  }

  .messages_variables .v_items {
    width: calc(100% / 3.1);
  }

  .message_alert {
    padding: 2px 5px;
  }

  .message_alert svg {
    width: 18px;
    height: 18px;
  }

  .message_alert h1 {
    font-size: 12px;
    line-height: 2;
    align-items: flex-start;
  }

  .messages_inputs .head h1,
  .messages_inputs .head select {
    font-size: 13px;
    line-height: 1;
  }

  .messages_inputs .input textarea {
    font-size: 9px;
    height: 50px;
    max-height: 50px;
  }

  .messages_inputs .input .messages_counter {
    font-size: 8px;
  }

  .messages_inputs .input {
    margin-top: 10px;
    padding: 10px;
  }

  .messages_inputs .head h1 span {
    font-size: 8px;
  }

  .save_edit_messages {
    width: 100%;
    padding: 8px !important;
  }

  .messages_variables .v_items .card-body p {
    font-size: 16px;
  }

  .messages_variables .v_items .card-body span {
    font-size: 12px;
  }

  .Action_record .head .tittle span {
    font-size: 13px;
  }

  .Action_record .head .date,
  .Action_record .content p {
    font-size: 10px;
  }

  .Action_record .content {
    margin-top: 10px;
  }

  .Action_record .head .tittle svg {
    width: 15px;
    height: 15px;
  }

  .Action_record .head .tittle {
    gap: 5px;
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .Main_currency .body {
    flex-wrap: wrap;
  }

  .currencies_card .head p {
    font-size: 13px;
  }

  .currencies_card .head img {
    width: 12px;
    height: 12px;
  }

  .Main_currency .body p {
    font-size: 11px;
  }

  .Available_currency .add_new_currency {
    gap: 5px;
    font-size: 10px;
    padding: 5px;
  }

  .currencies_items .item .right .currency_name {
    font-size: 12px;
  }

  .currencies_items .item .left .delete {
    font-size: 15px;
  }

  .Available_currency .no-data h3 {
    font-size: 12px;
  }

  .Main_currency .body .custom_but1 {
    width: 100%;
  }

  .Custom_messages .head img {
    width: 15px;
    height: 15px;
  }

  .Custom_messages .head p {
    font-size: 13px;
  }

  .Custom_messages .add_new_massage {
    gap: 5px;
    font-size: 10px;
    padding: 5px 7px;
  }

  .Custom_messages .no-data h3 {
    font-size: 14px;
    text-align: center;
  }

  .Custom_messages .head .head_text {
    gap: 4px;
  }

  .Custom_messages .body .massages_count {
    font-size: 12px;
  }

  .Custom_messages .massages_items .item .right .massage_name {
    font-size: 12px;
  }

  .Custom_messages .massages_items .item {
    margin-top: 10px;
  }

  .Custom_messages .massages_items .item .switch label .lever {
    margin: 0;
    width: 30px;
    height: 10px;
  }

  .Custom_messages .massages_items .item .switch label .lever:after {
    width: 15px;
    height: 15px;
    left: -3px;
    top: -2px;
  }

  .Custom_messages .massages_items .item .switch label input[type="checkbox"]:checked+.lever:after {
    left: 19px;
  }

  .Custom_messages .massages_items .item .left .action_contain button {
    width: 25px;
    height: 25px;
  }

  .Custom_messages .massages_items .item .left .action_contain button svg {
    width: 15px;
    height: 5px;
  }

  .Custom_messages .massages_items .item .left .action_contain .dropdown-menu {
    padding: 5px;
  }

  .Custom_messages .massages_items .item .left .action_contain .dropdown-menu .dropdown-item {
    padding: 5px;
    gap: 5px;
    font-size: 11px;
  }

  .Custom_messages .massages_items .item .left .dropdown-menu {
    min-width: 7rem;
  }

  .Record_changes_but {
    font-size: 10px;
    padding: 4px 7px;
  }

  .edit_shope {
    flex-wrap: wrap;
  }

  .edit_shope .item {
    width: calc(100% / 3.2);
  }

  .PackageDetails {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .PackageDetails .left {
    width: 100%;
  }

}

@media only screen and (max-width: 850px) {
  .set_counteris_button .pay_icon img {
    width: 50px;
  }

  .set_counteris_button .set_nam {
    font-size: 12px;
    margin-top: 9px;
  }

  .countries_requst_edit_data {
    font-size: 10px;
  }

  .package_type .pricing-plan .col-md-4 {
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .Most_used {
    margin-top: 30px !important;
  }

  .Feature_data_content {
    flex-direction: column;
    gap: 5px;
  }

  .Feature_data_content .Custom_margine_button,
  .Feature_data_details .Feature_data_details_parent .Custom_margine_button {
    margin: 0 !important;
  }

  .Feature_data_content .delet_Feature {
    width: 20%;
    float: left;
    padding: 5px !important;
    font-size: 18px;
  }

  .Feature_data_details .Feature_data_details_parent .Append_Sub_Feature,
  .Feature_data_details_parent .delet_Sub_Feature {
    width: 20%;
    padding: 5px !important;
    font-size: 18px;
  }

  .Feature_data_details .Feature_data_details_parent {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 15px;
    gap: 5px;
    padding: 15px;
    border-bottom: 2px dashed #ebebeb;
  }

  .Feature_data_details .Feature_data_details_parent:last-child {
    border-bottom: none;
  }

  .Feature_data_details .Feature_data_details_parent>div {
    width: calc(100% / 2.1);
  }

  .Feature_data_details .Feature_data_details_parent div .form-group {
    width: 100%;
  }

  .Feature_parent .parent_APPend {
    border-bottom: 1px solid #ddd;
  }

}

@media only screen and (max-width: 766px) {
  .appDescriptionAndReviews .headContainer button {
    padding: 6px 16px;
  }

  .appDescriptionAndReviews .headContainer {
    gap: 5px;
    padding: 6px;
  }

  .storeDetails .storeHead {
    flex-direction: column;
  }

  .appsCard {
    width: 100%;
  }

  .requestApp .content .left {
    display: none;
  }

  .allLabels .label,
  .appsCard .content .price .discount {
    padding: 5px 10px;
  }

  .owl-carousel .owl-nav {
    display: none !important;
  }

  .subscribe_steps .package_type {
    margin-top: 0px !important;
  }

  .owl-carousel .owl-nav {
    left: 10px;
    bottom: 10px;
  }

  .owl-carousel .owl-nav button {
    font-size: 8px !important;
    width: 20px;
    height: 20px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    margin-left: 5px;
  }

  .owl-carousel .owl-nav button.owl-next {
    margin-right: 5px;
  }

  /* .tooltip-inner  { 
    max-width:300px; 
 } */

  .discount_note span {
    font-size: 18px;
  }

  .discount_note img {
    width: 25px;
    height: 25px;
  }

  .discount_note {
    font-size: 12px;
  }

  .massage_package_contain {
    justify-content: center;
  }

  .package_data_head {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscription_type,
  .payment_type {
    flex-direction: column;
    width: 90%;
  }

  .payment_type .item,
  .subscription_type .item {
    width: 90%;
  }

  .domain_head {
    font-size: 30px;
  }

  .domain_small_head {
    font-size: 12px;
  }

  .choose_your_way {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .choose_domain .custom_but1 {
    font-size: 13px;
    padding: 0px 14px !important;
  }

  .input_search_domain .form-group {
    width: calc(100% - 25%);
    margin: 0;
  }

  .choose_your_way .form-inputs {
    padding-left: 0;
  }

  .last_step .payment_method {
    padding: 0px 0%;
  }

  .form_pay_now {
    width: 90%;
  }

  .add_tickets_head .count_ticket p {
    font-size: 10px;
  }

  .add_tickets_head .search_tickets form input {
    font-size: 10px;
    padding: 8px 5px;
  }

  .add_tickets_head .search_tickets form button {
    font-size: 10px;
    height: 33px;
    padding: 0px 9px;
  }

  .tickets_data .tick_item {
    padding: 10px;
  }

  .tickets_data .tick_item .head .data_contain .text {
    font-size: 9px;
  }

  .tickets_data .tick_item .head .data_contain .data {
    font-size: 9px;
  }

  .tickets_data .tick_item .head .ticket_status {
    font-size: 9px;
    padding: 6px 12px;
  }

  .form_add_tick .tick_attatchments .dropify-wrapper {
    font-size: 10px;
    line-height: 20px;
  }

  .form_add_tick .tick_attatchments .dropify-wrapper .dropify-message span.file-icon {
    font-size: 50px;
  }

  .form_add_tick .tick_attatchments .dropify-wrapper .dropify-message p::after {
    font-size: 9px;
    top: 25px;
  }

  .form_add_tick .form-group label {
    font-size: 11px;
  }

  .form_add_tick .select2-container--default .select2-selection--single {
    font-size: 11px;
    height: 30px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .form_add_tick .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2.5;
  }

  .form_add_tick .form-group .tick_descrption {
    min-height: 140px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .form_add_tick .form-group .send_tick {
    font-size: 12px;
  }

  .form_add_tick .attatchments_files h1 {
    font-size: 12px;
  }

  .form_add_tick .attatchments_files ul li {
    padding: 3px 5px;
    margin-top: 8px;
  }

  .form_add_tick .attatchments_files ul li .icon_ex svg {
    width: 16px;
    height: 16px;
  }

  .form_add_tick .attatchments_files ul li .name {
    font-size: 9px;
  }

  .form_add_tick .attatchments_files ul li .delet {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .send_tick_big {
    display: none;
  }

  .send_tick_small {
    display: block;
  }

  .attachments_files .attach {
    padding: 5px;
  }

  .attachments_files .attach .icon svg {
    width: 28px;
    height: 28px;
  }

  .attachments_files .attach .name {
    font-size: 8px;
  }

  /* .attachments_files .attach .download {
    font-size: 8px;
    padding: 1px;
  } */

  /* .attachments_files .attach .download svg {
    width: 11px;
    height: 11px;
  } */

  .tickets_comments .comment_form .inputs_contain {
    width: 85%;
  }

  .flitter_buttons button {
    min-width: 85px;
    margin-right: 15px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 45% !important;
  }

  .Platform_Updates .head {
    margin-top: 15px;
  }

  .Platform_Updates .head_text,
  .Platform_Updates .Custom_select .select-dropdown__button {
    font-size: 13px;
  }

  .Platform_Updates .Custom_select .select-dropdown__button svg {
    width: 15px;
    height: 15px;
    margin-left: 5px;
  }

  .Platform_Updates .Custom_select .select-dropdown__list-item {
    font-size: 10px;
    padding: 5px;
  }

  .Platform_Updates .Custom_select .select-dropdown {
    min-width: 140px !important;
  }

  .Platform_Updates .section_head .right .text h1 {
    font-size: 14px;
  }

  .Platform_Updates .section_head .right .logo {
    width: 30px;
    height: 30px;
  }

  .Platform_Updates .section_head .left span {
    font-size: 10px;
  }

  .Platform_Updates .section_head .left svg {
    width: 10px;
    height: 10px;
  }

  .platform_updates_model .modal-body .icon svg {
    width: 100px;
    height: 100px;
  }

  .platform_updates_model .modal-body .data h1 {
    font-size: 16px;
  }

  .platform_updates_model .modal-body .data p {
    font-size: 11px;
    margin-top: 5px;
  }

  .platform_updates_model .modal-body .data a {
    font-size: 11px;
    padding: 8px 0px;
    margin-top: 8px;
  }

  .platform_updates_model .modal-body {
    padding-bottom: 30px;
  }

  .admin_virion {
    display: block;
  }

  .messages_variables {
    justify-content: space-between;
  }

  .messages_variables .v_items {
    width: calc(100% / 2.1);
  }

  .messages_inputs .switch label .lever {
    width: 25px;
    height: 10px;
    margin: 0 5px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .messages_inputs .switch label .lever:after {
    width: 13px;
    height: 13px;
    top: -1px;
  }

  .messages_inputs .switch label input[type="checkbox"]:checked+.lever:after {
    left: 12px;
  }

  .payment_card .head h1 {
    font-size: 12px;
  }

  .payment_card .head img {
    width: 15px;
    height: 15px;
  }

  .payment_card .head,
  .payment_card .body {
    padding: 5px 10px;
  }

  .payment_card .body .ways p {
    font-size: 12px;
  }

  .payment_card .switch label .lever {
    width: 30px;
    height: 10px;
    margin: 0px 5px;
  }

  .payment_card .switch label .lever:after {
    width: 15px;
    height: 15px;
    left: -1px;
    top: -3px;
  }

  .payment_card .switch label input[type="checkbox"]:checked+.lever:after {
    left: 17px;
  }

  .payment_card .body .descrption {
    font-size: 12px;
  }

  .payment_card .bank_head .add_account_bank {
    font-size: 9px;
    padding: 5px;
    gap: 4px;
    align-items: baseline;
  }

  .bank_accounts .account .right p span {
    font-size: 12px;
  }

  .show_more {
    font-size: 11PX;
  }

  .checkout_options .head {
    gap: 7px;
    padding: 13px;
  }

  .checkout_options .head svg {
    width: 15px;
    height: 15px;
  }

  .checkout_options .head.Active p,
  .checkout_options .head.disabled p {
    font-size: 13px;
  }

  .checkout_options .body .items {
    margin-top: 7px;
    padding-bottom: 7px;
  }

  .checkout_options .body .items p {
    font-size: 13px;
  }

  .checkout_options .switch label .lever {
    width: 30px;
    height: 11px;
  }

  .checkout_options .switch label .lever:after {
    width: 17px;
    height: 17px;
  }

  .checkout_options .switch label input[type="checkbox"]:checked+.lever:after {
    left: 18px;
  }

  .reports_buton {
    flex-wrap: wrap;
    gap: 10px;
  }

  .facebookCatalog .catalog-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media only screen and (max-width: 575px) {

  .addWeightValues .form-group label,
  .editWeightValues .form-group label {
    font-size: 10px;
  }

  .addWeightValues .form-group .form-control,
  .editWeightValues .form-group .form-control {
    font-size: 10px;
    padding: 0.2rem;
  }

  .addWeightValues .col-1,
  .addWeightValues .col-3,
  .addWeightValues .col-4,
  .editWeightValues .col-1,
  .editWeightValues .col-3,
  .editWeightValues .col-4 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  /* new edit categories */
  /* .categoriesItems .parent .itemChild {
    margin-left: 10px;
  }
  .categoriesItems .parent .data {
    padding: 5px;
  }
  .categoriesItems .parent .data .right,
  .categoriesItems .parent .data .left {
    gap: 5px;
  }
  .categoriesItems .parent .data .right img{
    width: 20px;
    height: 20px;
  }
  .categoriesItems .parent .data .right .categoriName {
    font-size: 12px;
  }
  .categoriesItems .parent .data .left .Custom_dropdown .optionsButton {
    font-size: 12px;
    width: 15px;
    height: 15px;
  }
  .categoriesItems .parent .data .left .openCategoriButton {
    font-size: 10px;
  } */
  .sortCategori,
  .saveSort {
    padding: 2px 19px !important;
  }

  .parent .right .data p,
  .parent .right .icon i {
    font-size: 11px !important;
  }

  .nested-list {
    padding-left: 10px !important;
  }


  .owl-carousel .owl-nav {
    top: -26px;
    left: 10px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    margin-left: 2px;
  }

  .owl-carousel .owl-nav button.owl-next {
    margin-right: 2px;
  }

  .owl-carousel .owl-nav button {
    width: 16px;
    height: 16px;
  }

  .sms_head svg {
    width: 50px;
    height: 50px;
  }

  .sms_head {
    align-items: flex-start
  }

  .messages_variables .v_items .card-body p {
    font-size: 12px;
  }

  .messages_inputs .head {
    flex-wrap: wrap;
  }

  .add_bank_account .form-group label,
  .edit_bank_account .form-group label,
  .new_modal_design .form-group label,
  .edit_paypal .form-group label {
    margin-bottom: 1px;
  }

  .add_bank_account .form-group,
  .edit_bank_account .form-group,
  .new_modal_design .form-group,
  .edit_paypal .form-group {
    margin-bottom: 20px;
  }

  .edit_shope {
    justify-content: space-between;
  }

  .edit_shope .item {
    width: calc(100% / 2.2);
  }

  .recoust_info_data {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .recoust_info_data>div {
    width: 100%;
    text-align: left !important;
  }

  .pr_data .icon i {
    font-size: 12px;
  }

  .pr_data .re-photo h4,
  .pr_data .re-nam h4,
  .pr_data .re-barcode h4,
  .pr_data .re-quantity h4,
  .pr_data .re-price h4 {
    font-size: 10px;
    line-height: 1;
  }

  .pr_data .re-photo p,
  .pr_data .re-nam p,
  .pr_data .re-barcode p,
  .pr_data .re-quantity p,
  .pr_data .re-price p {
    font-size: 10px;
  }

  .re-photo .tabel_img {
    width: 45px;
    height: 45px;
  }

  .pr_data {
    justify-content: space-between;
  }

  .productsReorder .parent {
    padding: 5px 3px;
  }

  .profileContain .profileContent {
    padding: 10px;
  }

  .profileContain .profileContent .phoneData .data .left .verified {
    font-size: 10px;
    gap: 2px;
  }

  .profileContain .profileContent .phoneData .data .left .verified svg {
    width: 11px !important;
  }

  .PackageDetails .left .balanceItems {
    padding: 11px;
    border-radius: 12px;
  }

  .PackageDetails .left .balanceItems .balanceItems_title {
    font-size: 12px;
  }

  .PackageDetails .left .balanceItems p {
    font-size: 16px;
  }

}

@media only screen and (max-width: 500px) {
  .appDescriptionAndReviews .headContainer button {
    padding: 6px 6px;
  }

  /* .tooltip-inner  { 
    max-width:150px; 
  } */

  .input_search_domain {
    flex-direction: column;
    align-items: center;
  }

  .input_search_domain .form-group {
    width: 100%;
  }

  .choose_domain .custom_but1 {
    margin-top: 15px;
  }

  .Upgrade_now a {
    font-size: 9px;
    white-space: normal;
    display: block;
    min-width: 90px;
  }

  .topbar .top-navbar .navbar-nav {
    display: flex;
    align-items: center;
  }

  .Upgrade_now {
    margin-left: 3px !important;
    margin-right: 3px !important;
  }

  .to_site p span {
    font-size: 11px;
  }

  .to_site p a {
    font-size: 10px;
  }

  .topbar .top-navbar .navbar-header .navbar-brand {
    width: 40px;
    height: 40px;
  }

  .flitter_buttons button .head {
    font-size: 9px;
  }

  .flitter_buttons button .number {
    font-size: 10px;
  }

  .flitter_buttons button {
    min-width: 60px;
    margin-right: 10px;
  }

  .tickets_comments .comments ul li .comment_card .conntent .file_attach .name {
    font-size: 9px;
  }

  .tickets_comments .comments ul li .comment_card .conntent .file_attach svg {
    width: 10px;
    height: 10px;
  }

  .tickets_comments .comment_form form .attch_name_close {
    padding: 4px 5px;
  }

  .tickets_comments .comment_form form .attch_name_close svg {
    width: 15px;
    height: 15px;
  }

  .tickets_comments .comment_form form .attch_name_close p {
    font-size: 10px;
    margin: 0px 3px;
  }

  .tickets_comments .comment_form form .attch_name_close .delet_attach {
    font-size: 9px;
  }

  .ticket_footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }

  .ticket_footer .select_showing {
    margin-top: 10px;
  }

  .Platform_Updates .head {
    margin-top: 0;
  }

  .Platform_Updates .head_text,
  .Platform_Updates .Custom_select .select-dropdown__button {
    font-size: 12px;
  }

  .Platform_Updates .Custom_select .select-dropdown {
    min-width: 110px !important;
    height: 31px;
  }

  .Platform_Updates .Custom_select .select-dropdown__list-item {
    font-size: 9px;
    padding: 4px;
  }

  .Platform_Updates .section_head .right .text h1 {
    font-size: 11px;
  }

  .Platform_Updates .section_head .right .logo {
    width: 20px;
    height: 30px;
  }

  .Platform_Updates .section_head .left span {
    font-size: 7px;
  }

  .Platform_Updates .no-data .card-body h1 {
    font-size: 16px;
    margin-top: 10px;
  }

  .Platform_Updates .no-data .card-body svg {
    width: 130px;
    height: 130px;
  }

  .payment_card .head img {
    width: 11px;
    height: 11px;
  }

  .payment_card .head h1 {
    font-size: 10px;
    line-height: 2.5;
  }

  .payment_card .head {
    gap: 5px;
  }

  .payment_card .body .descrption {
    font-size: 10px;
  }

  .payment_card .body .ways p {
    font-size: 10px;
  }

  .payment_card .body .ways .data p {
    gap: 5px;
  }

  .payment_card .body .ways .data p img {
    width: 11px;
    height: 11px;
  }

  .payment_card .action_contain button {
    width: 23px;
    height: 23px;
  }

  .payment_card .action_contain button svg {
    width: 10px;
    height: 3px;
  }

  .payment_card .body .ways .options,
  .bank_accounts .account .left .options {
    gap: 2px;
  }

  .payment_card .action_contain .dropdown-menu .dropdown-item {
    font-size: 10px;
    gap: 5px;
  }

  .payment_card .action_contain .dropdown-menu {
    padding: 4px;
  }

  .noAccounts p {
    font-size: 10px;
  }

  .delete_modal .modal-body {
    gap: 15px;
    padding: 15px;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 2rem)
  }

  .payment_card .bank_head .right {
    gap: 5px;
  }

  .edit_shope .item {
    width: 100%;
  }

}

@media only screen and (max-width: 445px) {

  .addWeightValues .delete_option,
  .editWeightValues .delete_option2 {
    font-size: 10px;
    border-radius: 4px;
    padding: 2px 4px;
  }

  .uberCard .card-body {
    padding: .3rem !important;
  }

  .set_counteris_button .pay_icon img {
    width: 20px;
  }

  .set_counteris_button .set_nam {
    font-size: 10px;
    margin-top: 5px;
  }

  .countries_requst_edit_data {
    font-size: 9px;
  }

  .flitter_buttons button {
    min-width: 55px;
    margin-left: 0px;
    margin-right: 5px;
  }

  .flitter_buttons button .head {
    font-size: 7px;
  }

  .flitter_buttons button .number {
    font-size: 7px;
  }

  .add_tickets_head .Create_ticket {
    padding: 7px 9px;
    font-size: 9px;
  }

  .attachments_files .attach {
    width: calc(100% / 3.3);
  }

  .tickets_comments .comment_form .comment_buton button {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .new_breadcrumb .breadcrumb .breadcrumb-item a {
    font-size: 6px;
  }

  .new_breadcrumb .breadcrumb-item.active {
    font-size: 6px;
    margin-top: 8px;
  }

  .close_tick_but button {
    padding: 2px;
    font-size: 7px;
  }

  .close_tick_but button i {
    margin-left: 1px;
    font-size: 5px;
  }

  .tick_action .show_tick {
    font-size: 9px;
    padding: 6.3px 20px;
  }

  .tick_action .close_tick {
    font-size: 9px;
    padding: 6px 20px;
  }

  .form_add_tick .form-group label {
    margin-bottom: 0px;
  }

  .Platform_Updates .head {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .Feature_data_details .Feature_data_details_parent .Append_Sub_Feature,
  .Feature_data_details_parent .delet_Sub_Feature {
    width: 50%;
  }

}

@media only screen and (max-width: 350px) {

  .addWeightValues .col-1,
  .addWeightValues .col-3,
  .addWeightValues .col-4,
  .editWeightValues .col-1,
  .editWeightValues .col-3,
  .editWeightValues .col-4 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  .Platform_Updates .section_head .right .text h1 {
    font-size: 9px;
    margin-left: 4px;
  }

  .Platform_Updates .section_head .left span {
    font-size: 6px;
  }

  .Platform_Updates .section_head .left span.dash {
    font-size: 9px;
    margin: 0px 2px;
  }

  .Platform_Updates .section_head .left svg {
    width: 7px;
    height: 10px;
  }

  .profileContain .profileContent .phoneData .data .left {
    flex-wrap: wrap
  }
}



.modal {
  width: 100% !important;
  height: 100% !important;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  min-height: calc(100% - 1rem);
}

.receiptPhotoContain {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.receiptPhotoContain img {
  width: 75%;
  height: auto;
}