﻿.size-guide__shadow {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.size-guide-open .size-guide__shadow {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.size-guide__button {
  font-size: var(--text-xxs);
  line-height: 1.2;
  font-weight: 400;
  border-bottom: 1px dashed #e3eeff;
  color: var(--color-link);
  text-decoration: none;
  transition:
    opacity 0.25s,
    color 0.25s;
  margin-top: 2rem;
}

.size-guide__button:hover {
  opacity: 0.8;
}

.size-guide__button i {
  transition: all 0.4s ease-in-out;
}

.size-guide_active .size-guide__button i {
  transform: rotate(180deg);
}

.size-guide__content {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 2rem;
  max-width: 1000px;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.size-guide__content .table th {
  font-size: var(--text-xxs);
  font-weight: 400;
  padding: 1.5rem;
  text-align: center;
}

.size-guide__content .table tbody td {
  font-size: var(--text-sm);
  font-weight: 400;
  padding: 1.5rem;
  text-align: center;
}

.size-guide__content .table {
  box-shadow: 0 0 0 1px #e7eaf3;
  border-radius: 5px;
}

.size-guide__table {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding: 2px;
}

.size-guide__content .table tbody tr:last-child {
  border-bottom: none;
}

.size-guide__header {
  display: flex;
  font-size: var(--text-h2);
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 2rem;
  justify-content: space-between;
}

.size-guide__close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  transition: color 0.25s;
  z-index: 99999;
  color: var(--color-text);
  position: absolute;
  right: 0;
  top: 0;
}

.size-guide__close svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}



