  @charset "utf-8";
  @font-face {
    font-family: 'Berlin Sans FB';
    font-style: normal;
    font-weight: normal;
    src: local('Berlin Sans FB'), url('BRLNSR.woff') format('woff');
  }
  @font-face {
    font-family: 'Berlin Sans FB Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Berlin Sans FB Bold'), url('BRLNSB.woff') format('woff');
  }
  html {
    background-color: #008080;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  body {
    height: 100vh;
    background-image: url("../img/bg.png");
    background-repeat: repeat-x;
    background-size: contain;
    padding-top: 10px;
  }
	.rtl{
		direction: rtl;
	}

#loader{
 background: rgb(1 111 107 / 94%);
 width: 100%;
 height: 100vh;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 11111;
}
.loading-grid1 {
  width: 80px;
  height: 80px;
  display: inline-block;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1111;
}

.loading-grid1 div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  animation: loading-grid 1.2s linear infinite;
  z-index: 111;
  background: gainsboro;
}

.loading-grid1 div:nth-child(1) {
  top: 8px;
  left: 8px;
  animation-delay: 0s;
}

.loading-grid1 div:nth-child(2) {
  top: 8px;
  left: 32px;
  animation-delay: -0.4s;
}

.loading-grid1 div:nth-child(3) {
  top: 8px;
  left: 56px;
  animation-delay: -0.8s;
}

.loading-grid1 div:nth-child(4) {
  top: 32px;
  left: 8px;
  animation-delay: -0.4s;
}

.loading-grid1 div:nth-child(5) {
  top: 32px;
  left: 32px;
  animation-delay: -0.8s;
}

.loading-grid1 div:nth-child(6) {
  top: 32px;
  left: 56px;
  animation-delay: -1.2s;
}

.loading-grid1 div:nth-child(7) {
  top: 56px;
  left: 8px;
  animation-delay: -0.8s;
}

.loading-grid1 div:nth-child(8) {
  top: 56px;
  left: 32px;
  animation-delay: -1.2s;
}

.loading-grid1 div:nth-child(9) {
  top: 56px;
  left: 56px;
  animation-delay: -1.6s;
}

