﻿.button-link {
    padding-left: 20px;
    height: 30px;
}

.select {
    width: 100%;
    padding: 10px;
    margin: auto;
}

@media only screen and (max-width: 600px) {
    .select {
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .select {
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .select {
        width: 90%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .select {
        width: 70%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .select {
        width: 50%;
    }
}

details > summary {
    list-style: none;
/*    color: #151D5E;*/
}

    details > summary::-webkit-details-marker {
        display: none;
    }
