#dropdown-background
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background-color: #343434cc;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}

#dropdown-background #dropdown-wrapper
{
    display: flex;
    flex-direction: column;
	width: 400px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 50px);
	padding: 20px;
	margin: 0 auto;
	border-radius: 15px;
	background-color: #646464;
    transform: scale(1.1);
    -webkit-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
}

#dropdown-background #dropdown-wrapper #dropdown-element
{
    width: calc(100% - 40px);
    height: 100%;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    color: whitesmoke;
    background-color: #343434;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: auto;
}

#dropdown-background #dropdown-wrapper #dropdown-element .media-input-change input
{
    display: block;
    width: calc(100% - 30px);
    margin: 10px;
    padding: 5px;
    border-radius: 10px;
}

#dropdown-background #dropdown-wrapper #dropdown-button
{
    text-align: center;
    width: calc(100% - 50px);
    height: 60px;
    padding: 20px;
    margin: 10px auto;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.dropdown-help
{
    position: absolute;
    top: 20px;
    right: 20px;
}

.dropdown-custom-button
{
    text-align: center;
    width: calc(100% - 20px);
    height: 60px;
    padding: 10px;
    margin: 10px auto;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.dropdown-custom-button:hover, .dropdown-custom-button:active, .dropdown-custom-button:focus
{
    box-shadow: 0px 0px 10px 2px #6ab8c6;
}