@keyframes loading-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
  .logo {
    display: block;
  }
  .logo .link img {
    max-width: 215px;
  }
  .menu {
    width: 36px;
    display: block;
    height: 23px;
    /*  background: url("../img/menu.png") no-repeat;*/
  }
  .container {
    margin-top: 80px;
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  .menu-items {
    display: flex;
  }
  .nav-container li {
    list-style: none;
  }
  .nav-container a {
    text-decoration: none;
    color: #ffffff;
    padding: 0.7rem;
  }
  .nav-container a:hover {
    font-weight: bolder;
  }
  .nav-container {
    display: block;
    position: fixed;
    top: 15px;
    left: 0%;
    z-index: 1;
  }
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 14px;
    left: 20px;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
  }
  .nav-container .hamburger-lines {
    height: 25px;
    width: 30px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .nav-container .hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 30px;
    background: #ffffff;
    opacity: 1;
  }
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
    width: 60%;
    left: 0px;
    position: relative;
  }
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
    width: 60%;
    right: -14px;
    position: relative;
  }
  .menu-items {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1;
    width: 100%;
    background: linear-gradient(180deg, rgb(15 70 56) 0%, rgb(15 70 56 / 45%) 40%, rgb(0 128 128 / 52%) 56%);
    transform: translate(0, 0);
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: 0.5s ease-in-out;
    text-align: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .menu-items li {
    margin-bottom: 1.2rem;
    font-family: 'Berlin Sans FB';
    font-weight: bold;
    font-size: 40px;
    color: #fff;
  }
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
  }
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: translate(7px, -4px)rotate(45deg);
    width: 35px;
    height: 10px;
    opacity: 0.8;
  }
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: translate(-7px, 4px)rotate(-45deg);
    width: 35px;
    height: 10px;
    opacity: 0.5;
  }
  .nav-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
  .lang-switch {
    width: 23px;
    display: block;
    height: 23px;
    background: url("../img/lang.png") no-repeat;
    cursor: pointer;
  }
  a.link {
    display: block;
  }
  .header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    padding: 10px 5% 0px;
    transition: 0.3s ease-in-out;
    z-index: 1;
  }
  .top-bar-bg {
    background: rgb(1 111 107);
    background: #0a4638;
    box-shadow: 1px -4px 20px 0px #00000073;
  }
  .navbar {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 15px;
    width: 90%;
    height: 70px;
    background: #fff;
    border-radius: 36px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #8B8B8B;
    text-shadow: -1px 2px 20px #0000006b;
  }
  .navbar .cr-nav {
    width: 50px;
    height: 50px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .navbar .active {
    color: #128080 !important;
    font-weight: bold;
  }
  .navbar .cr-nav span {
    display: block;
    height: 33px;
    position: relative;
    width: 33px;
  }
  .navbar .account span:before {
    display: block;
    content: "";
    position: absolute;
    width: 26px;
    height: 30px;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background: url("../img/icon_account.png") no-repeat;
  }
  .navbar .account:hover, .navbar .orders:hover, .navbar .payments:hover, .navbar .support:hover {
    color: #128080 !important;
    font-weight: bold;
  }
  .navbar .account:hover span:before, .active .account span:before {
    background: url("../img/icon_account_selected.png") no-repeat;
  }
  .navbar .orders span:before {
    display: block;
    content: "";
    position: absolute;
    width: 36px;
    height: 31px;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background: url("../img/icon_orders.png") no-repeat;
  }
  .navbar .orders:hover span:before, .active .orders span:before {
    background: url("../img/icon_orders_selected.png") no-repeat;
  }
  .navbar .home span:before {
    display: block;
    content: "";
    position: absolute;
    width: 43px;
    height: 74px;
    left: 50%;
    transform: translateX(-50%);
    top: -33px;
    background: url("../img/icon_home.png") no-repeat;
  }
  .navbar .payments span:before {
    display: block;
    content: "";
    position: absolute;
    width: 30px;
    height: 23px;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background: url("../img/icon_payment.png") no-repeat;
  }
  .navbar .payments:hover span:before, .active .payments span:before {
    background: url("../img/icon_payment_selected.png") no-repeat;
  }
  .navbar .support span:before {
    display: block;
    content: "";
    position: absolute;
    width: 30px;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background: url("../img/icon_support.png") no-repeat;
  }
  .navbar .support:hover span:before, .active .support span:before {
    background: url("../img/icon_support_selected.png") no-repeat;
  }
  .bottom-fx {
    position: fixed;
    bottom: 30px;
    width: 100%;
  }
  .user-info {
    width: 90%;
    margin: 27px auto 15px auto;
  }
  .user-info h1 {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 45px;
    color: #fff;
  }
  .user-location {
    text-align: center;
    font-family: arial;
    font-weight: bold;
    font-size: 14px;
    width: 155px;
    height: 34px;
    background: #025454;
    border-radius: 36px;
    margin: auto;
    display: flex;
    color: #fff;
    flex-wrap: nowrap;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .user-location span {
    position: absolute;
    left: 10%;
  }
  .user-location span:before {
    position: absolute;
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background: url("../img/active-location.png") no-repeat;
    top: -21px;
    left: -45px;
  }
  .tracking {
    font-family: 'Berlin Sans FB';
    font-weight: bold;
    font-size: 15px;
    width: 90%;
    height: 55px;
    background: #ffffffde;
    margin: 25px auto 25px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    border-radius: 10px;
    position: relative;
    align-items: center;
    padding: 0 5%;
  }
  .tracking .track-input {
    width: 90%;
  }
  .tracking .track-input::placeholder {
    color: #128080;
  }
  .tracking .scan:before {
    content:
      "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: -15px;
    width: 1px;
    height: 30px;
    background: #a5a5a5;
  }
  .tracking .scan {
    width: 23px;
    height: 17px;
    background: url("../img/cam.png") no-repeat;
    position: relative;
    background-position: right;
  }
  .services {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: space-around;
    width: 360px;
    height: 335px;
    margin: 30px auto 0px;
    flex-wrap: wrap;
    align-items: center;
    align-content: space-between;
    text-shadow: 0px 3px 9px #00000054;
  }
  .services .cr-serv {
    width: 160px;
    height: 160px;
    background: #ffffff3d;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: flex-start;
    position: relative;
  }
  .services .new-shipment span {
    background: url("../img/icon_scan.png") no-repeat;
    background-size: 75%;
    background-position: center;
  }
  .services .update-location span {
    background: url("../img/icon_location.png") no-repeat;
    background-size: 50%;
    background-position: center;
  }
  .services .settings span {
    background: url("../img/icon_settings.png") no-repeat;
    background-size: 65%;
    background-position: center;
  }
  .services .notifications span {
    background: url("../img/icon_notifications.png") no-repeat;
    background-size: 55%;
    background-position: center;
  }
  .services span {
    width: 90%;
    height: 130px;
  }
  .notifications i {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e10000;
    width: 30px;
    height: 30px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
  }
  .modal-window {
    position: fixed;
    background: linear-gradient(180deg, rgb(15 70 56) 0%, rgb(15 70 56 / 45%) 40%, rgb(0 128 128 / 52%) 56%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    font-family: 'Berlin Sans FB';
    font-weight: normal;
  }
  .modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .modal-window > div {
    width: 95%;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, 11%);
    padding: 20px;
    background: #ffffffb3;
    /* transition: all 1s ease-in; */
  }
  .modal-window header {
    font-weight: bold;
  }
  .modal-window h1 {
    font-size: 150%;
    font-weight: bold;
  }
  .modal-close {
    font-size: 3em;
    font-weight: bolder;
    color: rgb(4 70 56 / 70%);
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
  }
  .modal-close:hover {
    color: black;
  }
  .modal-window > div {
    border-radius: 1rem;
  }
  .modal-window div:not(:last-of-type) {
    margin-bottom: 5px;
  }
  div#map {
    width: 100%;
    height: 40vh;
    position: relative;
    z-index: -1;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
  }
  .leaflet-popup-tip-container {
    display: none;
  }
  #sheetlocation {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
  }
  .sheethead {
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    color: #fff;
  }
  .containerized {
    position: relative;
    overflow-x: visible;
  }
  .containerized a {
    background: #ffffffd1;
    display: flex;
    width: 40%;
    float: left;
    margin-left: 8px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    height: 90px;
    border-radius: 10px;
    position: relative;
    top: -31px;
    font-weight: bold;
    font-size: 13px;
    color: #025454;
  }
  .international-shipping span {
    background-image: url("../img/INTERNATIONAL.png");
    background-size: 65%;
  }
  .cr-shipping span {
    width: 130px;
    height: 130px;
    background-color: #ffffff59;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
  }
  .local-shipping span {
    background-image: url("../img/LOCAL.png");
    background-size: 70%;
  }
  .shipping {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
  }
  .cr-shipping {
    display: flex;
    width: 50%;
    height: 300px;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 25px;
    align-content: space-around;
  }
  .cr-shipping .text {
    width: 175px;
    background: #009776;
    border-radius: 15px;
    height: 47px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: -42px;
  }
  .shippingbox {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 18px;
    width: 100%;
    height: auto;
    display: block;
    background: #ffffffd6;
    padding: 10px;
    border-radius: 10px;
    margin: 0 auto;
  }
  .dimensions {
    min-height: 240px;
    background-image: url("../img/Dimensions.png");
    background-position: 20px 70%;
    background-size: 31%;
    background-repeat: no-repeat;
  }
  .shippingbox .title {
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 30px;
  }
  .dimensions .sizes {
    width: 60%;
    float: right;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
  }
  .dimensions .sizes input {
    border: 3px solid rgb(18 128 128);
    border-radius: 19px;
    text-indent: 11px;
    height: 30px;
    margin-top: 11px;
    color: gray;
    width: 80%;
  }
  .shippingbox .countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: space-between;
    height: 100px;
    width: 90%;
    margin: 20px auto;
  }
  .countries select, .countries input {
    background: #ffffff;
    width: 93%;
    text-indent: 8px;
    padding: 10px 10px;
    border-radius: 15px;
    position: relative;
  }
  .countries select:after {
    content: "V";
    position: absolute;
  }
  .countries div {
    width: 50%;
  }
  div.countries > div:nth-child(3), div.countries > div:nth-child(4) {
    margin-top: 20px;
  }
  .ratesbutton {
    background: #009776;
    box-shadow: 0px 5px 8px 0px #0000007a;
    color: white;
    text-align: center;
    padding: 17px;
    width: 95%;
  }
  #open-rates-modal {}
  #open-notifications-modal .h2 {
    color: gray;
    font-size: 20px
  }
  .ratebox {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 19px;
    height: 110px;
    align-items: flex-start;
  }
  .book-company {
    background: rgb(3 90 80);
    color: white;
    padding: 10px;
    border-radius: 7px;
  }
  .price-company {
    height: 40px;
    text-align: center;
    line-height: 2;
    background: #2e584182;
    width: 100%;
    border-radius: 30px;
    color: white;
  }
  .rate-company {
    width: 160px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 11px;
  }
  .FedEx {
    background-image: url(../img/fedex.png);
    background-color: #4b3485;
  }
  .Aramex {
    background-image: url(../img/arm.png);
    background-color: #eb2b2b;
  }
  .DHL {
    position: relative;
    background-image: url(../img/dhl.png);
    background-color: #fece16;
  }
  .Safqa {
    position: relative;
    background-image: url(../img/logow-en.png);
    background-color: #025454;
    background-position: center;
    background-size: 90%;
  }
  .containerized {
    position: relative;
    z-index: 11111111111;
  }
  @media (max-width: 375px) {
    html {
      height: 115vh;
    }
  }
  @media (max-width: 320px) {
    .services {
      transform: scale(0.8) translate(-7%, -18%);
    }
    .cr-shipping {
      height: 235px;
      width: 45%;
    }
    .shipping {}
    .cr-shipping span {}
  }
