/** Documentation Requirements Dropdown CSS **/

.country-dropdown-wrapper{
    max-width: 100%;
    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
}

/* SEARCH BOX */

.country-search-box{
    position: relative;
    margin-bottom: 18px;
}

.country-search-box input{
    width: 100%!important;
    height: 64px;
    border: 1px solid #E7E5E4!important;
    border-radius: 18px!important;
    padding: 0 60px 0 54px!important;
    font-size: 20px;
    color: #333;
    outline: none;
    background: #fff;
    transition: 0.3s ease!important;
	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);
}

.country-search-box input:focus{
    border-color: #c9c9c9;
}

.country-search-box input::placeholder{
    color: #666;
}

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

.country-arrow{
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    display: flex;
    align-items: center;
}

/* GRID */

.country-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* CARD */

.country-card{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    border: 1px solid #e3e3e3;
    border-radius: 21px;
    padding: 6px 13px;
    background: #fff;
    transition: all 0.25s ease;
    min-height: 55px;
}

.country-card:hover{
    transform: translateY(-2px);
    border-color: #cfcfcf;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.country-card img{
    width: 34px;
    height: 34px!important;
    border-radius: 50%!important;
    object-fit: cover;
    flex-shrink: 0;
}

.country-card span{
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
	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);
}

/* MOBILE */

@media(max-width: 767px){

    .country-grid{
        grid-template-columns: 1fr;
    }

    .country-search-box input{
        height: 56px;
        font-size: 16px;
    }

    .country-card{
        min-height: 62px;
        padding: 12px 16px;
    }

    .country-card span{
        font-size: 16px;
    }

}
.country-load-more{
    margin-top: 18px;
    width: 100%;
    height: 56px;
    border: 1px solid #b39c68;
    border-radius: 16px;
    background: #b39c68;
    transition: 0.3s ease;
    color: #ffffff;
    font-family: var(--e-global-typography-89ba6c7-font-family), Baskerville;
    font-size: var(--e-global-typography-89ba6c7-font-size);
    font-weight: var(--e-global-typography-89ba6c7-font-weight);
    text-transform: var(--e-global-typography-89ba6c7-text-transform);
    line-height: var(--e-global-typography-89ba6c7-line-height);
    letter-spacing: var(--e-global-typography-89ba6c7-letter-spacing);
}

.country-load-more:hover{
    background: #3B3B3B;
}
.country-load-more:focus{
	background: #3B3B3B;
}
/* =========================================================
DOCUMENT SECTION
========================================================= */

.document-section{
    margin-bottom: 60px;
}

/* =========================================================
SECTION HEADING
========================================================= */

.document-section-heading{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.document-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);
    letter-spacing: var(--e-global-typography-b104f75-letter-spacing);
    color: var(--e-global-color-2ec9704);
}

.document-section-heading span{
    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-24e9846);
}

/* =========================================================
TABLE WRAPPER
========================================================= */

.document-table-wrapper{
    border: 1px solid #E7E5E4;
    border-radius: 22px;
    overflow: auto;
    background: #fff;
}

/* =========================================================
TABLE
========================================================= */

.document-table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
	margin-bottom: 0px;
}

.document-table thead{
    background: #F5F5F4;
    border: 1px solid #E7E5E4;
}

.document-table th{
    text-align: left;
    padding: 22px 28px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
	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: #444;
    font-weight: 600;
	border: 1px solid #E7E5E4;
	border-block-start: 0px!important;
}

.document-table td{
    padding: 28px;
    border: 1px solid #E7E5E4;
    vertical-align: top;
	font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: 400;
	background: #ffffff !important;
}

/* =========================================================
LEFT COLUMN
========================================================= */

.document-required{
    width: 62%;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
}

.document-required p:last-child{
    margin-bottom: 0;
}

/* =========================================================
RIGHT COLUMN
========================================================= */

.document-formats{
    width:38%;
}

.document-formats ul{
    margin:0;
    padding-left:20px;
}

.document-formats li{
    margin-bottom:10px;
    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);
    line-height:1.7;
    color:#333;
}

.document-formats li:last-child{
    margin-bottom:0;
}

/* =========================================================
BLUE BADGES
========================================================= */

.format-badge{
    display: block;
    align-items: center;
/*     padding: 8px 14px; */
/*     background: #e8f4ff; */
    color: #2c6ca3;
    border-radius: 9px;
    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: 300;
    margin-right: 8px;
    margin-bottom: 10px;
    line-height: 1.6;
	width: fit-content;
}

/* =========================================================
GREEN BADGE
========================================================= */

.original-badge{
    display: inline-flex;
    align-items: center;
/*     padding: 8px 14px; */
/*     background: #edf7df; */
    color: #7da542;
    border-radius: 9px;
    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight: 400;
    margin-right: 8px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.document-format-list{
    margin:0;
    padding-left:20px;
}

.document-format-list li{
    margin-bottom:8px;
    color:#333;
    line-height:1.7;
    font-family: var(--e-global-typography-c7b325a-font-family), Baskerville;
    font-size: var(--e-global-typography-c7b325a-font-size);
    font-weight:400;
}

.document-format-list li:last-child{
    margin-bottom:0;
}
/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 991px){

    .document-section-heading h2{
        font-size: 28px;
    }

    .document-table th,
    .document-table td{
        padding: 20px;
    }

}

@media(max-width: 767px){

    .document-table,
    .document-table thead,
    .document-table tbody,
    .document-table tr,
    .document-table td,
    .document-table th{
        display: block;
        width: 100%;
    }

    .document-table thead{
        display: none;
    }

    .document-table tr{
        border-top: 1px solid #ececec;
        padding: 20px;
    }

    .document-table td{
        border: none;
        padding: 10px 0;
    }

    .document-required,
    .document-formats{
        width: 100%;
    }

    .document-section-heading h2{
        font-size: 22px;
    }

}