/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/* Do not edit */
.destination-selector {
    position: relative;
    width: 400px;
    opacity: 0;
}

.destination-selector.rendered {
    opacity: 1;
    transition: opacity, 300ms, linear, 0s;
}

.destination-selector > div {
    border: 1px solid #ddd;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    background-color: #f3f1ef;
    padding: 20px;
    height: 500px;
    position: relative;
}

.destination-selector > div > p {
    font-weight: bold;
}

.destination-selector .selector-container {
    position: relative;
    height: calc(100% - 90px);
}

.destination-selector .actions {
    margin-top: 30px;
    text-align: right;
}

/*# sourceMappingURL=selector.css.map */