#localshipping .countries {
    height: 50px;
}
  .info-box {
    width: 90%;
    margin: 20px auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Berlin Sans FB';
    font-weight: normal;
  }
  .info-box-title {
    font-size: 20px;
    color: #025454;
    margin-bottom: 30px;
  }
  .info-box-contents {
    padding-bottom: 20px;
    width: 95%;
    margin: auto;
  }
  .info-box-list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: 1px solid #cdcdcd;
  }
  .info-box-list-logout {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .info-box-list-logout .info-box-list-text {
    color: #cf0000;
    font-weight: bold;
  }
  .info-box-list-text {
    color: #5e5e5e;
  }
  .info-box-list-icon {
    background-image: url("../img/edit.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 30px;
  }
  .info-box-list-status {
    padding-bottom: 15px;
  }
  .info-box-list .send-icon {
    background-image: url("../img/send-1.png");
  }
  .support-box {
    width: 90%;
    margin: 20px auto 0;
    background: white;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Berlin Sans FB';
    font-weight: normal;
  }
  .support-box-title {
    font-size: 20px;
    color: #025454;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .support-box-contents {
    padding-bottom: 20px;
    width: 85%;
    margin: 15px auto;
    background: white;
    border-radius: 10px 45px 45px 25px;
    padding: 14px;
  }
  .support-box-list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: 1px solid #cdcdcd;
  }
  .support-box-list-text {
    color: #5e5e5e;
  }
  .support-box-list-status {
    padding-bottom: 15px;
  }
  .support-box-title span {
    font-size: 15px;
    color: rgb(1 111 107);
  }
  .support-box-reply {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .support-box-reply input::placeholder {
    color: gray;
  }
  .support-box-reply-button {
    background-image: url("../img/send-1.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 15px;
  }
  .support-box-sender span {
    width: 65%;
    height: 39px;
    background: url("../img/reply.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .support-box-texts {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .support-box-sender {
    width: 20%;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .support-box-reply-info {
    padding: 0 15px;
    width: 80%;
    height: auto;
    overflow-wrap: break-word;
  }
  .support-box-contents.replies {
    border-radius: 45px 10px 25px 45px;
  }
  .support-box-contents.replies .support-box-texts {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  .support-overflow {
    max-height: 46vh;
    overflow-y: scroll;
  }
  .notifications-info {
    background: #ddddddd4;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    color: #008080;
    box-shadow: 1px 2px 12px 1px rgb(0 128 128 / 58%);
  }
  .notifications-show {
    top: 110px !important;
    background: unset !important;
    padding: unset !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }
  .lang-switch-pan {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transition: all 0.5s ease-in-out;
    font-family: 'Berlin Sans FB';
    font-weight: normal;
    font-size: 45px;
    color: #fff;
    transform: translateX(-50%);
    display: flex;
    width: 100%;
    height: 100vh;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  .lang-switch-pan.show {
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .lang-ar {
    position: relative;
    margin-bottom: 20px;
    width: 25vw;
  }
  .lang-ar:before {
    position: absolute;
    content: "";
    background-color: #116c35;
    background-image: url('../img/lang-sa.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 40px;
    height: 40px;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
  }
  .lang-en {
    position: relative;
    width: 25vw;
  }
  .lang-en:before {
    position: absolute;
    content: "";
    background-color: #00287d;
    background-image: url(../img/lang-uk.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 40px;
    height: 40px;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
  }
  .lang-switch-pan .overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgb(1 111 107 / 16%);
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    visibility: hidden;
  }
  .lang-switch-pan.show .overlay {
    visibility: visible;
    opacity: 1;
  }
div#open-checkout {
    top: -11%;
}
div#open-checkout img{
    background: white;
    padding: 16px;
    border-radius: 20px;
    width: 80%;
    margin: auto;
}
div#open-checkout ul{
    margin-top: 30px;
}
div#open-checkout ul li{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #009776;
    padding: 15px;
    border-radius: 10px;
    margin-top: 6px;
}
div#open-checkout input{
    background: white;
    width: 90%;
    margin: auto;
    height: 35px;
    padding-left: 10px;
    border-bottom: 1px solid;
}
#open-checkout-payment label {
    /* position: absolute; */
    /* top: -22px; */
}

#open-checkout button {
    width: 100%;
    background: rgb(15 70 56);
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    height: 40px;
    border-radius: 20px;
    color: white;
    font-size: 1.3em;
    margin: auto;
}


.barcode {
    width: 70%;
    margin: auto;
    display: flex;
}

#open-checkout h4 {
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: -5px auto;
}

div#open-checkout-payment {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}
div#open-checkout-payment .fullinfo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#open-checkout-payment .someinfo input {
    width: 40%;
}

