.animate-in {
  opacity: 0;
  transform: translateY(50px);
}
.hub-loader {
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.25s,
    display 0.25s;
  transition-behavior: allow-discrete;
}

.hub-loader.fade-out {
  opacity: 0;
  display: none;
}

@keyframes fade-out {
  100% {
    opacity: 0;
    display: none;
  }
}

.hub-loader:before,
.hub-loader:after {
  position: absolute;
  content: '';
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hub-loader:before {
  width: 60px;
  height: 60px;
  background-image: url(../svg/app-loading-dark-blue.svg);
}

.hub-loader:after {
  width: 45px;
  height: 45px;
  background-image: url(../svg/app-loading-light-blue.svg);
}

.hub-loader.type-small:before {
  width: 40px;
  height: 40px;
}

.hub-loader.type-small:after {
  width: 30px;
  height: 30px;
}

.shipping-map {
  position: relative;
  background-size: cover;
}

.shipping-map-holder {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.shipping-map-holder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .shipping-map-holder {
    max-width: 100%;
  }
}

.shipping-map:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(194deg, #f1e8fe 33.77%, rgba(110, 138, 255, 0.08) 110.4%);
  z-index: 0;
}

#shipping-map_holder {
  padding-top: 100px;
  z-index: 1;
}

.shipping-wrap {
  position: relative;
}

@media (max-width: 768px) {
  .shipping-wrap {
    padding-top: 260px;
  }

  #state_list {
    height: 60px;
    width: 100%;
  }
}

.shipping-text {
  transform: translateY(-200%);
  opacity: 0;
  --padding-container-vertical-top: 10px;
  --padding-container-vertical-bottom: 20px;
  --padding-container-horizontal: 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  max-width: fit-content;
  /* pointer-events: none; */
  position: absolute;
  z-index: 10;
  margin: 3rem auto;
  left: 0;
  right: 0;
  top: 3rem;
  transition: opacity 0.5s .3s, transform 0.5s ease-in-out .5s;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.shipping-text.active {
  transform: translateY(0);
  opacity: 1;
}

.shipping-text.container {
  max-width: 1080px;
}

@media (max-width: 768px) {
  .shipping-text {
    flex-direction: column;
    text-align: center;
    left: 1rem;
    right: 1rem;
  }
}

.shipping-text-inner h1 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.shipping-text-inner p {
  margin-top: 0;
}

#state_list {
  width: 240px;
  border: 1px solid;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../png/select-down.png);
  background-repeat: no-repeat;
  background-position: 95% 55%;
  padding-right: 20px;
}

.shipping-country-select {
  z-index: 20;

  select {
    width: 250px;
    height: 50px;
    font-size: 20px;
    font-weight: 600;
    background-size: 20px auto;
    border-color: transparent;
    box-shadow: 0px 12px 34.9px 0px #a8afcf;
    z-index: 30;
    background-position: 92% 57%;
  }
}

.fr-shiping-countries-header {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  .fr-shiping-countries-header {
    padding-top: 0;
    padding-bottom: 32px;
  }
}

.fr-shiping-countries-title {
  max-width: 40ch;
  margin-right: auto;
  margin-left: auto;
}

.fr-shiping-countries-text {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.fr-shiping-countries-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 37px 20px;
}

.fr-shiping-countries-link {
  color: #012d6f;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  border-radius: 20px;
  border: 1px solid #e8edf4;
  background: #fff;
  box-shadow: 2px 3px 30px rgba(199, 209, 223, 0.16);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 11px;
  text-decoration: none;
  transition: all 0.3s; 
}

.fr-shiping-countries-link:hover {
  color: inherit;
  box-shadow: 2px 3px 30px rgba(199, 209, 223, 0.26);
  background-color: #f9f9f9;
}

.fr-shiping-countries-link-img {
  display: flex;
}

