/************************************************
CPA LICENSE PAGE
************************************************/

.cpa-license-title{
    margin-bottom:30px;
    font-family: var(--e-global-typography-b104f75-font-family), Baskerville;
    font-size: 30px;
    font-weight: var(--e-global-typography-b104f75-font-weight);
    line-height: var(--e-global-typography-b104f75-line-height);
    letter-spacing: var(--e-global-typography-b104f75-letter-spacing);
    color: var(--e-global-color-2ec9704);
}

.cpa-license-map{
    margin-bottom:40px;
}

.cpa-license-map iframe{
    width:60%!important;
    min-height:350px;
    border:0;
}

.cpa-license-description{
    margin-bottom:40px;

    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: var(--e-global-typography-c7b325a-font-weight);
    color: var(--e-global-color-4e342ee);
}

/************************************************
EVALUATION REQUIREMENT
************************************************/

.cpa-evaluation-card{
    margin-bottom:50px;
    padding:30px;
    border:1px solid #E7E5E4;
    border-radius:22px;
    background:#FAFAF9;
}

.cpa-evaluation-card h3{
    margin-top:0;
    margin-bottom:15px;

    font-family: var(--e-global-typography-b104f75-font-family), Baskerville;
    font-size: 24px;
    font-weight: var(--e-global-typography-b104f75-font-weight);
    color: var(--e-global-color-2ec9704);
}

.cpa-evaluation-card p:last-child{
    margin-bottom:0;
}

/************************************************
SECTION
************************************************/

.cpa-license-section{
    margin-bottom:60px;
}

.cpa-license-section-heading{
    margin-bottom:25px;
}

.cpa-license-section-heading h2{
    margin:0;

    font-family: var(--e-global-typography-b104f75-font-family), Baskerville;
    font-size: var(--e-global-typography-b104f75-font-size);
    font-weight: var(--e-global-typography-b104f75-font-weight);
    line-height: var(--e-global-typography-b104f75-line-height);
    color: var(--e-global-color-2ec9704);
}

/************************************************
CARDS
************************************************/

.cpa-requirements-grid{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.cpa-requirement-card{
    background:#fff;
    border:1px solid #E7E5E4;
    border-radius:22px;
    padding:30px;
    transition:.3s ease;

    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: var(--e-global-typography-c7b325a-font-weight);
    color: var(--e-global-color-4e342ee);
}

.cpa-requirement-card:hover{
    border-color:#D8C29A;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cpa-requirement-card h3{
    margin-top:0;
    margin-bottom:15px;

    font-family: var(--e-global-typography-b104f75-font-family), Baskerville;
    font-size:24px;
    font-weight:var(--e-global-typography-b104f75-font-weight);
    color:var(--e-global-color-2ec9704);
}

.cpa-requirement-card p:last-child{
    margin-bottom:0;
}

.cpa-requirement-card ul:last-child{
    margin-bottom:0;
}

.cpa-requirement-card a{
    color:#A7812C !important;
    text-decoration:underline;
}

/************************************************
CPA CARD HEADER
************************************************/

.cpa-card-header{
    padding:18px 24px;
    margin:-30px -30px 25px;
    background:#F5F5F4;
    border-bottom:1px solid #E7E5E4;
    border-radius:22px 22px 0 0;
}

.cpa-card-header h3{
    margin:0;
    font-family: var(--e-global-typography-cc47b7e-font-family), Baskerville;
    font-size: var(--e-global-typography-cc47b7e-font-size);
    font-weight: var(--e-global-typography-cc47b7e-font-weight);
    line-height: var(--e-global-typography-cc47b7e-line-height);
    letter-spacing: var(--e-global-typography-cc47b7e-letter-spacing);
    color:var(--e-global-color-2ec9704);
}

.cpa-card-content{
    color:var(--e-global-color-4e342ee);
}

.cpa-card-content p:last-child{
    margin-bottom:0;
}

.cpa-card-content ul:last-child{
    margin-bottom:0;
}
/************************************************
CPA DROPDOWN
************************************************/

.cpa-dropdown-wrapper{
    position:relative;
    width:100%;
    margin-bottom:20px;
}

.cpa-search-box{
    position:relative;
}

.cpa-search-input{
    width:100% !important;
    height:64px;
    border:1px solid #E7E5E4 !important;
    border-radius:18px !important;
    padding:0 60px 0 54px !important;
    background:#fff;

    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: var(--e-global-typography-c7b325a-font-weight);
}

.cpa-search-icon{
    position:absolute;
    left:20px;
    top:57%;
    transform:translateY(-50%);
}

.cpa-search-icon img{
    width:22px;
}

.cpa-dropdown-arrow{
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    transition:.3s;
}

.cpa-dropdown-wrapper.open .cpa-dropdown-arrow{
    transform:translateY(-50%) rotate(180deg);
}

.cpa-state-grid{
    display:none;
    position:absolute;
    top:78px;
    left:0;
    width:100%;
    background:#fff;
    border:1px solid #E7E5E4;
    border-radius:18px;
    padding:12px;
    z-index:999;
    max-height:400px;
    overflow-y:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cpa-state-grid.active{
    display:grid;
    gap:10px;
}

.cpa-state-card{
    display:flex;
    align-items:center;
    min-height:55px;
    padding:0 16px;

    border:1px solid #E3E3E3;
    border-radius:14px;

    text-decoration:none;
    background:#fff;
    transition:.25s;

    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: var(--e-global-typography-c7b325a-font-weight);
    color: var(--e-global-color-4e342ee)!important;
}

.cpa-state-card:hover{
    background:#F8F3E8;
    border-color:#D8C29A;
    color:#000;
    transform:translateY(-2px);
}
.cpa-evaluation-card a {
    color: #A7812C !important;
	font-family: var(--e-global-typography-cc47b7e-font-family), Baskerville;
    font-size: var(--e-global-typography-cc47b7e-font-size);
    font-weight: var(--e-global-typography-cc47b7e-font-weight);
    line-height: var(--e-global-typography-cc47b7e-line-height);
    letter-spacing: var(--e-global-typography-cc47b7e-letter-spacing);
}

/************************************************
MOBILE
************************************************/

@media(max-width:767px){

    .cpa-license-map iframe{
        width:100%!important;
    }

    .cpa-license-title{
        font-size:26px;
    }

    .cpa-requirement-card{
        padding:20px;
    }

    .cpa-evaluation-card{
        padding:20px;
    }

}