.amazonProductLink {
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px !important;
  color: #000000;
  outline: none;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #00000086;
}
  
/* Button "VER EN AMAZON + Small-Icon  */
.amazonBtn-small-icon {
  position: relative;
  display: flex;
  width: 200px;
  height: 45px;
  padding: 10px 40px 8px 15px !important;
  border: 1px solid #ffdf88!important;
  background-color: #f1f1f1!important;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
}

.amazonBtn-text {
  display: contents;
  color: #ff0000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #f1f1f1!important;
}
  
.amazonBtn-text:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 15px;
  right: 25px;
  -webkit-mask: url("../../assets/icon-amazon-white.svg") no-repeat 50% 50%;
  mask: url("../../assets/icon-amazon-white.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #000000;
}

.amazonBtn-small-icon:hover {
  background-color: #ffdc7e !important;
  .amazonBtn-text { background-color: #ffdc7e !important; color: #000000; }
}
  
/* Button Amazon Logo  */
.amazonBtn-logo {
  width: 200px;
  height: 45px;
  display: flex; 
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid black;
  color: black;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
}
  
.amazonBtn-logo:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
  
/* Container for Text Link + Amazon Button */
.text-btn-horizontal {
  display: flex; 
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 500px;
}
  
.text-btn-horizontal .text,
.text-btn-horizontal .amazonProductButton {
  flex: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 10px;
}

.text p {
  margin: 0;
  font-size: 18px;
  line-height: 1;
}
  
@media (max-width: 400px) {
  .text-btn-horizontal {
    display: flex; 
    flex-direction: column;
  }
  .text-btn-horizontal .amazonProductButton {
    margin: 10px 0 0;
  }
}
  
/* Container for Text Link + Amazon Button + Small Image */
.amazonProductLink-text-smallImg {
  display: flex; 
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 500px;
}
  
.text-btn-vertical {
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  
.text-btn-vertical .text {
  flex: 100%;
}
  
.amazonProductLink-text-smallImg .amazonProductButton {
  margin: 11px 0 0 0;
}

.amazonProductLink-text-smallImg .amazonProductArrow {
  width: 100%;
}

.amazon-img-small {
  margin: 0 0 0 20px;
}

.amazon-img-small img:first-child {
  width: 100px;
  box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

.amazon-img-small img:first-child:hover {
  width: 100px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.7), 0 1px 1px 0 rgba(0, 0, 0, 0.7);
}

.amazon-img-small img:nth-child(2) {
  display: none!important;
}

@media (max-width: 400px) {
  .amazonProductArrow {
    display: none!important;
  }
}

@media (max-width: 300px) {
  .amazon-img-small {
    display: none!important;
  }
}
  
/* Tarjeta Compacta Medium Image */
.cardMediumSize-wrapper {
  padding: var(--padding-card);
}

.cardBorder {
  border: solid 1px rgb(225, 225, 225);
}

.cardMediumSize {
  display: block;
  width: var(--width-card);
  text-decoration: none;
  transition-duration: 0.4s;
  box-shadow: none
}

.cardMediumSize:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cardMediumSize::after {
  content: "";
  background: url("../../assets/shadow.png");
  height: 9px;
  width: 100%;
  float: left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.cardMediumSize-title {
  position: relative;
  width: 100%;
  height: 50px;
  display: inline-block;
  text-align: center;
  padding: 10px 5%;
  background: #383b42;
  border-bottom: 3px solid #39F;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.cardMediumSize-title:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 13px;
  right: 10px;
  -webkit-mask: url(../../assets/icon-amazon-white.svg) no-repeat 50% 50%;
  mask: url(../../assets/icon-amazon-white.svg) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #ffdd00;
}

.cardMediumSize-footer {
  flex: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 15px 5px;
}

.cardMediumSize-footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.amazon-img-medium {
  width: 100%;
  height: var(--width-card);
  display: flex; 
  justify-content: center;
  align-items: center;
}

.amazon-img-medium img:first-child {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.amazon-img-medium img:nth-child(2) {
  display: none!important;
}

/* nota-affiliate */
.nota-affiliate {
  width: calc(100%/2);
}
.nota-affiliate p {
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .nota-affiliate {
    width: calc(100%*0.8);
  }
}