@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

body {
    /* font-family: montserrat, arial, verdana; */
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: 'Roboto';
}

body {
    background-color: #f1f1f1;
    margin: 0;
}

p {
    margin: 0;
    font-family: 'Roboto';
    font-size: 14px;
    color: #637178;
}

h2 {
    font-family: 'Roboto';
    font-size: 40px;
    font-weight: bold;
    color: #323232;
}

h4 {
    font-family: 'Roboto';
    font-size: 24px;
    font-weight: bold;
    color: #323232;
}



.main-body {
    background-image: url("../img/site-default-bg.jpg");
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: fixed;
}


h1 {
    text-align: center;
}

.btn-spacing {
    height: 65px;
}

.btn-spacing-icon {
    background: #323232;
    width: 100%;
    height: 42px;
    position: fixed;
    bottom: 0;
    left: 0;
}

/*form styles*/

.msform {
    max-width: 770px;
    margin: auto;
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

@media screen and (min-width:768px) {
    p {
        font-size: 16px;
    }
}

.msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    max-height: calc(100% - 40px);
    overflow-y: auto;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
.msform fieldset:not(:first-of-type) {
    display: none;
}

/*buttons*/
.action-button {
    border-radius: 25px;
    background-color: #323232;
    color: white;
    padding: 5px;
    border: none;
}

.action-button:hover,
.action-button:focus {
    outline: none;
}

.action-button-icon {
    background-color: transparent;
    border: none;
    padding: 5px;
    height: 42px;
    width: 60px;
}

.action-button-icon:hover,
.action-button-icon:focus {
    outline: none;
}

/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 0px;
	margin-top:0px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: flex;
    justify-content: space-around;
    justify-items: stretch;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    flex: 1;
    position: relative;
}

#progressbar li:before {
    /* content: counter(step);
    counter-increment: step; */
    content: "";
    width: 17px;
    border-radius: 50%;
    height: 17px;
    border: 3px #b2b2b2 solid;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: #e6e6e6;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #e6e6e6;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before {

    background: #323232;
    border: 3px #fff solid;
}

#progressbar li.active:before,
#progressbar li.active:after {
    color: white;
}

.form-group label {
    font-family: 'Roboto';
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1;
    color: #2d2f39;
}

.form-group .form-control {
    border: solid 1px #d5ebff;
    background-color: #eff7ff;
}

.max-w-520 {
    max-width: 520px;
}

.lock-icon {
    width: 50px;
    height: 50px;
    box-shadow: 5px 10px 20px 0 rgba(252, 212, 4, 0.2);
    background-color: #fcd404;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sub-title {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: normal;
    color: #2d2f39;
}

.icon-25 {
    width: 25px;
    height: 25px;
    background-color: #fcd404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-reservation .ml-2 {
    line-height: 1.2;
}

.abt-res-title {
    font-weight: bold;
    color: #637178;
}

.loc-info {
    margin-top: 40px;
}

.loc-info h4 {
    color: #637178;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.loc-info hr {
    margin-top: 4px;
    width: 200px;
    border-color: green;
    margin-left: 0;
}

.loc-info p {
    font-size: 14px;
    color: #637178;
}

.prev-btn,
.nxt-btn {
    position: absolute;
    bottom: 20px;
    width: calc(50% - 40px);
}

.prev-btn-icon,
.nxt-btn-icon {
    position: fixed;
    bottom: 0px;
}

.prev-btn {
    left: 30px;
}

.nxt-btn {
    right: 30px;
}

.prev-btn-icon {
    left: 15px;
}

.nxt-btn-icon {
    right: 15px;
}

