* {
    margin: 0;
    padding: 0
}

html {
    height: 100%
}

p {
    color: grey
}

#heading {
    text-transform: uppercase;
    /*color: #673AB7;*/
	color: #0c341d;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}

#msform select .form-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    /*border: 1px solid #673AB7;*/
	border: 1px solid #0c341d;
	border-radius: 0.5rem;
    outline-width: 0
}

#msform .action-button {
    width: 100px;
    /*background: #673AB7;*/
	background: #0c341d;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #4CAF50
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: left
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #4CAF50
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    /*color: #673AB7;*/
	color:#0c341d;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    /*color: #673AB7;*/
	color:#0c341d;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    /*color: #673AB7*/
	color:#0c341d
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f085"
	/*content: "\f0c0"*/
}

#progressbar #contact:before {
    font-family: FontAwesome;
    /*content: "\f13e"*/
	content: "\f095"
}

#progressbar #address:before {
    font-family: FontAwesome;
    content: "\f015"
	/*content: "\f2bb"*/
}

#progressbar #spouse:before {
    font-family: FontAwesome;
    content: "\f007"
}


#progressbar #mkids:before {
    font-family: FontAwesome;
    content: "\f183"
}

#progressbar #fkids:before {
    font-family: FontAwesome;
    content: "\f182"
}

#progressbar #parents:before {
    font-family: FontAwesome;
    content: "\f005"
}

/*#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f095"
}*/

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    /*background: #673AB7*/
	background: #0c341d
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #0c341d
}


.radio-group {
    position: relative;
    margin-bottom: 25px
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3)
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1)
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.fit-image {
    width: 100%;
    object-fit: cover
}
/* field validation */
#msfrom input.invalid, textarea.invalid{
	border: 2px solid red;
}

#msform input.valid, textarea.valid{
	border: 2px solid green;
}