body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.header-container {
    background-color: #F7F8FC;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
    z-index: 20;
    position: sticky;
    top: 0;
    /* position: fixed; */
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.header-container > .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background: none;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1440px;
}

.header-container > .navbar .cps-logo {
    max-width: 180px;
    width: 100%;
}

.header-container > .navbar .cps-logo-small {
    display: none;
}

.customer-support-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1C60DD;
}

.customer-support-wrapper img {
    transition: transform 0.3s ease;
}

.customer-support-wrapper:hover img {
    transform: scale(1.1);
}

.customer-support-wrapper span {
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.dropdown {
    display: flex;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;

    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0.14px;
}

.dropdown-toggle img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.dropdown-toggle .arrow {
    margin-left: 8px;
    transition: transform 0.3s;
    width: 12px;
}

.dropdown-toggle .arrow.open {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    margin-top: 50px;
    background-color: white;
    box-shadow: 0 -5px 10px #418efa28, 0 5px 10px #418efa28;
    z-index: 1;
    border-radius: 12px;
}

.dropdown-content div {
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.dropdown-content .divider {
    height: 1px;
    background: rgba(168, 183, 202, 0.50);
    padding: 0px;
    width: 90%;
    margin: 0 auto;
}

.dropdown-content div a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    /*Font*/
    color: #1E2F47;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px; 
    letter-spacing: 0.14px;
}

.dropdown-content div a:hover {
    background-color: transparent;
}

.dropdown-content div a img {
    width: 24px;
    height: 24px;
    /* margin-right: 8px; */
}

.dropdown-content div:hover {
    background-color: #F7F8FB;
}

.dropdown-content.hide {
    display: none;
}

.dropdown-content.show {
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.hide {
    display: none;
}

@media only screen and (max-width:768px) { 
    .dropdown-content {
        right: 15px;
    }

    .header-container > .navbar .cps-logo {
        display: none;
    }
    
    .header-container > .navbar .cps-logo-small {
        display: flex;
        width: 24px;
        height: 39px;
    }
    
}

@media only screen and (max-width:467px) { 
    .header-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .dropdown-toggle span {
        display: none;
    }
    .dropdown-toggle img {
        margin-right: 2px;
    }
}
