/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 :root {
     --main: #23b97a;
 }

/* CLMTE COMPENSATION CHECKBOX */
#clmte-compensation {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
}

#clmte-compensation .logo {
  position: relative;
  top: -3px;
  left: 3px;
}

#clmte-compensation .info {
  display: flex;
  align-items: center;
}

#clmte-compensation p {
  margin: 0 0 0 10px;
  font-size: 14px;
  font-weight: 500;
}

#clmte-compensation p b {
  color: var(--main);
  font-weight: 700;
}

#clmte-compensation button {
  background-color: var(--main);
  color: #fff;
  transition: 0.1s ease-in-out;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0.6180469716em 1.41575em;
  text-decoration: none;
  font-weight: 500;
  text-shadow: none;
  display: inline-block;
  font-size: 100%;
  margin: 0;
  line-height: 1.618;
}

#clmte-compensation button:hover {
  background-color: #1b9763;
  transition: 0.1s ease-in-out;
}

#clmte-compensation #clmte-checkbox:focus {
  outline: none;
}

#clmte-info {
  cursor: pointer;
}

/* CLMTE COMPENSATION INFO PANEL */
#clmte-panel {
  padding: 0 15px;
  background-color: #eee;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#clmte-panel p:first-child {
  margin-top: 15px;
  font-size: 14px;
}

#clmte-panel a {
  color: var(--main);
  text-decoration: none;
  transition: 0.1s ease-in-out;
}

#clmte-panel a:hover {
  color: #1b9763;
  transition: 0.1s ease-in-out;
}

#clmte-panel a:focus {
  outline: none;
}

/* MOBILE */
@media only screen and (max-width: 620px) {
  #clmte-compensation {
    border-bottom: none;
    flex-direction: column;
    align-items: flex-start;
  }

  #clmte-compensation button {
    margin-top: 10px;
  }
}

/* CLMTE THANK YOU AND QR CODE */

#clmte-order .clmte-order-content {
    background-color: #f8f8f8; 
    padding: 1em 1.618em;
    position: relative;
    margin: 0 0 3.706325903em 0;
}

#clmte-order .clmte-order-content #clmte-thank-you {
  margin-top: 15px;
}

.clmte-order-content::before, .clmte-order-content::after {
    content: '';
    display: block;
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background-size: 0 100%, 16px 16px, 16px 16px;
}

.clmte-order-title  {
    font-size: 1.1em;
    text-transform: uppercase;
    /* text-decoration: underline; */
    margin-bottom: 5px;
}

.clmte-order-content span {
    font-weight: 900;
}