@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700;900&display=swap');

:root{
    --color-primary:#1FADA4;
    --dark-text-color:#010101;
    --red-text-color:#a70000;
    --white-color:#ffffff;
    --light-bg-color:#eeeeee;
    --light-bg2-color:#FCFCFC;
    --roboto-cond-family:'Roboto Condensed', sans-serif;
    --roboto-family:'Roboto', sans-serif;;
    --comfortaa-family:'Comfortaa', cursive;
}

body{
    margin: 0;
    padding: 0;
    color: var(--dark-text-color);
    font-family: var(--comfortaa-family);
    font-weight: 400;
}

 .wf-checkbox-group .pref-form-check {
     display:inline-block !important;
   }

*, *::before, *::after {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
}

/* HEADER */
.pref-header{
    height: 426px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(pref-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px;
}

 .wf-checkbox-group .pref-form-check {
     display:inline-block !important;
   }

.pref-header::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0,0 , 0.14);

}

.pref-header .pref-header-content{
    background-color: rgba(255, 255, 255,0.88);
    width: 100%;
    max-width: 90%;
    padding: 5%;
    text-align: center;
}

.pref-header .pref-header-content .logo{
    padding-bottom: 50px;
    padding-top: 15px;
}
.pref-header .pref-header-content .logo img{
    height: 72px;
}

.pref-header .pref-header-content .pref-header-heading h1{
    font-family: var(--roboto-cond-family);
    padding:0 0 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5em;
}

.pref-header .pref-header-content .pref-header-heading h1 > span{
    font-weight: 300 !important;
}

.pref-header .pref-header-content .pref-header-emailsId {
    padding-bottom: 15px;

}
.pref-header .pref-header-content .pref-header-emailsId span{
    font-weight: 300 !important;
    font-family: var(--comfortaa-family);
    background-color:var(--color-primary);
    padding:5px 10px;
    font-size: 1em;
    color: var(--white-color);

}

/* PREF-OPTION SECTION */
.pref-option{
    background-color: var(--light-bg-color);
    display: inline-block;
    width: 100%;
}
.pref-option form{
    width: 100%;
}

.pref-option .pref-form-container{
    width: 100%;
    max-width: 736px;
    display: block;
    margin: auto;
    padding: 46px 15px;

}
.pref-option .pref-form-container .pref-form--content-row{
    background-color: var(--white-color);
    padding: 30px;
    margin-bottom: 15px;

}
.pref-option .pref-form-container .pref-form--content-row .pref-form-content-col h3.content-heading{
    font-size: 1.1em;
    padding-bottom: 15px;
    font-weight: 400;
}
.pref-option .pref-form-container .pref-form--content-row .pref-form-content-col .pref-form-check{
    font-size: 1em;
    margin-bottom: 0;
    padding: 7px 30px;
}



.pref-content-sub-box{
    background-color: var(--light-bg2-color);
    border: 1px solid #e8ede8;
    padding: 15px;
}
.pref-content-main-headline h2{
    font-family: var(--roboto-family);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.3;
    padding: 15px 0;
}


/* The checkbox container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: var(--light-bg2-color);
    border: 1px solid rgba(0, 0,0 , 0.24);
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color:var(--light-bg-color);
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  .pref-form-btn input[type="submit"]{
    cursor: pointer;
    font-weight: 300;
    font-family: var(--roboto-cond-family);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    width: 183px;
    height: 49px;
    line-height: 45px;
    font-size: 1.3em;
    color: var(--white-color);
  }
  .pref-form-btn input[type="submit"]:hover{
    background-color: rgb(9, 178, 167);
  }


  /* WEBFORM */
  .web-form-header{
    line-height: 1.5;
    font-size: 16px;
  }
  .web-form-header .main-heading{
    padding-top: 40px;
  }
.web-form-header .main-heading h1{
    color: var(--red-text-color);
    text-align: center;
    font-size: 1.5em;
}
.web-form-header .into-text{
    color: var(--dark-text-color);
    text-align: center;
    font-size: 0.85em;
    max-width: 900px;
    margin: auto;
    padding:24px 15px;
}
.web-form-header .form-heading{
    background-color: var(--color-primary);
    padding: 10px 15px;
    color: var(--white-color);
    text-align: center;
    font-size: 1em;
    max-width: 90%;
    margin: auto;
}

.form-section .form-container{
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding:24px 15px;
    font-size: 16px;
}
.form-section .form-container form{
    width: 100%;
}

.form-control{
    width: 100%;
    border: 1px solid #ccc;
    padding:14px 15px;
    font-size: 0.84em;
    color: var(--dark-text-color);
}
.form-control:focus{
    outline:1px solid var(--color-primary);
}

textarea.form-control{
    resize: none;
}
.form-row{
    margin-bottom: 15px;
}

.row{
    display: flex;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 15px;
}
.col{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.wf-checkbox-group{
    font-size: 16px;
}
.wf-checkbox-group .pref-form-check{
    font-size: 0.95em;
    color: var(--color-primary);
}
.wf-checkbox-group .checkmark{
    top: -3px;
}
input.pref-btn-submit:disabled {

opacity: 0.5;
cursor: not-allowed !important;

}
/* MEDIA */

@media screen and (min-width: 480px) {
    
    .col-3{
        width: 33.33%;
        flex: 1 0 33.33%;
    }
  }
  @media screen and (max-width: 479px) {
    .pref-header-content {
        font-size: 77%;
    }
    .pref-option .pref-form-container{
        font-size: 88%;
        line-height: 1.4;
    }
    .pref-form-btn input[type="submit"]{
        width: 100%;
    }

    .row{
        flex-wrap: wrap;
    }


  }