#open-checkout-payment .someinfo {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}
#open-checkout .payments .tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
#open-checkout .payments .tabs {
  /* border-radius: 18px; */
  /* overflow: hidden; */
  /* box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5); */
}

#open-checkout .payments .tab {
  width: 100%;
  color: white;
  overflow: hidden;
  margin: 7px auto;
}
#open-checkout .payments .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: rgb(15 70 56);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}
#open-checkout .payments .tab-label:hover {
  background: #1a252f;
}
#open-checkout .payments .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.visacard::before {
    content: '';
    display: block;
    position: absolute;
    right: 15%;
    top: 25%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABmJLR0QA/wD/AP+gvaeTAAAC5klEQVRoge2YSWiTURDHf0m0RVxAUaz2IlakKYone1A8uICgFVQ85CBBtHrTg73V5WL0oAe9iuDFBTwpWkELagX1Yjy41aV4EpG6IDFF3Go8zMRMPrJ8mrTfF3l/eOS9efPNm3n/eVvAwcHBwSFgbABuASNALuRlBLgJdHmDOBIC5/61pCwTQTtTa+mKASeBeV6KGgwtESALTAnakxqRjSDUNDyiQTtQL7hAwgYXSNjw3wQyoULfW+AuxdvzEmChR+8OMKj1xcjhekXbc5CbA8Av4LbqvwPmAnFgNTDV2HsDXNV6E7DNXyiVj/7HwGYgoroT1RGrs8jY6gfOmvZW1XkPLC8z/hmPvT2e/uEqPuaLL6VrwHw1vNfIn5oB25BZ329kKdVLGNl0YC3QiaT2M2MvQzE7IOxU9bFSaln8ANYAj4AHRn7B1HchzD03srj+9ulvDHgBzNL2IMWpehq5MkWRSQFIA+v8OOmHkQyynrqBpcCoytvVRjOS995UG1TZbCM7DHwvMcYoBdY3IsyBvDnqllo5YJka3gm8BB4a5xKq81ODAllPeYd3eyavDWHJ2r9k+vuAVVpvqXcgB9TwNOAJ0GsGHlCdISOLm2+/ImxGTH8EOGV0Vqq8VSekx+i+rmcgA8bwQWCB1tuRfM4Bl43OphI27lNgFgqzbdndp7JzRnaxnoF8AyarYZvzx43OUSPvLWMnS+H8mqSTsJ3KKGfrr3ctkMNpBbIVDxtHkkan1I7VjbDXgexG/UjqAGwBPgDnq4yd9uOgX0ZywDHPt0lPv02bNLI2mimNTuATcMjITgCvTMkfojMopG/NjIDs59dN27sbtSLnDcjaySAs3gO+IDtZh36X1PaQfhMDdlD87E4grAN8BGaWc2w8n7oZxKmmsTDu3uxhgwskbHCBhA1R5C/6RsfnKHKRa3Skwf/DJcxlfT6i1DgNOBbF3tXIM3MDuWYH7Vy1klVf/zDh4ODg4BAIfgMBREHfZIoOUwAAAABJRU5ErkJggg==') no-repeat;
    width: 30px;
    height: 30px;
    filter:
    invert(1);
    background-size: contain;
}
#open-checkout .payments .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}

