.cmb-form .inline-block{
	display:inline-block;
}
.cmb-form .label-wrap{
	width:200px;
}

.cmb-offer{
  display: flex;
  position: relative;
  justify-content: center;
  padding: 8px;
  border-top: 4px solid #a3e635;
  border-bottom: 4px solid #a3e635;
  margin-bottom: 10px;
  background-color: black;
  color: white;
}
.cmb-offer-info{
  color: white;
}
.cmb-offer-img{
  width: 20%;
  text-align: center;
  align-self: center;
}
.cmb-offer-img img{
  display: block;
  margin: 0 auto;
}
.cmb-offer h3{
  margin: 0 10px 0 0;
  padding-right: 5px;
}
.cmb-offer p{
  margin: 0;
}
.cmb-offer-price{
  text-align: center;
  align-self: center;
  margin: 0 auto;
  color: white;
}
.cmb-offer-price-add{
  font-size: .75em;
  font-weight:lighter;
}
.cmb-offer-cta{
  text-align: center;
  align-self: center;
  margin: 0 auto;
  background-color: #a3e635;
  border-radius: 50px;
  padding: 10px;
  font-size: 1.25em;
  font-weight: bold;
  color: white;
}
.cmb-table .organic-icon{
  text-align:center;
}

@media (max-width: 768px) {
    .cmb-form select{
        width:150px;
    }
}

.loader {
    position: relative;
    top: -300px;
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
  }
  
  .inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;  
  }
  
  .inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid #EFEFFA;
  }
  
  .inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid #EFEFFA;
  }
  
  .inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid #EFEFFA;
  }
  
  @keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
  }
  
  @keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
  }

  .arrow-up{
    color: rgb(9, 133, 81);
    margin: 2px;
  }
  .arrow-down{
    color: rgb(207,32,47);
    margin: 2px;
  }