.start-btn-icon {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.yes-no-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.take-photo {
    border-radius: 2px;
    border: solid 1px #e4e4e4;
    background-color: #fbfbfb;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 0;
}

.take-photo p {
    width: 200px;
    height: 40px;
    border-radius: 2px;
    border: solid 1px #fcd404;
    background-color: #fffbe5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-box {
    border-radius: 10px;
    border: solid 1px #dfdfdf;
    padding: 30px;
    margin-top: 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    box-shadow: 5px 10px 20px 0 rgba(50, 50, 50, 0.31);
    background-color: #fcd404;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 40px;
    position: relative;
}

.success-icon::after {
    content: "";
    width: 12px;
    height: 24px;
    border-right: 4px #000 solid;
    border-bottom: 4px #000 solid;
    position: absolute;
    transform: rotate(45deg);
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 4px;
}

.page-count {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-count p {
    background: #fcd404;
    padding: 2px 40px;
    border-radius: 20px;
    color: #7d7d7d;
    font-weight: 500;
}

.page-count p span {
    color: #000;
}


/* The container-checkbox */
.container-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 999;
    height: 40px;
    width: 200px;
    display: flex;
    align-items: center;
    margin: 10px 20px;
    justify-content: center;

}

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

/* Create a custom radio button */
.checkmark {
    height: 40px;
    width: 200px;
    border: 1px #e4e4e4 solid;
    border-radius: 2px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.container-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.container-checkbox input:checked~.checkmark {
    border: solid 1px #fcd404;
    background-color: #fffbe5;
}

.checkmark:after,
.checkmark::before {
    content: "";
    position: absolute;
    display: none;
}

.container-checkbox input:checked~.checkmark:after,
.container-checkbox input:checked~.checkmark:before {
    display: block;
}

.container-checkbox .checkmark:before {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    height: 25px;
    width: 25px;
    background: black;
    border-radius: 50%;
}

.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    top: -5px;
    right: -7px;
    height: 7px;
    width: 14px;
    transform: rotate(-45deg);
    border-left: 3px #fcd404 solid;
    border-bottom: 3px #fcd404 solid;
}

.next-btn,
.previous-btn,
.start-btn {
    text-transform: uppercase;
}

.date-picker-input i {
    position: absolute;
    bottom: 28px;
    z-index: 999;
    right: 24px;
    margin: 0 !important;
    color: #637178 !important;
}
.nxt-btn-icon.pay  {
    background: #23d423;
    height: auto;
    width: auto;
    font-size: 12px;
    color: #fff;
    border-radius: 15px;
    bottom: 9px;
    line-height: 1.2;
    padding-left: 7px;
    padding-right: 7px;
}



.yellow-icon {
    color: #000;
    background: #fed705;
    border-radius: 22px;
    padding: 8px 0;
    width: 30px;
    text-align: center;
}
.gray-text {
    color: #c1baba;
}
.yellow-bor {
    color: #000;
    border:1px solid #fed705;
    padding:6px;
    margin:6px 10px 10px 38px; 
}

/* =============== V2.0 =============== */

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
    .msform {
        height: 100%;
        align-items: flex-start;
    }
    .msform fieldset {
        max-height: 100%;
        padding: 15px;
        overflow-x: hidden;
        box-shadow: none;
        border-radius: 0;
    }
    .btn-spacing-icon {
        height: 82px;
    }
    .action-button-icon {
        font-size: 30px;
        color: #323232;
        line-height: 32px;
        background-color: #FCD404;
        width: 52px;
        height: 52px;
        margin: 15px;
        border-radius: 50%;
    }
    .page-count p {
        font-size: 18px;
        padding: 4px 30px;
    }
    .nxt-btn-icon.pay {
        padding: 10px 6px;
        bottom: 9px;
        right: 0px;
    }
    .mobile-border {
        height: calc(100vh - 250px);
        overflow-y: auto;
        margin: 15px !important;
        border: 2px solid #323232;
    }
    .sub-title {
        font-size: 18px;
    }
    .loc-info {
        margin-top: 10px;
    }
    .license-icon {
        display: inline-block;
        background-color: #fcd404;
        padding: 28px 25px;
        border-radius: 50%;
    }
    .license-icon i {
        font-size: 70px;
    }
    .btn-spacing-icon,
    .prev-btn-icon,
    .nxt-btn-icon {
        z-index: 99999;
    }
    .info-new .row .col-12 .d-flex .icon-25 {
        min-width: 25px;
    }
    .info-new .row .col-12 .d-flex p {
        word-break: break-all;
    }
    .info-new .row .col-12 .d-flex p.ml-2 {
        min-width: 90px;
    }
    .container-checkbox {
        margin: 10px auto;
    }
	.alternate_contact_instruction{
		padding: 20px 0 10px 0;
	}
}