#open-checkout .payments .tab input[type="radio"]:checked + .tab-label {
  background: #025454;
  border-radius: 10px 10px 0 0;
}
#open-checkout .payments .tab input[type="radio"]:checked + .tab-label::after {
  transform: rotate(90deg);
}
#open-checkout .payments .tab input[type="radio"]:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
  border-radius: 0 0 10px 10px;
  margin-bottom: 10px;
}

.apple-pay{
	
background: url(https://developer.apple.com/design/human-interface-guidelines/technologies/apple-pay/images/button.png) no-repeat!important;
text-indent: -269px;
	background-size: contain!important;
	width: 190px!important

}
.rtl .checkbox {
    left: unset;
    right: 10px;
    top: 28px;
}



.rtl .nav-container {
    position: absolute;
    left: unset;
    top: 0;
    width: 13%;
    right: 0;
}
.rtl .line.line1 {
    right: -1px;
}
.rtl .line.line3 {
    right: 12px;
}

.rtl .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: translate(20px, 3px)rotate(-45deg);
}

.rtl .notifications i {
    right: unset;
    left: -10px;
}

.rtl .modal-close {
    right: unset;
    left: 0;
}

.rtl .notifications-info {
    font-weight: bold;
}
.rtl .user-location span:before {
    /* left: unset; */
    /* right: -75px; */
}
.rtl .tracking .scan:before {
    left: unset;
    right: -15px;
}
.rtl .lang-ar:before, .rtl .lang-en:before {
    right: -60px;
}
.rtl .info-box-list {
    font-weight: bold;
}

