.cldw-wrapper {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.cldw-button {
    padding: 8px 28px;
    border: none;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    border-radius: 30px;
}

.cldw-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
	text-align:center;
    border:2px solid #28649D;
	overflow: hidden;
    z-index: 99;
}

.cldw-dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
	color: #28649D;
    font-size:14px;
    font-weight:600;
}

.cldw-dropdown a:hover {
    background: #f5f5f5;
}

.cldw-button.active {
    border-radius:30px 30px 0 0;
}

.cldw-dropdown.active{
    border-radius:0 0 20px 20px;
}