/**
* Theme Name: Yoge Child
* Description: This is a child theme of yoge 
* Author: PBM Infotech
* Template: yoge
* Version: 1.0
*/



.custom-event-box {

    background-color: var(--pbmit-yoge-global-color);
    background-image: url(./images/yoga-pattern-01.png);
    color: white;
    padding: 30px;
    border-radius: 30px;
    margin-top: -30px;
    margin-bottom: 40px;
    display: block;

}

.event-submission-form-box{
    background-color: white;
    padding: 30px;
    border-radius: 30px;
    margin-top: 40px;
}

.custom-event-box ul{

    display: flex;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    gap: 10px;
    padding-left: 1rem;

}

.custom-event-box li{

    display: flex;
    align-items: center;
    gap: 15px;
    color: white;

}

.custom-event-box li div{

    display: flex;
    flex-direction: column;


}

.custom-event-box li div span:first-child{

    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 600;
    color: var(--pbmit-yoge-secondary-color);

}

.custom-event-box li div span:last-child{

    font-weight: 600;

}

.custom-event-box h4{
    color: white;
    font-size: 26px;
    margin: 0;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .custom-event-box h4{
        font-size: 22px;
    }
}

.event-submission-form-box h4{
    color: black;
    font-size: 26px;
    margin: 0;
    margin-bottom: 10px;
}

.event-submission-form-box .feedback {
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    
}
.event-submission-form-box .feedback .message {
    font-weight: 600;
}
.event-submission-form-box .feedback.error {
    color: red;
}
.event-submission-form-box .mdi {
    font-size: 30px;
    margin-right: 10px;
}
.event-submission-form-box .feedback.success {
    color: var(--pbmit-yoge-global-color);
}


#waiver-container {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    padding: 20px;
}

#waiver-container.visible {
    opacity: 1;
    pointer-events: all;
}

#waiver-container .waiver-window {
    background-color: white;
    padding: 30px;
    border-radius: 30px;
    margin: 20px 0;
    margin-top: 150px;
    max-width: 700px;
    width: 100%;
    position: relative;

}

#waiver-container .waiver-window #signature{
    width: 280px;
    height: 150px;
    border: 1px solid silver;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}


#waiver-container .waiver-window .signature-instructions{
    font-size: 0.80em;
    margin-top: 10px;
    text-align: center;
}

#waiver-container .waiver-window a{
    color: var(--pbmit-yoge-global-color);
}


@media (max-width: 600px) {
    #waiver-container .waiver-window {
        margin-top: 30px;
        font-size: 0.9em;
    }
}


#waiver-container .waiver-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

/** For smaller devices flex direction column */

@media (max-width: 600px) {
    #waiver-container .waiver-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}


#waiver-container .waiver-text {
    height: 50%;
    overflow-y: scroll;
    margin-bottom: 20px;
    height: 30vh;
    background: #f0f0f0;
    font-size: 0.9em;
    padding: 15px;
    text-align: justify;

}


@media (max-width: 600px) {
    #waiver-container .waiver-text {
        height: 30vh;
    }
    #waiver-container .waiver-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    #waiver-container .waiver-buttons button {
        height: 45px;
        padding: 0;
        
    }
}

#waiver-container .waiver-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: black;
    font-size: 23px;
    padding: 0;
}


#waiver-container .waiver-disagree {
    border-radius: 30px;
}

#waiver-container .waiver-agree {
    background-color: var(--pbmit-yoge-global-color);
    border-radius: 30px;
}

#waiver-container .waiver-agree.disabled {
    opacity: 0.5;
    pointer-events: none;
}

#waiver-container #clear-sign {
    font-size: 0.9em;
    padding: 5px;
    display: table;
    margin: 0 auto;
    color: var(--pbmit-yoge-global-color);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}