.rtl .info-box-list .send-icon {
    transform: translate(0px,-10px) rotate(180deg);
}
.rtl .support-box-title {
    font-weight: bold;
}

.rtl .support-box-reply-info {
    font-weight: bold;
    font-family: arial;
    text-align: right;
}

.rtl .support-box-reply-button {
    transform: rotate(180deg);
}

.rtl .support-box-reply {
    font-weight: bold;
}
.rtl .nav-container .hamburger-lines {
    right: 10px;
    top: 32px;
}
.rtl .visacard::before {
    right: unset;
    left: 15%;
}
.orderbarcode {
    top: 150px!important;
}

#open-order1-modal {
    display: flex;
    flex-wrap: wrap;
}
#open-order1-modal > div {
    background: #ffffff;
}
.barcode img {
    background: #edededf7;
    padding: 20px;
    border-radius: 22px;
}

.orderinfos {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 12px;
    padding-top: 22px;
}

.orderinfos span {
    font-size: 20px;
}

.orderinfos:before {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    background: gray;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orderinfos strong {
    color: #025454;
}

.orderbarcode .extras {
    margin-top: 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.extra-buttons {
    height: 40px;
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    border-radius: 7px;
    padding: 10px;
}

.extra-buttons.printbutton {
    background: rgb(0 151 118 / 61%);
    color: white;
}

.extra-buttons.repotbutton {
    background: #d94747;
    color: white;
}