#dashboard-club {
  display: flex;
  gap: 0;
}

#avatar-col {
  width: 33%;
  padding: 64px 60px 20px 72px;
  text-align: center;
}

#dashboard-club #avatar-col .img-frame {
  background-size: contain;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  border: 10px solid var(--cb-fg_color);
  position: relative;
}

#dashboard-club #avatar-col .img-frame:before {
  content: '';
  display: block;
  margin-top: 100%;
}

#dashboard-club #avatar-col .img-frame .box-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#dashboard-club #avatar-col .img-frame:hover .box-img:before,
#dashboard-club #avatar-col .img-frame:focus .box-img:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#dashboard-club #avatar-col .img-frame:hover .box-img:after,
#dashboard-club #avatar-col .img-frame:focus .box-img:after {
  content: 'Cambia';
  width: 100%;
  margin-top: -15px;
  color: var(--cb-white);
  font-size: 20px;
  line-height: 30px;
  text-shadow: 1px 1px var(--cb-fg_dark_color);
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
}

#dashboard-club #avatar-col .user-name {
  margin: 20px 0 0 0;
  color: var(--cb-primary-color);
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  word-break: break-word;
}

#dashboard-club #avatar-col .level-info {
  margin: 10px 0 0 0;
  color: var(--cb-fg_color);
  font-size: 16px;
  line-height: 20px;
}

#dashboard-club #avatar-col .level-info + .cb-product-icons {
  margin: 10px 0 0 0;
  font-size: 0;
}

#dashboard-club #avatar-col #cb-product-buttons {
  margin: 10px 0 0 0;
}

#dashboard-club #avatar-col #cb-product-buttons .cb-btn {
  width: 100%;
  margin: 0 0 8px 0;
}

#dashboard-club #avatar-col #cb-product-buttons .cb-btn:last-child {
  margin-bottom: 0;
}

#dashboard-club #content-col {
  background-color: var(--cb-white);
  width: 67%;
  padding: 30px 0;
  border-left: 1px solid var(--cb-border_light_color);
}

#dashboard-club .section {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid var(--cb-border_light_color);
}

#dashboard-club .section:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

#dashboard-club .section h2 {
  margin: 0 0 10px 0;
  padding: 0 30px;
  color: var(--cb-primary-color);
  font-size: 28px;
  line-height: 32px;
}

#dashboard-club .section h2 a {
  display: inline-block;
}

#dashboard-club .section h2 a:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--cb-primary-color);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

#dashboard-club .section h2 a:hover:after, #dashboard-club .section h2 a:focus:after {
  transform: scaleX(1);
}

#dashboard-club .section .content-boxes {
  display: flex;
  padding: 0 30px;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 20px;
}

#dashboard-club .section .content-boxes .box {
  background-color: var(--cb-bg_color3);
  display: block;
  padding: 20px;
  border: 1px solid var(--cb-border_color);
  border-radius: 5px;
  min-height: 150px;
  flex: 1 0 40%;
  align-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#dashboard-club .section .content-boxes .box h3 {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--cb-white);
  font-size: 20px;
  text-transform: none;
  text-shadow: 0 0 4px var(--cb-fg_dark_color);
  position: relative;
  z-index: 3;
}

#dashboard-club .section .content-boxes .box h3:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--cb-white);
  box-shadow: 0 0 4px var(--cb-fg_dark_color);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

#dashboard-club .section .content-boxes .box:before {
  content: '';
  background-color: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#dashboard-club .section .content-boxes .box .box-img {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#dashboard-club .section .content-boxes .box .box-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
  object-position: center;
  transition: transform .35s ease-in-out;
}

#dashboard-club .section .content-boxes .box:hover .box-img img, #dashboard-club .section .content-boxes .box:focus .box-img img {
  transform: scale(1.15);
}

#dashboard-club .section .content-boxes .box:hover h3:after, #dashboard-club .section .content-boxes .box:focus h3:after {
  transform: scaleX(1);
}

#dashboard-club .section .link-show-all {
  display: inline-block;
  margin: 0 0 0 30px;
  color: var(--cb-primary-color);
}

#dashboard-club .section .link-show-all:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--cb-primary-color);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

#dashboard-club .section .link-show-all:hover:after,
#dashboard-club .section .link-show-all:focus:after {
  transform: scaleX(1);
}

@media (max-width: 1120px) {
  #dashboard-club #avatar-col {
    padding-left: 60px;
  }
}

@media (max-width: 960px) {
  #dashboard-club {
    flex-direction: column-reverse;
  }
  #dashboard-club #avatar-col {
    width: 100%;
    padding: 20px;
  }
  #dashboard-club #content-col {
    width: 100%;
    padding: 20px 0;
    border-left: none;
    border-bottom: 1px solid var(--cb-border_light_color);
  }
  #dashboard-club #content-col .section {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
  }
  #dashboard-club #content-col .section:last-child {
    margin: 0;
    padding: 0;
  }
  #dashboard-club #content-col .section h2 {
    padding: 0 20px;
  }
  #dashboard-club #content-col .section table.cb-custom-list tbody tr[data-format="1_columns"] td {
    padding: 0 20px 16px 20px;
  }
  #dashboard-club #content-col .section table.cb-custom-list tbody tr[data-format="2_columns"] td:first-child {
    padding-left: 20px;
  }
  #dashboard-club #content-col .section table.cb-custom-list tbody tr[data-format="2_columns"] td:last-child {
    padding-right: 20px;
  }
  #dashboard-club #content-col .section .content-boxes {
    padding: 0 20px;
  }
  #dashboard-club #content-col .section .link-show-all {
    margin-left: 20px;
  }
}

@media (max-width: 720px) {
  #dashboard-club .section .content-boxes .box {
    flex: 100%;
  }
}