.modal, .modal-filters, .modal-package{
    display: none;
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(44, 46, 50, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.modal-content-holder, .modal-content-holder-filters, .modal-content-holder-package{
    min-width: 550px;
    width: 550px;
    max-width: 1600px;
    background-color: white;
    box-shadow: var(--darkBoxShadow);
    border-radius: 20px;
}

.modal-content-header{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 22px 48px;
}

.modal-content-header-title{
    display: flex;
    align-items: center;
    font-size: 125%;
    font-weight: 700;
    text-align: center;
}

.modal-content-footer{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px 20px 20px;
    width: calc(100% - 40px);
}

.modal-content-scroll{
    overflow-y: scroll;
    max-height: 70vh;
    padding: 20px;
    width: calc(87% - 40px);
    margin: 0 auto;
}

.modal-txt{
    text-align: left;
    font-weight: 300;
    margin: 0 auto;
    font-size: 100%;
    line-height: 1.3;
}

.modal-txt-space{
    margin-bottom: 5%;
}

.modal-btn{
    background-color: var(--black);
    color: white;
    width: 85%;
    padding: 16px 0px;
}

.modal-btn-secondary{
    background-color: white;
    border: 1px solid var(--black);
    color: var(--black);
    margin-top: 15px;
}

.close-modal, .close-modal-filters, .close-modal-package{
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.close-modal-img{
    width: 10px;
    height: 11px;
    box-shadow: var(--mediumBoxShadow);
    padding: 6px;
    border-radius: 50%;
    border: 1px solid #fefefe;
}

/** package modal **/

.modal-package-price{
    font-weight: 500;
    font-size: 130%;
}

.modal-package-desc{
    color: gray;
    white-space: pre-line;
    margin: 18px 0;
    font-size: 90%;
}

.missing-out-information-content{
    display: flex;
    align-items: center;
    margin: 12px 0px;
}

.missing-out-text{
    padding-left: 16px;
}

.highlight{
    font-weight: bold;
    text-decoration: underline;
}

.underlined{
    text-decoration: underline;
}

.colored-line{
    min-width: 8px;
    background: linear-gradient(
        to bottom, 
        #FF9191 0%, 
        #B32DC2 51%, 
        #FB669D 74%
      );
    height: 56px;
    border-radius: 8px;
}

.centered{
    text-align: center;
}

.bottom-txt{
	font-style: italic;
	font-size: 75%;
	margin-top: 16px;
}

.divider-line{
    padding: 20px 0px;
    color: #d6d6d6;
    width: 85%;
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 80%;
}

.line{
    height: 2px;
    width: 100%;
    background: #d6d6d6;
    align-self: center;
}

.cancel-subscription-btn{
    margin-top: 64px;
    background: white;
    color: #F63737;
    border: 1px solid #E84747;
}

.calendly-inline-widget iframe{
    border-radius: 8px;
}

/* Services section styling */
.services-section{
    margin: 1.5% 0;
}

.services-label{
    display: block;
    margin-bottom: 1.5%;
    font-weight: 500;
    font-size: 14px;
}

/* Checkbox styling */
.checkbox-holder-full-service-inquiry{
    display: flex;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    font-size: 15px;
    line-height: 21px;
    width: fit-content;
    margin: 10px 0;
}

/* Hide the browser's default checkbox */
.checkbox-holder-full-service-inquiry input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark-full-service-inquiry {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #aaa;
    border-radius: 4px;
    transition-duration: 0.3s;
    align-self: anchor-center;
}

/* On mouse-over, add a grey background color */
.checkbox-holder-full-service-inquiry:hover input ~ .checkmark-full-service-inquiry {
    border: 1px solid var(--black);
}

/* When the checkbox is checked, add a blue background */
input:checked ~ .checkmark-full-service-inquiry {
    background-color: var(--black);
}

/* Create the checkmark-full-service-inquiry/indicator (hidden when not checked) */
.checkmark-full-service-inquiry:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark-full-service-inquiry when checked */
input:checked ~ .checkmark-full-service-inquiry:after {
    display: block;
}

/* Style the checkmark-full-service-inquiry/indicator */
.checkmark-full-service-inquiry:after {
    left: 5px;
    top: 2px;
    width: 2px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Readonly checkbox styling */
.checkbox-holder-full-service-inquiry input[readonly]:checked ~ .checkmark-full-service-inquiry {
    background-color: #ccc;
    border-color: #999;
    cursor: not-allowed;
}

.checkbox-holder-full-service-inquiry input[readonly] {
    cursor: not-allowed;
}

.checkbox-holder-full-service-inquiry:has(input[readonly]) {
    cursor: not-allowed;
}

@media only screen and (max-width: 800px) {
    .modal-content-holder, .modal-content-holder-filters, .modal-content-holder-package{
        width: 95% !important;
        min-width: 95%;
    }

    .modal-content-scroll{
        padding: 15px;
        width: calc(95% - 30px);
    }

    .modal-btn{
        width: 92%;
    }
}
