@media only screen and (max-width: 575px)  {
    .x-dropbtn {
        width: 340px;
    }

    /* Dropdown Content (Hidden by Default) */
    .x-dropdown-content {
        width: 340px;
    }
}

@media only screen and (min-width:576px) {
    .x-dropbtn {
        width: 500px;
    }

    /* Dropdown Content (Hidden by Default) */
    .x-dropdown-content {
        width: 500px;
    }
}

/* Style The Dropdown Button */
.x-dropbtn {
    font-size: 16px;
    padding: 16px;
    border: none;
    cursor: pointer;
    min-width: 300px;
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(148, 28, 128);
    border-radius: 6px;
}

/* The container <div> - needed to position the dropdown content */
.x-dropdown {
    position: relative;
    display: inline-block;
    margin: 20px;
}

/* Dropdown Content (Hidden by Default) */
.x-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border: 3px solid #000;
    border-radius: 6px;
}

/* Links inside the dropdown */
.x-dropdown-content li {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Roboto-Regular';
}

/* Hide first child inside the DropDown */
.x-dropdown-content li:first-child {
    display: none;
}

/* Change color of dropdown links on hover */
.x-dropdown-content li:hover {
    color: #FFF;
    background-color: #941C80;
}

.x-dropdown-content li:active {
    background-color: #6e145f;
    border: 2px solid #FFF;
    border-radius: 0px;
}

/* Show the dropdown menu on hover */
.x-dropdown:hover .x-dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.x-dropdown:hover .x-dropbtn {
    background-color: #f3f3f3;
    color: rgb(33, 33, 33);
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    border: 3px solid rgb(148, 28, 128);
    border-radius: 6px;
}

.cmp-tabs__tab--active {
    background-color: #6e145f;
    color: #ffffff;
}
