.mec-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}
.mec-cta[data-country] {
  display: none;
}

.mec-cta[data-country].active {
  display: flex;
}
@media screen and (min-width: 500px) {
  .mec-cta[data-device="mobile"] {
    display: none;
  }
}
@media screen and (max-width: 499px) {
  .mec-cta[data-device="desktop"] {
    display: none;
  }
}

.mec-cta__message {
  margin-bottom: 12px;
  position: relative;
    font-size: 16px;
  border: 1px solid #eaf0f6;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
  border-radius: 4px;
  width: 240px;
  padding: 36px 24px 24px;
}

.mec-cta__message.hidden {
  display: none;
}

.mec-cta__message::after {
  content: '';
  background: none;
  background-size: contain;
  height: 48px;
  width: 48px;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateY(-50%) translateX(50%)
}

.mec-cta__close {
  border: 0;
  color: rgb(124, 152, 182);
  cursor: pointer;
  background: transparent;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5em;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.mec-cta__close::before {
  content: '\00D7';
  display: block;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  z-index: 1;
}

.mec-cta__button {
  display: block;
  outline: none;
  box-sizing: border-box;
  padding: 14px;
  background-color: #25D366;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px, rgba(0, 0, 0, 0.2) 0px 2px 24px;
  height: 60px;
  width: 60px;
  border: none;
  transition: box-shadow 100ms ease-in-out 0s;
  border-radius: 50%;
}

.mec-cta__button:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px, rgba(0, 0, 0, 0.3) 0px 4px 28px;
}
    
 

