.form-container {
    position: relative;
    float: left;
    width: 100%;
    margin-left: -1%;
    margin-right: -1%;
    padding: 15px 0px;
}
.form-status {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background-color: rgb(242, 242, 242);
    background-color: rgba(242, 242, 242, 0.90);
}
.form-status.visible {
    display: block;
}
span.status-indicator {
    opacity: 1;
    font-size: 40px;
    line-height: 45px;
    color: #162c46;
    font-weight: bold;
    text-align: center;
    float: left;
    width: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.form-section {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
span.row-section-title {
    font-size: 19px;
    color: #df1720;
    line-height: 24px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 1%;
    float: left;
    width: 98%;
}
.form-row {
    float: left;
    width: 100%;
    margin-bottom: 1.5%;
}
.togglable-row {
    display: none;
    width: 98%;
    padding: 0 1%;
}
.form-row-col {
    float: left;
    width: 31.33%;
    padding: 0 1%;
    line-height: 40px;
    display: inline-block;
    margin-bottom: 1.5%;
}
.form-container input[type=text], .form-container input[type=tel], .form-container input[type=email], .form-container textarea {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
    color: #364960 !important;
    font-size: 15px;
    resize: none;
}
.form-container label {
    font-size: 15px;
}
.styled-checkbox {
    position: absolute;
    opacity: 0;
    display: none;
}
.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #364960;
    border-radius: 3px;
}
.styled-checkbox:hover + label:before {
    background: #f3f3f3;
}
.styled-checkbox:checked + label:before {
    background: #f3f3f3;
}
.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.styled-checkbox:checked + label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    background: #364960;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 #364960, 4px 0 0 #364960, 4px -2px 0 #364960, 4px -4px 0 #364960, 4px -6px 0 #364960, 4px -8px 0 #364960;
    transform: rotate(45deg);
}
.form-container ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #364960;
}
.form-container ::-moz-placeholder { /* Firefox 19+ */
  color: #364960;
}
.form-container :-ms-input-placeholder { /* IE 10+ */
  color: #364960;
}
.form-container :-moz-placeholder { /* Firefox 18- */
  color: #364960;
}
button[type=submit].submit-form {
    color: #ffffff;
    background-color: #90a3cd;
    border: 1px solid #90a3cd;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    padding: 6.5px 35px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in, color .2s ease-out;
    -moz-transition: all .2s ease-in, color .2s ease-out;
    -o-transition: all .2s ease-in, color .2s ease-out;
    -ms-transition: all .2s ease-in, color .2s ease-out;
    transition: all .2s ease-in, color .2s ease-out;
}
button[type=submit].submit-form:hover, button[type=submit].submit-form:focus, button[type=submit].submit-form:active {
    background-color: #162c46;
    border: 1px solid #162c46;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    padding: 6.5px 35px;
}
.add-participant {
    display: inline-block;
    border-radius: 15px;
    background-color: #52ab2a;
    color: #ffffff;
    font-size: 15px;
    outline: 0;
    border: 0px;
    padding: 4px 17px;
    margin: 0 1%;
    cursor: pointer;
}
.add-participant:hover, .add-participant:focus {
    background-color: #75c551;
}
.remove-participant {
    float: left;
    clear: both;
}
.remove-participant {
    display: inline-block;
    border-radius: 15px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 13px;
    outline: 0;
    border: 0px;
    padding: 2px 15px;
    margin: 0 1%;
    cursor: pointer;
}
.remove-participant:hover, .remove-participant:focus {
    background-color: #e74c3c;
}
.form-row.duplicate:after {
    content: "";
    height: 1px;
    float: left;
    width: 98%;
    margin: 1.5% 1% 0 1%;
    background-color: #dadada;
}
.form-row.duplicate:last-child:after {
    height: 0px;
}
.participants-packet-selection-container {
    float: left;
    width: 98%;
    padding: 0 1%;
    margin-top: 15px;
}
/* The container */
.packet-container {
    display: inline-block;
    float: left;
    position: relative;
    padding: 40px 35px;
    margin-bottom: 12px !important;
    margin-right: 25px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5px;
    overflow: hidden;
}

/* Hide the browser's default radio button */
.packet-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.packet-radio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: #f2f2f2;
}

/* On mouse-over, add a grey background color */
.packet-container:hover input ~ .packet-radio {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.packet-container input:checked ~ .packet-radio {
    background-color: #364960;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.packet-radio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.packet-container input:checked ~ .packet-radio:after {
    display: block;
}
.packet-container.checked span.packet-desc {
    color: #ffffff;
}
/* Style the indicator (dot/circle) */
.packet-container .packet-radio:after {
    right: 10px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #9fc7f7;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
span.packet-desc {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    z-index: 10;
    
}
span.packet-desc b {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 30px;
    line-height: 20px;
}
span.participant-notice {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 14px;
}
@media screen and (max-width: 860px) {
    .form-row-col {
        width: 98%;
    }
    .packet-container {
        clear: both;
    }
}