.fr-shiping-from,
.fr-shiping-cities {
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .fr-shiping-from,
  .fr-shiping-cities {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.fr-shipping-cities {
  text-align: center;
  margin-bottom: 3rem;
}

.fr-shiping-from-list-inner:before,
.fr-shiping-from-list-inner:after {
  position: absolute;
  display: inline-block;
  z-index: 10;
}

.fr-shiping-from-list-inner:before {
  content: '';
  background-image: url(../svg/symbol-1.svg);
  display: inline-block;
  width: 84px;
  height: 82px;
  left: 4cm;
}

.fr-shiping-from-list-inner:after {
  content: '';
  background-image: url(../svg/symbol-2.svg);
  display: inline-block;
  width: 245px;
  height: 104px;
  right: 60px;
}

@media (max-width: 768px) {
  .fr-shiping-from-list-inner:before {
    width: 44px;
    height: 42px;
    left: 60px;
    background-size: cover;
    top: -50px;
  }

  .fr-shiping-from-list-inner:after {
    width: 155px;
    height: 64px;
    right: 60px;
    background-size: cover;
    top: 184px;
  }
}
.fr-shiping-from-list-inner,
.fr-shiping-cities-list-inner,
.fr-featured-routes-list-inner {
  --padding-container-horizontal: 83px;
  border-radius: 20px;
  background: rgba(248, 249, 252, 1);
}

@media (max-width: 768px) {

  .fr-featured-routes,
  .fr-shiping-from-list, 
  .fr-shiping-cities {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .fr-featured-routes-list-inner,
  .fr-shiping-from-list-inner,
  .fr-shiping-cities-list-inner {
    --padding-container-vertical-top: 32px;
    --padding-container-vertical-bottom: 32px;
    --padding-container-horizontal: 20px;
  }
}

.fr-shiping-from-list-content {
  margin-bottom: 60px;
}

.fr-featured-routes-list-ul,
.fr-shiping-countries-list-ul,
.fr-shiping-from-list-ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
 
.fr-featured-routes-list-li > a,
.fr-shiping-countries-list-li > a,
.fr-shiping-from-list-ul li > a {
  border-radius: 16px;
  border: 1px solid #d3dbe7;
  background: #fff;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  height: 68px;
  width: 100%;
  padding: 10px;
}

.fr-shiping-from-list-ul {
  --padding-container-horizontal: 83px;
  border-radius: 20px;
  background: rgba(248, 249, 252, 1);
}

.tt_sm {
  background-color: #fff;
  color: var(--color-dark-blue);
  text-align: center;
}
.tt_name_sm {
  color: #002782;
  text-align: center;
  font-size: 16.684px;
  font-weight: 700;
  line-height: 23px;
}
.xmark_sm {
  width: 10px;
  display: none;
}

.tt_sm {
  border-radius: 30px;
  padding: 10px;
}
.tt_custom_sm {
}
.tt_mobile_sm {
}
.btn_simplemaps {
  font-size: 12px;
  color: #ba90ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.btn_simplemaps:hover {
  text-decoration: none;
}
.btn_simplemaps:after {
  content: '';
  background-image: url(../svg/arrow-right.svg);
  margin-left: 5px;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: 0.3s ease;
  vertical-align: -1px;
}

.btn_simplemaps:hover:after {
  transform: translateX(5px);
}
.btn_simplemaps:hover {
  text-decoration: underline;
}

.sm_location {
  /* fill: #000!important; */
}

.fr-shiping-prices {
  color: #fff;
  text-align: center;
}
.fr-shiping-prices .route-boxes-wrap {
  width: 100%;
}

.fr-shipping-prices-wrap {
  border-radius: 20px;
  background: #012d6f;
  padding: 50px;
}

.fr-shipping-prices-wrap > a {
  text-decoration: none;
}

.fr-shipping-prices .route-box-body {
  padding: 25px 10px 28px;
  text-align: center;
  color: #fff;
}

.fr-shipping-header {
  margin-bottom: 3rem;
}

.fr-shipping-text {
  max-width: 780px;
  margin: 0 auto 3rem;
}
