/**login and signup**/
.bp_dashboard_pages .description_content{
    background-color: #F4F4F4;
} 

.bp_dashboard_pages .dashboard_forms{
    padding:25px;
    border-radius: 10px;
    background:#fff;
    width:500px;
    margin:0 auto;
}
.bp_dashboard_pages .description_content{
    padding:50px 0;
}
.dashboard_forms .form-group:last-child{
    margin-bottom:0px;
}
.dashboard_forms .btnBoxGroup{
    display: flex;
    justify-content: start;
    align-items: center;
}
.dashboard_forms .btnBoxGroup button{
    margin:inherit;
    margin-right: 20px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.form-group input[type="email"], .form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="password"] {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #55555582;
    color: #262626;
    font-size: 14px;
    padding: 5px 15px;
    outline: none;
}

.form-group select {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #55555582;
    color: #262626;
    font-size: 14px;
    padding: 5px 15px;
    outline: none;
    cursor: pointer;
    background-color: #fff;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("../../_images/select-arrow.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
    background-size: 12px;
}


.form-group textarea {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: 1px solid #55555582;
    color: #262626;
    font-size: 14px;
    padding: 5px 15px;
    outline: none;
    resize: none;
}

.form-group button[type="submit"]{
    height: 38px;
    border-radius: 8px;
    border: 1px solid #319ba5;
    color: #262626;
    font-size: 14px;
    padding: 5px 15px;
    outline: none;
}

.form-group input[type="submit"],.form-group button[type="submit"],.gform_button,.gform_button_select_files  {
    background-color: #61bed4;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    /*max-width: 110px;*/
    margin: 0 auto;
    display: block;
    border-color: #61bed4;
    transition-duration: 0.4s; 
    height: 38px;
    border-radius: 8px;
    border: 1px solid #61bed4;
    padding: 5px 15px;
    outline: none;
}

.form-group input[type="submit"]:hover, .form-group button[type="submit"]:hover,.gform_button:hover,.gform_button_select_files:hover {
    color: #61bed4;
    background-color: transparent;
}

.dashboard_forms .btnBoxGroup button {
    margin: inherit;
    margin-right: 20px;
}   
.description_content h2 {
    color: #61bed4;
    font-size: 35px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 900;
}
.dateFilter{
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.modal-footer{
    justify-content: space-between !important;
}

#update_submission_msg.error{
    color: #fff;
    background: #f00;
    padding: 5px 10px;
    font-size: 14px;
}
.description_content,.dashboard_wrap{
    padding-bottom:100px; 
}
.global-footer{
    position: fixed;
    width:100%;
    bottom:0px;
    
}
.global-footer .footer-wrapper{
    min-height: auto;
    padding:25px;
}
.global-footer .bottom-row{
    margin-top:0px;
}
.global-footer .bottom-row .footer-nav-wrapper {
    display: flex;
    justify-content: center;
}
.global-footer .bottom-row .footer-nav-wrapper ul#menu-footer-menu {
    list-style: none;
    display: inline-flex;
}
.global-footer .bottom-row .footer-nav-wrapper ul#menu-footer-menu li.menu-item {
    width: fit-content;
    padding: 10px 0px 10px 20px;
    text-transform: uppercase;
}
.global-footer .bottom-row .footer-nav-wrapper ul#menu-footer-menu-1 li.menu-item a {
    color: #fff;
    font-weight: 700;
    text-shadow: 0px 3px 6px #00000029;
}
.global-footer .bottom-row .footer-nav-wrapper ul#menu-footer-menu-1{
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    gap:10px;
}
.submissions_totals{
    display: flex;
    gap: 20px;
}
.submissions {
    background: #e9ecef;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    gap:10px;
}
.submissions span.submissionPrice {
    font-size: 18px;
    font-weight: bolder;
}

.submit_button:disabled{
    pointer-events: none;
    opacity: 0.5;
}

.bp-forgot-password-form-wrap {
	display: none;
}

a.bp-register-btn {
    border: 1px solid #61bed4;
    border-radius: 6px;
    padding: 5px 15px;
    height: 38px;
    color: #61bed4;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
	margin-right: 20px;
	transition: all .4s ease-in-out;
}

a.bp-register-btn:hover {
    color: #fff;
    background: #61bed4;
}

.dashboard_forms .btnBoxGroup button {
	position: relative;
}

button.submit_button::after {
    content: '';
    width: 2px;
    height: 70%;
    background: #61bed4;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}