/*
@Author: ThemeMascot
@URL: http://ThemeMascot.com

This is the file where you can add your custom styles to change the look of the
theme. But don't modify style-main.css file.

*/

/* Your custom css codes start here: */

html {
    box-shadow: 0 0 !important;
}

.general_table table{
    width: 100%;
}
.general_table table, th, td{
    border:1px solid black;
}
.general_table th, td {
    padding: 3px 12px;
}
.selectBox {
    border: 1px solid #ccc;
    position: relative;
    padding: 12px 24px;
    cursor: pointer;
    margin: 1rem 5rem;
}
@media (max-width: 575.98px) {
    .selectBox {
        margin: 1rem 1rem;
    }
}
.disabled{
    background-color: #e9ecef;
    cursor: default;
}
.selectBox__value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.selectBox:after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}
.widget .selectBox {
    color: #fff;
}
.widget .selectBox:after {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease-in-out;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.001' height='8.165' stroke='#fff' viewBox='0 0 14.001 8.165'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23212121;%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M13.861,60.224l-.7-.7a.441.441,0,0,0-.645,0L7,65.036,1.487,59.522a.441.441,0,0,0-.645,0l-.7.7a.441.441,0,0,0,0,.645l6.537,6.538a.441.441,0,0,0,.645,0l6.538-6.538a.442.442,0,0,0,0-.645Z' transform='translate(0 -59.382)'/%3E%3C/svg%3E");
}
.widget .selectBox.show {
    background-color: inherit;
}
.selectBox .dropdown-menu {
    transition: all 0.5s ease-in-out !important;
    opacity: 0 !important;
    display: block !important;
    top: 100% !important;
    width: 100% !important;
    max-height: 250px !important;
    z-index: -1 !important;
    overflow-y: auto !important;
    transform: translateY(-15%) !important;
    visibility: hidden !important;
}
.selectBox.show {
    background-color: #fff;
}
.selectBox.show:after {
    transform: translateY(-50%) rotate(180deg);
}
.selectBox.show .dropdown-menu {
    transition: all 0.3s ease-in-out !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
    transform: translateY(0) !important;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    line-height: 35px;
}

ul {
    display: block; /* or default */
    list-style-type: disc;
    padding-left: 20px;
}

li {
    display: list-item; /* default behavior */
}