/** Shopify CDN: Minification failed

Line 137:11 Expected ":"
Line 137:13 Expected identifier but found "18px"
Line 160:4 Comments in CSS use "/* ... */" instead of "//"
Line 174:13 Expected ":"
Line 174:15 Expected identifier but found "18px"

**/

.expertvoice-form-wrapper {
  max-width: 1185px;
  display: block;
  margin: 0 auto;
  padding: 80px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  background: url(/cdn/shop/files/rudy-project-pro-account-background_edited.webp?v=1699397589);
}
  
.expertvoice-form-wrapper .content-container.narrow.form {
  margin: auto;
  padding: 60px 40px;
  opacity: 0.95;
  background-color: #fff;
  display: block;
  max-width: 500px;
}

.expertvoice-form-wrapper .selection-wrapper .input-row {
  margin-bottom: 10px;
}

.expertvoice-form-wrapper .selection-wrapper .input-row input,
.expertvoice-form-wrapper .selection-wrapper .input-row textarea {
  width: 100%;
  margin: 0;
  padding: 8px 8px;
  border: 0;
  outline: 2px solid #9a9a9b;
  outline-offset: -2px;
  font-family: Lato,sans-serif;
  font-size: .75em;
  background-color: transparent;
  min-height: 37px;
}

.expertvoice-form-wrapper .selection-wrapper button.button,
.expertvoice-form-wrapper .selection-wrapper input.button {
  color: #030405!important;
  padding: 14px 25px;
  font-weight: 700;
  font-size: 14px;
  background-color: #fff;
  color: #030405;
  border: 2px solid #030405;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  text-transform: uppercase;
  width: 100%;
}

.expertvoice-form-text {
  text-align: center;
  margin: 40px;
  font-size: 18px;
}

.event-text {
  font-size: 24px;
}

.expertvoice-form-text-disclaimer {
  font-size:0.85em;
  margin-top:10px;
  padding:5px;
  text-align: center;
}


.expertvoice-photo-disclaimer-wrapper {
  
}

.expertvoice-photo-disclaimer {
  font-size:0.75em;
  margin-top:5px;
  padding:5px;
  text-align: right;
}

.expertvoice-history-wrapper {
  margin: 0px auto;
  display: block;
  background-repeat: repeat;
  background: url(/cdn/shop/files/event-history-background.jpg?v=1645567781);
}

.expertvoice-history {
  max-width: 1100px;
  background: #000000;
  padding: 20px;
  margin: 5px auto;
  display: block;
  color: #ffffff;
  min-height: 245px;
}

.expertvoice-history-image {
  float:left;
  display:block;
  margin-right: 20px;
  max-width:300px;
}

.expertvoice-hero-welcome {
  display:flex;
  flex-direction:row;
  max-width: 1185px;
  margin: auto;
}

.expertvoice-hero-welcome-c1 {
  display: grid;
  width: 450px;
  Height: 150px
  justify-items: center;
  align-items: center;
}

.expertvoice-hero-welcome-c2 {
  display: grid;
  font-size; 18px;
  line-height: 22px;
  justify-content: center;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {

  .expertvoice-form-wrapper {
      max-width: 1185px;
      display: block;
      margin: 0 auto;
      padding: 80px 10px;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      overflow: hidden;
      background: url(/cdn/shop/files/rudy-project-pro-account-background_edited.webp?v=1699397589);
  }
    
  .expertvoice-hero-welcome {
    display:flex;
    flex-direction:column;
    //* max-width: 1185px; *//
    margin: auto;
  }
  
  .expertvoice-hero-welcome-c1 {
    display: grid;
    width: 100%;
    justify-items: center;
    align-items: center;
  }
  
  .expertvoice-hero-welcome-c2 {
    display: grid;
    justify-items: center;
    font-size; 18px;
    line-height: 22px;
    justify-content: center;
    align-items: center;
    margin: 20px;
    text-align: center;
  }
}

/* Accordon CSS */

.accordion-wrapper {
  display: block;
  margin: auto;
  max-width: 1185px;  
}

details {
  margin: 5px;
  font-size: 18px;
}
details > * {
  padding: 2rem;
  line-height: 1.75rem;
  font-weight: 100;
}
details > div {
  background: #efefef;
  border-radius: 0 0 5px 5px;
}
summary {
  border-radius: 5px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.65rem;
  color: #fff;
  background: #ED7006;
  cursor: pointer;
  position: relative;
  transition: .3s;
  text-indent: 0px;
}
summary::marker {
  content: "";
}
summary::before {
  content:"";
  position:absolute;
  inset: .75rem;
  left: auto;
  aspect-ratio: 1;
  background: 
   conic-gradient(from 90deg at 26% 26%, #0000 90deg, #fff 0) 
    100% 100%/58% 58%;
  clip-path: inset(1px);
  transition: .3s;
}
details[open] summary::before {
  transform: rotate(45deg);
}
details[open] summary {
  border-radius: 5px 5px 0 0;
  background: #ED7006;
}