﻿.dropdown {
    position: relative;
    display: inline-block;
    float: right;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .drop-header {
    background: #a8005b;
}

.drop-header {
    color: white;
    padding: 16px;
    font-size: 18px;
    font-weight: bolder;
    border: none;
    line-height: 38px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

    .drop-header .fa {
        color: white;
    }

    .drop-header a {
        color: white;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ddd;
    z-index: 1;
    width: 100%;
}

    .dropdown-content .heading {
        padding: 0px 0px 0px 10px;
    }

    .dropdown-content a {
        color: #5d5d5d;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }