﻿@import '//fonts.googleapis.com/css?family=Roboto:300,400"';

.edd-root,
.edd-root *,
.edd-root *::before,
.edd-root *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.edd-root {
    font-size: 16px;
    color: white;
    background-color: transparent;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 1px white inset;
    padding: 8px 16px;
    cursor: pointer;
    height: 48px;
    transition: 0.2s;
    width: 100%;
    margin-bottom: 48px;
    display: inline-block;
    position: relative;
    min-width: 160px;
    user-select: none;
}

.edd-root-disabled {
    color: #ccc;
    cursor: not-allowed;
}

.edd-root.edd-root-focused::after,
.edd-root.edd-root-invalid::after {
    transform: scaleX(1);
}

.edd-root.edd-root-invalid::after {
    background: rgb(255, 105, 105);
}

.edd-head {
    position: relative;
    overflow: hidden;
    transition: border-color 200ms;
}

.edd-root:not(.edd-root-disabled) .edd-head:hover {
    border-bottom-color: #aaa;
}

.edd-value {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 24px 8px 0;
}

.edd-arrow {
    position: absolute;
    width: 14px;
    height: 10px;
    top: calc(50% - 5px);
    right: 3px;
    transition: transform 150ms;
    pointer-events: none;
    color: white;
}

.edd-root-disabled .edd-arrow {
    color: #ccc;
}

.edd-arrow::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    top: 0;
    right: 2px;
    transform: rotate(45deg);
    transform-origin: 50% 25%;
}

.edd-root-open .edd-arrow {
    transform: rotate(180deg);
}

.edd-value,
.edd-option,
.edd-group-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.edd-root:not(.edd-root-disabled) .edd-value,
.edd-option {
    cursor: pointer;
}

.edd-select {
    position: absolute;
    opacity: 0;
    width: 100%;
    left: -100%;
    top: 0;
}

.edd-root-native .edd-select {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.edd-body {
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 999;
    background: white;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.edd-root-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.edd-root-open .edd-body {
    position: absolute;
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
    transition: opacity 200ms, transform 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.edd-root-open-below .edd-body {
    top: 100%;
}

.edd-items-list {
    position: relative;
    overflow: auto;
    max-height: 0;
    transition: max-height 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-overflow-scrolling: touch;
}

    .edd-items-list::-webkit-scrollbar {
        width: 12px;
    }

    .edd-items-list::-webkit-scrollbar-track {
        background: #efefef;
    }

    .edd-items-list::-webkit-scrollbar-thumb {
        background: #ccc;
    }

.edd-group-label {
    font-size: 13px;
    padding: 4px 8px 4px 0;
    color: #555;
    font-weight: 600;
}

.edd-group-has-label {
    padding-left: 22px;
}

.edd-option {
    position: relative;
    padding: 16px;
    color: black;
}

.edd-option-selected {
    font-weight: 400;
}

.edd-option-focused:not(.edd-option-disabled) {
    background: #f8f8f8;
}

.edd-option-disabled,
.edd-group-disabled .edd-option {
    cursor: default;
    color: #ccc;
}
