﻿.custom-select {
    position: relative;
}

    .custom-select select {
        display: none;
    }

.select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid;
    border-color: #01A982 transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #01A982 transparent;
    top: 12px;
}

.select-items div {
    padding: 8px 10px 8px 10px;
    border-bottom: 1px solid;
    cursor: pointer;
}

.select-selected {
    border-top: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    background-color: #ffffff;
    color: #068667;
    border-color: #000000;
    padding: 8px 30px 8px 10px;
    border-bottom: 1px solid;
    cursor: pointer;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #ffffff;
    border: 1px solid #c9c9ca !important;
    max-height: 350px !important;
    overflow: auto;
}

.select-hide {
    display: none;
}

.select-items div:hover {
    background-color: #01A982;
    color: #ffffff;
    font-weight: bold;
}


.custom-select.trackDropdown .select-selected {
    padding: 4px 30px 4px 10px;
}

    .custom-select.trackDropdown .select-selected::after {
        top: 15px;
    }

    .custom-select.trackDropdown .select-selected.select-arrow-active:after {
        top: 9px;
    }

.custom-select.trackDropdown {
    min-width: 70% !important;
    width: max-content;
}

.grid-container.wide .custom-select.trackDropdown {
    min-width: 30% !important;
    width: max-content;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-select.trackDropdown {
        min-width: 60% !important;
        width: max-content;
    }

    .grid-container.wide .custom-select.trackDropdown {
        min-width: 60% !important;
        width: max-content;
    }
}

@media (max-width: 767px) {
    .custom-select.trackDropdown {
        min-width: 70% !important;
        width: max-content;
    }

    .grid-container.wide .custom-select.trackDropdown {
        min-width: 70% !important;
        width: max-content;
    }
}
