.components-custom-select-control {
    color: rgb(85, 93, 102);
    position: relative;
}

.components-custom-select-control__label {
    margin-bottom: 5px;
    display: block;
}

.components-custom-select-control__button {
    border-radius: 4px;
    border: 1px solid rgb(126, 137, 147);
    border-image: none;
    text-align: left;
    color: rgb(85, 93, 102);
    display: inline;
    position: relative;
    min-height: 30px;
    min-width: 130px;
}

    .components-custom-select-control__button:focus {
        border-color: rgb(0, 160, 210);
    }

.components-custom-select-control__button-icon {
    padding: 0px 4px;
    top: 0px;
    height: 100%;
    right: 0px;
    position: absolute;
}

.components-custom-select-control__menu {
    background: rgb(255, 255, 255);
    padding: 0px;
    width: 100%;
    position: absolute;
    z-index: 1000000;
}

.components-custom-select-control__item {
    padding: 10px 5px 10px 25px;
    display: flex;
    list-style-type: none;
    align-items: center;
}

    .components-custom-select-control__item.is-highlighted {
        background: rgb(226, 228, 231);
    }

.components-custom-select-control__item-icon {
    margin-right: 0px;
    margin-left: -20px;
}

.components-spinner {
    margin: 5px 11px 0px;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    float: right;
    display: inline-block;
    position: relative;
    opacity: 0.7;
    background-color: rgb(126, 137, 147);
}

    .components-spinner::before {
        transform-origin: 6px 6px;
        border-radius: 100%;
        animation: components-spinner__animation 1s linear infinite;
        left: 3px;
        top: 3px;
        width: 4px;
        height: 4px;
        position: absolute;
        content: "";
        background-color: rgb(255, 255, 255);
        -webkit-animation: components-spinner__animation 1s linear infinite;
    }

.components-snackbar {
    padding: 16px 24px;
    border-radius: 4px;
    width: 100%;
    color: rgb(255, 255, 255);
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
    font-size: 13px;
    cursor: pointer;
    max-width: 600px;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    background-color: rgb(50, 55, 60);
}

@media all and (min-width:600px) {
    .components-snackbar {
    }
}

.components-snackbar:hover {
    background-color: rgb(25, 30, 35);
}

.components-snackbar:focus {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #007cba;
    background-color: rgb(25, 30, 35);
}

.components-snackbar__action.components-button {
    padding: 0px;
    height: auto;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    margin-left: 32px;
    flex-shrink: 0;
}

:not(:disabled):not(.is-default):not([aria-disabled=true]).components-snackbar__action.components-button {
    text-decoration: underline;
    background-color: transparent;
}

    :not(:disabled):not(.is-default):not([aria-disabled=true]).components-snackbar__action.components-button:focus {
        outline: rgb(255, 255, 255) dotted 1px;
        color: rgb(255, 255, 255);
        box-shadow: none;
    }

    :not(:disabled):not(.is-default):not([aria-disabled=true]).components-snackbar__action.components-button:hover {
        color: rgb(51, 179, 219);
    }

.components-snackbar__content {
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.components-snackbar-list {
    width: 100%;
    position: absolute;
    z-index: 100000;
    box-sizing: border-box;
}

.components-snackbar-list__notice-container {
    padding-top: 8px;
    position: relative;
}
