table.scwc-size-chart-table th,
table.scwc-size-chart-table td{
    text-align: center;
}

table.scwc-size-chart-table {
    border-collapse: collapse;
}

table.scwc-size-chart-table th,
table.scwc-size-chart-table td {
    border: 1px solid #ccc;
}

.scwc-size-charts-list {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.scwc-size-charts-list a.scwc-size-charts-list-item {
    text-decoration: underline;
}

.scwc-size-chart-popup.featherlight .featherlight-close-icon {
    top: 10px !important;
    right: 10px !important;
}

.scwc-size-chart-popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: #333;
}

@media (max-width: 640px) {
    .scwc-size-chart-popup {
        max-width: 90%;
        padding: 15px;
    }
}

.featherlight.scwc-size-chart-popup {
  max-width: unset;
}

table.scwc-size-chart-table.featherlight-inner {
  display: table;
}

.mfp-content .scwc-size-chart-popup {
  position: relative;
}

.scwc-size-chart-popup button.mfp-close:hover{
  background-color: transparent;
}


/* ------------ Move-horizontal effect ------------*/

.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}
  
/*------------- Move-from-top effect ------------- */

.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}
  
/*------------- 3d unfold -------------*/

.mfp-3d-unfold .mfp-content {
  perspective: 2000px;
}
.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  transform: rotateY(60deg);
  opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}
  
/*--------------- Zoom-out effect ---------------- */
  
 
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}
  
/*------------ "Hinge" close effect ------------ */
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 1s;
  animation-name: hinge;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.mfp-with-fade.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-with-fade.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

.scwc-table-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
 
.scwc-table-options {
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 5px 0;
  border-radius: 15px;
  border: 1px solid #e9e9e9;
  margin-bottom: 20px;
}
 
.scwc-table-options span {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  margin: 0 5px;
}
 
.scwc-table-options span.active {
  display: block;
  text-align: center;
  background-color: #212121;
  color: #ffffff;
  cursor: pointer;
  border-radius: 10px;
  padding: 3px 10px;
}