/* =========================
   Monkey custom order
========================= */
.monkey-custom-order{
  display:flex;
  align-items:center;
  width:100%;
}
.monkey-custom-order-media{
  flex:0 0 48%;
  min-width:0;
}
.monkey-custom-order-image{
  width:100%;
  height:360px;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:rgba(255,255,255,.16);
}
.monkey-custom-order-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:opacity .18s ease;
}
.monkey-custom-order-info{
  flex:1;
  min-width:280px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.monkey-custom-order-custom-select{
  position:relative;
  width:100%;
  z-index:20;
}
.monkey-custom-order-select{
  width:100%;
  min-height:50px;
  appearance:none;
  outline:none;
  border-style:solid;
  border-width:0;
  font-size:18px;
  line-height:1.25;
  padding:12px 14px;
  box-shadow:none;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  cursor:pointer;
}
.monkey-custom-order-select:focus{
  outline:none;
  box-shadow:none;
}
.monkey-custom-order-select-arrow{
  display:inline-flex;
  margin-left:14px;
  line-height:1;
  transition:transform .18s ease;
}
.monkey-custom-order-custom-select.is-open .monkey-custom-order-select-arrow{
  transform:rotate(180deg);
}
.monkey-custom-order-dropdown{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  z-index:9999;
  border-style:solid;
  border-width:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.monkey-custom-order-dropdown[hidden]{
  display:none!important;
}
.monkey-custom-order-option{
  width:100%;
  display:block;
  border:0;
  padding:16px 14px;
  text-align:left;
  font:inherit;
  cursor:pointer;
  box-shadow:none;
}
.monkey-custom-order-option:hover,
.monkey-custom-order-option:focus,
.monkey-custom-order-option:active{
  outline:none;
}
.monkey-custom-order-native-select{
  display:none!important;
}
.monkey-custom-order-description{
  margin:0;
  max-width:640px;
  font-size:18px;
  line-height:1.55;
  color:#333;
}
.monkey-custom-order-description p{margin:0 0 1em;}
.monkey-custom-order-message{
  width:100%;
  min-height:100px;
  resize:vertical;
  border:1px solid #5f6f52;
  background:transparent;
  color:#111;
  font-size:18px;
  line-height:1.35;
  padding:14px 24px;
  outline:none;
  box-shadow:none;
  transition:background-color .2s ease,color .2s ease,border-color .2s ease;
}
.monkey-custom-order-message:focus{
  outline:none;
  box-shadow:none;
}
.monkey-custom-order-error{
  margin-top:10px;
  color:#9b1c1c;
  font-size:13px;
}
.monkey-custom-order-button{
  margin-top:0;
  width:auto;
  max-width:none;
  align-self:flex-start;
  background:#5f6f52;
  color:#fff;
  border-color:#5f6f52;
  text-transform:none;
  letter-spacing:0;
  font-size:16px;
  border-radius:6px;
}
.monkey-custom-order-button:hover{
  background:#4f6044;
  border-color:#4f6044;
  color:#fff;
}
@media (max-width: 767px){
  .monkey-custom-order{
    flex-direction:column;
    align-items:stretch;
  }
  .monkey-custom-order-media{
    flex-basis:auto!important;
    width:100%;
  }
  .monkey-custom-order-image{
    height:220px;
    aspect-ratio:16 / 9;
  }
  .monkey-custom-order-info{
    width:100%;
    min-width:0;
  }
  .monkey-custom-order-description{
    margin:0;
    font-size:16px;
  }
  .monkey-custom-order-select,
  .monkey-custom-order-message,
  .monkey-custom-order-option{
    font-size:16px;
  }
  .monkey-custom-order-button{
    margin-top:0;
  }
}
