.SearchBox {
        margin-top: 20px;
}
.SearchBox .Default {
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease-in;
}
.SearchBox .Default .Content {
        margin-bottom: 10px;
}
.SearchBox .Default.show {
        max-height: 100px;
        transition: all 0.3s ease-out;
        opacity: 1;
}
.SearchBox .Extra .ExContent {
        display: grid;
        place-items: center;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
}
.SearchBox .Extra .ExContent > table{
        margin: 10px;
}
.SearchBox .Extra .ExContent.show {
        overflow: visible !important;
        max-height: 1500px;
        opacity: 1;
        transition: all 0.3s ease-in;
}
.SearchBox .Extra {
        border: 1px solid #ededed;
        transition: all 0.3s;
}
.SearchBox .Extra .ExContent >table > tbody > tr > td:first-child {
        text-align: right;
        padding: 10px;
        font-weight: bold;
}
.SearchBox .Extra .ExContent >table input, .SearchBox .Extra .ExContent >table select {
        border: 1px solid #cccccc;
        border-radius: 3px;
        padding: 0px 10px;
        height: 34px;
}
.SearchBox .pl-search-default {
        display: grid;
        grid-template-columns: 80px 1fr 100px;
        background: #eee;
        height: 34px;
        border-radius: 3px;
        border: 1px solid #ddd;
}
.SearchBox .pl-search-default >div {
        place-items: center;
        display: grid;
        font-size: 14px;
        font-weight: normal;
        line-height: 1;
        color: #555;
        text-align: center;
        background-color: #eee;
}
.SearchBox .pl-search-default input {
        width: 100%;
        outline: none;
        border: none;
        height: 100%;
        padding: 0px 10px;
}
.SearchBox .ExTitle {
        background: #f5f5f5;
        padding: 8px 10px;
        border-bottom: 1px solid #ededed;
        color: #900000 !important;
        font-weight: 600;
        cursor: pointer;
}
.SearchBox .pl-search-default >div a {
        display: inline-block;
        padding: 6px 12px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        color: #333;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border-radius: 4px;
}
.SearchBox .Extra .ExContent >table input.panel-datepicker{
        background: url(images/calendar.png) no-repeat right;
        
}
.ui-datepicker{
        border-radius: 0;
        width: 250px;
        padding: 0;
}
.ui-datepicker-header{
        background: #bbb2b2;
        border-radius: 0;
        color: #231231;
        font-family: Inter;
        border: 1px solid #f9f9f9;
}
.ui-datepicker-prev, .ui-datepicker-next{
        border-radius: 0;
        margin-top: 5px;
}
.ui-datepicker-prev:hover, .ui-datepicker-next:hover{
        background: #ffffff;
}
.ui-datepicker-calendar{
        font-family: "Roboto";
}
.ui-state-default{
        background: #444444 !important;
        color: #ffffff !important;
        opacity: 0.8;
}
.ui-state-default:hover{
        opacity: 1;
}
@media only screen and (max-width: 768px){
        .SearchBox {
                max-width: 100vw;
                padding: 10px;
        }
        .SearchBox .Extra .ExContent.show > table > tbody > tr {
                display: flex;
                flex-wrap: wrap;
        }
        .SearchBox .Extra .ExContent > table{
                margin-right: 0;
        }
        .SearchBox .Extra .ExContent.show table tr td {
                width: 100%;
                text-align: left !important;
                padding-right: 10px;
                padding-left: 0 !important;
        }
        .SearchBox .Extra .ExContent >table input,  .SearchBox .Extra .ExContent >table select {
                width: 100% !important;
        }
       .SearchBox .Extra .ExContent >table input.panel-datepicker{
                width: 49% !important;
        }
}
