<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content-wrap{
    margin-bottom: 0px;
}
#section-hero{
    margin-top: 0px;
    padding-top: 230px;
    padding-bottom: 230px;
    background: url(/static/img/leave-laws/main-ll-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.row-hero{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.col-hero-text,
.col-hero-search,
.col-list-of-countries{
    width: 100%;
}

.col-hero-text h1{
    /* font-size: 64px; */
    font-size: 4.44vw;
    font-weight: 500;
    line-height: 1.2;
    color: var(--Core-Base-Black);
    text-align: left;
    margin-bottom: 20px;
}

.col-hero-text p{
    /* font-size: 18px; */
    font-size: 1.25vw;
    font-weight: 400;
    line-height: 1.4;
    color: var(--Core-Base-Black);
    text-align: left;
}

.col-hero-search{
    margin-top: 30px;
}
.search-leave-laws input{
    font-weight: 300;
    font-size: 16px;
    color: #455468;
    border: none;
    outline: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
    border: 1px solid #AFBACA;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    width: 700px;
}
.search-leave-laws input::placeholder {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 16px;
    color: #455468;
}

.col-list-of-countries ul{
    display: flex;
    gap: 20px;
}
.col-list-of-countries ul li a{
    font-size: 16px;
    color: var(--Core-Base-Black);
    line-height: 1.2;
    font-weight: 400;
    transition: color 0.3s ease;
}
.col-list-of-countries ul li a:hover{
    color: var(--Core-Violet);
    transition: color 0.3s ease;
}

.search-leave-laws {
    position: relative;
    /* left: 50%;
    transform: translateX(-50%);
    bottom: 60px; */
}
#search-results {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
    border-radius: 15px;
    padding: 20px 40px;
    display: block;
    border-bottom: none;
    width: 700px;
    box-sizing: border-box;
    position: absolute;
    top: 70px;
    text-align: left;
    overflow: auto;
    max-height: 350px;
    max-width: 100%;
    /* width: 100%; */
}
  
#search-results a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #696969;
    padding: 3px 0;
    margin: 0;
    width: 100%;
}

/* SECTION TABLE */
.country-display {
    display: none;
}
.country-display.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.pointer-events-none {
    pointer-events: none;
}  
.table-county-wrap {
    margin-bottom: 150px;
}
.col-country{
    margin-bottom: 50px;
}
.col-country:nth-last-child(-n+4) {
    margin-bottom: 0;
}
.col-country h5{
    font-size: 32px;
    font-weight: 400;
    color: var(--Core-Base-Black);
    border-bottom: 2px solid #E9EFF6;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: flex;
}
.col-country h5 sup{
    width: 30px;
    height: 30px;
    font-size: 14px;
    font-weight: 400;
    color: var(--Core-Violet);
    background-color: var(--Core-Soft-Lavender-v2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.col-country p{
    margin-bottom: 15px;
}
.col-country p:last-child{
    margin-bottom: 0;
}
.col-country p a{
    font-size: 16px;
    line-height: 1.4;
    color: var(--Core-Base-Black);
    margin-bottom: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
}
.col-country p a:hover{
    color: var(--Core-Violet) !important;
    transition: color 0.3s ease;
}
.top-title-text{
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    color: var(--Core-Base-Black);
}
.title-county-h2 h2{
    font-size: 56px;
    font-weight: 500;
    color: var(--Core-Base-Black);
    margin-top: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E9EFF6;
    margin-bottom: 80px;
}
@media(min-width: 1440px){
    .col-hero-text h1{
        font-size: 64px;
    }
    .col-hero-text p{
        font-size: 18px;
    }
}

@media(max-width: 1251px){
    .country-display.active {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width: 1000px){
    #section-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .country-display.active {
        grid-template-columns: 1fr
    }
    .search-leave-laws input {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
    .col-list-of-countries ul{
        flex-wrap: wrap;
        gap: 15px;
    }
    .col-hero-text h1{
        font-size: 56px;
    }
    .col-hero-text p{
        font-size: 16px;
    }
    .col-hero-text p br{
        display: none;
    }
    .title-county-h2 h2{
        font-size: 32px;
    }
    .top-title-text {
        font-size: 14px;
    }
    .title-county-h2 {
        margin-bottom: 40px;
    }
    .country-display.active {
        gap: 20px;
    }
    .table-county-wrap {
        margin-bottom: 100px;
    }
    /* .col-country h5 {
        font-size: 24px;
    }
    .col-country p a{
        font-size: 14px;
    } */
}</pre></body></html>