/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .msform {
        height: 100%;
        align-items: flex-start;
    }
    .msform fieldset {
        max-height: 100%;
        padding: 15px;
        overflow-x: hidden;
        box-shadow: none;
        border-radius: 0;
    }
    .btn-spacing-icon {
        height: 82px;
    }
    .action-button-icon {
        font-size: 30px;
        color: #323232;
        line-height: 32px;
        background-color: #FCD404;
        width: 52px;
        height: 52px;
        margin: 15px;
        border-radius: 50%;
    }
    .page-count p {
        font-size: 18px;
        padding: 4px 30px;
    }
    .nxt-btn-icon.pay {
        padding: 10px 6px;
        bottom: 9px;
        right: 0px;
    }
    .mobile-border {
        height: calc(100vh - 180px);
        overflow-y: auto;
        margin: 15px !important;
        border: 2px solid #323232;
    }
    .sub-title {
        font-size: 18px;
    }
    .loc-info {
        margin-top: 10px;
    }
    .license-icon {
        display: inline-block;
        background-color: #fcd404;
        padding: 28px 25px;
        border-radius: 50%;
    }
    .license-icon i {
        font-size: 70px;
    }
    .btn-spacing-icon,
    .prev-btn-icon,
    .nxt-btn-icon {
        z-index: 99999;
    }
    .info-new .row .col-12 .d-flex .icon-25 {
        min-width: 25px;
    }
    .info-new .row .col-12 .d-flex p {
        word-break: break-all;
    }
    .info-new .row .col-12 .d-flex p.ml-2 {
        min-width: 90px;
    }
    .container-checkbox {
        margin: 10px auto;
    }
	.alternate_contact_instruction{
		padding: 20px 0 10px 0;
	}
}

/* ----------- Google Pixel ----------- */
/* Portrait */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    .msform {
        height: 100%;
        align-items: flex-start;
    }
    .msform fieldset {
        max-height: 100%;
        padding: 15px;
        overflow-x: hidden;
        box-shadow: none;
        border-radius: 0;
    }
    .btn-spacing-icon {
        height: 82px;
    }
    .action-button-icon {
        font-size: 30px;
        color: #323232;
        line-height: 32px;
        background-color: #FCD404;
        width: 52px;
        height: 52px;
        margin: 15px;
        border-radius: 50%;
    }
    .page-count p {
        font-size: 18px;
        padding: 4px 30px;
    }
    .nxt-btn-icon.pay {
        padding: 10px 6px;
        bottom: 9px;
        right: 0px;
    }
    .mobile-border {
        height: calc(100vh - 180px);
        overflow-y: auto;
        margin: 15px !important;
        border: 2px solid #323232;
    }
    .sub-title {
        font-size: 18px;
    }
    .loc-info {
        margin-top: 10px;
    }
    .license-icon {
        display: inline-block;
        background-color: #fcd404;
        padding: 28px 25px;
        border-radius: 50%;
    }
    .license-icon i {
        font-size: 70px;
    }
    .btn-spacing-icon,
    .prev-btn-icon,
    .nxt-btn-icon {
        z-index: 99999;
    }
    .info-new .row .col-12 .d-flex .icon-25 {
        min-width: 25px;
    }
    .info-new .row .col-12 .d-flex p {
        word-break: break-all;
    }
    .info-new .row .col-12 .d-flex p.ml-2 {
        min-width: 90px;
    }
    .container-checkbox {
        margin: 10px auto;
    }
			
	.alternate_contact_instruction{
		padding: 20px 0 10px 0;
	}
	
}

