/* Colors:
    -primary: #ffeb3b
        light: #ffff72 rgb(255, 255, 114)
        dark: #c8b900
    -secondary: #ffb74d
        light: #ffe97d
        dark: #c88719
    -text:
        light: #f9f9f9
        dark: #212121
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    text-decoration: none;
    color: #212121;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: #212121;
}

.icon {
    text-decoration: none;
}

.saved-carts {
    width: 100%;
    text-align: right;
    padding: 0px 0.5em;
}

select {
    background-color: transparent;
    border: solid 1px #8a8a8a;
    margin: 0 0 1em 0px;
    padding: 0.5em;
    border-radius: 5px;
}

option {
    outline: solid 2px #212121;
}

.selected-button {
    background-color: #ffb74d !important;
}

.selected-button * {
    color: #f9f9f9;
}

@media only screen and (max-width: 1500px) {
    .saved-carts {
        text-align: center;
    }
}