#shipping-returns-modal {
  border: rgba(248,248,248, 0.9) 1px solid;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  width: 50%;
  position: fixed;
  margin: 0 auto;
  top: 20px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000000000000000000000;
  background-color: white;
  display: none;
  max-height: 95vh;
  min-height: 600px;
}

@media only screen and (max-width: 991px) {
  #shipping-returns-modal {
    width: 100%;
    max-height: 100vh;
  }
}

.shipping-returns-content {
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.shipping-returns-header {
  display: flex;
  flex-direction: column;
}

.shipping-returns-title {
  align-self: center;
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 991px) {
  .shipping-returns-title {
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
  }
}

.shipping-returns-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem 3rem 2rem 1rem;
  cursor: pointer;
}

.shipping-returns-modal-close::before {
  transform: rotate(45deg);
  height: 2px;
  width: 18px;
  background: #424242;
  position: absolute;
  display: block;
  content: '';
}

.shipping-returns-modal-close::after {
  transform: rotate(-45deg);
  height: 2px;
  width: 18px;
  background: #424242;
  position: absolute;
  display: block;
  content: '';
}
  
.shipping-returns-body {
  width: 100%;
  padding: 2rem;
  background-color: #F8F8F8;
  display: flex;
  overflow: scroll;
  height: calc(100% - 165px);
  position: relative;
}


@media only screen and (max-width: 991px) {
  .shipping-returns-body {
    height: calc(100% - 220px);
  }
}


.shipping-returns-summary {
  font-family: 'proxima-reg';
  font-size: 12px;
  letter-spacing: .5px;
  padding: 2rem 0;
  width: 60%;
  text-align: center;
  margin: 0 auto;
  line-height: 2rem;
}

@media only screen and (max-width: 991px) {
  .shipping-returns-summary {
    width: 80%;
  }
}

.shipping-returns-detail-description-section-shipping {
  margin-bottom: 4rem;
}

.shipping-returns-detail-description-section-shipping-title {
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1.5px;
}

.shipping-returns-detail-description-section-shipping-type-summary {
  margin-bottom: 2rem;
}

.shipping-returns-detail-description-section-shipping-type-price-container {
  display: flex;
  width: 95%;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: .5rem;
}

.shipping-returns-detail-description-section-shipping-type {
}

.shipping-returns-detail-description-section-shipping-summary {
  font-size: 12px;
}

.shipping-returns-detail-description-section-returns-title {
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem; 
}

.shipping-returns-detail-description-section-returns-summary {
  width: 80%;
  line-height: 2rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 991px) {
  .shipping-returns-detail-description-section-returns-summary {
    width: 90%;
  }
}

.shipping-returns-detail-description-section-returns-type-price-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.shipping-returns-detail-description-section-duties-title {
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem; 
}

.shipping-returns-detail-description-section-duties-summary {
  width: 80%;
  line-height: 2rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 991px) {
  .shipping-returns-detail-description-section-duties-summary {
    width: 90%;
  }
}

.shipping-returns-detail-description-section-duties-type-price-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  font-family: 'proxima-semi-bold';
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.shipping-returns-ship-to {
  display: flex;
  flex-direction: row;
  line-height: 16px;
  text-align: right;
  padding: 5px 24px 5px 13px;
  margin: 0 0px;
  white-space: nowrap;
  color: #222323;
  text-transform: uppercase;
  justify-content: center;
  letter-spacing: 0.85px;
}

.shipping-returns-ship-to-country {
  margin-left: .5rem;
  color: #A5A5A5;
}

.shipping-returns-ship-to-other-country {
  display: flex;
  justify-content: center;
  font-size: 10px;
  margin-left: 0px;
  cursor: pointer;
  color: #A5A5A5;
}

.shipping-returns-ship-to-other-country-change {
  position: absolute;
  opacity: 0;
  transition: all 500ms ease-in-out;
  right: 20px;
  width: 275px;
  background-color: #F8F8F8;
  padding: 1em;
  top: 60px;
  border: rgba(0,0,0, 0.1) 1px solid;
  color: black;
  height: 55px;
}

.shipping-returns-ship-to-other-country:hover .shipping-returns-ship-to-other-country-change {
  opacity: 1;
}

.shipping-returns-detail-description-section-shipping-type-summary-group {
  padding-top: 2rem;
}

.shipping-returns-detail-description-section-shipping-type-summary-group-header {
  font-size: 12px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  width: 90%;
  line-height: 24px;
}

@media only screen and (max-width: 991px) {
  .shipping-returns-detail-description-section-shipping-type-summary-group-header {
    width: 90%;
  }
}

.shipping-returns-detail-description-section-shipping-type-single {
  width: 85%;
}


@media only screen and (max-width: 991px) {
  #shipping-returns-modal {
    overflow: scroll !important;
    height: 100vh;
    top: 0px !important;
    z-index: 9999999999999 !important;
    position: fixed;
  }
}