/* Landscape */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
    .msform {
        height: 100%;
        align-items: flex-start;
    }
    .msform fieldset {
        max-height: 100%;
        padding: 15px;
        overflow-x: hidden;
        box-shadow: none;
        border-radius: 0;
    }
    .btn-spacing-icon {
        height: 82px;
    }
    .action-button-icon {
        font-size: 30px;
        color: #323232;
        line-height: 32px;
        background-color: #FCD404;
        width: 52px;
        height: 52px;
        margin: 15px;
        border-radius: 50%;
    }
    .page-count p {
        font-size: 18px;
        padding: 4px 30px;
    }
    .nxt-btn-icon.pay {
        padding: 10px 6px;
        bottom: 9px;
        right: 0px;
    }
    .mobile-border {
        height: calc(100vh - 180px);
        overflow-y: auto;
        margin: 15px !important;
        border: 2px solid #323232;
    }
    .sub-title {
        font-size: 18px;
    }
    .loc-info {
        margin-top: 10px;
    }
    .license-icon {
        display: inline-block;
        background-color: #fcd404;
        padding: 28px 25px;
        border-radius: 50%;
    }
    .license-icon i {
        font-size: 70px;
    }
    .btn-spacing-icon,
    .prev-btn-icon,
    .nxt-btn-icon {
        z-index: 99999;
    }
    .info-new .row .col-12 .d-flex .icon-25 {
        min-width: 25px;
    }
    .info-new .row .col-12 .d-flex p {
        word-break: break-all;
    }
    .info-new .row .col-12 .d-flex p.ml-2 {
        min-width: 90px;
    }
    .container-checkbox {
        margin: 10px auto;
    }
	
	.alternate_contact_instruction{
		padding: 20px 0 10px 0;
	}
}

/* Responsive */
@media screen and (max-width: 667px) {
    .msform {
        height: 100%;
        align-items: flex-start;
    }
    .msform fieldset {
        max-height: 100%;
        padding: 15px;
        overflow-x: hidden;
        box-shadow: none;
        border-radius: 0;
    }
    .btn-spacing-icon {
        height: 82px;
    }
    .action-button-icon {
        font-size: 30px;
        color: #323232;
        line-height: 32px;
        background-color: #FCD404;
        width: 52px;
        height: 52px;
        margin: 15px;
        border-radius: 50%;
    }
    .page-count p {
        font-size: 18px;
        padding: 4px 30px;
    }
    .nxt-btn-icon.pay {
        padding: 10px 6px;
        bottom: 9px;
        right: 0px;
    }
    .mobile-border {
        height: calc(100vh - 270px);
        overflow-y: auto;
        margin: 0px 15px !important;
        border: 2px solid #323232;
    }
    .sub-title {
        font-size: 18px;
    }
    .loc-info {
        margin-top: 10px;
    }
    .license-icon {
        display: inline-block;
        background-color: #fcd404;
        padding: 28px 25px;
        border-radius: 50%;
    }
    .license-icon i {
        font-size: 70px;
    }
    .btn-spacing-icon,
    .prev-btn-icon,
    .nxt-btn-icon {
        z-index: 99999;
    }
    .info-new .row .col-12 .d-flex .icon-25 {
        min-width: 25px;
    }
    .info-new .row .col-12 .d-flex p {
        word-break: break-all;
    }
    .info-new .row .col-12 .d-flex p.ml-2 {
        min-width: 90px;
    }
    .container-checkbox {
        margin: 10px auto;
    }
	.success_pay{
		height:550px;
	}
	.d-sm-none{
		display:none;
	}
}

#mailing_address {
	text-transform: uppercase;
}
#alternate_contact {
	width: 250px;
}
#alternate_contact .checkmark {
	width:250px;
}
#alternate_contact_form .yes-no-btn {
	margin-bottom: 20px !important;
}
#state {
	text-transform: uppercase;
}
#info-desktop .icon-25 {
    min-width: 25px;
}
#info-desktop .abt-reservation p {
    word-break: break-all;
}
.container-checkbox .checkmark::before {
    border: 1px solid #fcd404;
}
.msform {
    max-width: 1400px;
}
#progressbar {
    padding-left: 0;
}

#license_form ul{  
  list-style: none;
}