

.ui-datepicker-calendar {
    display: none;
}

.ui-datepicker .ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 500px;
}

.ui-datepicker .ui-datepicker-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3em;
    white-space: nowrap;
}

#smallImagesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.smallImageBox {
    width: calc(33.33% - 20px);
    cursor: pointer;
    border: 1px solid #ccc;
    position: relative;
    margin: 0px 5px 10px 5px;
}

    .smallImageBox img {
        width: 100%;
        height: auto;
        display: block;
    }

.borderBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
/*.smallImageBox {*/
/* width: 200px;
        margin: 0px 5px 0px 5px;*/
/*width: calc(33.33% - 20px);
        height: auto;
        cursor: pointer;*/
/*background-size: 100% 100%;*/
/*border: 1px solid #ccc;
        position: relative;
        margin: 0px 5px 10px 5px;*/
/*background-size: 100% auto;*/
/*background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }*/

input[type="radio"] {
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.deleteButton {
    position: absolute;
    top: -20px;
    background-color: rgba(255, 0, 0, 0.8);
    border: none;
    cursor: pointer;
    color: white;
    padding: 5px;
    border-radius: 50%;
}

.NonMobile {
    display: block;
}

.MobileOnly {
    display: none;
}

#dvAdPost {
    height: 20px;
}

.ui-autocomplete {
    /*position: absolute !important;
        top: calc(100% + 2px) !important;
        left: 0 !important;
        z-index: 1000 !important;*/
    /*padding-top:-20px;*/
}

.ui-menu {
    margin-top: -100px;
}

    .ui-menu .ui-widget ui-widget-content .ui-autocomplete .ui-front {
        top: 100px;
        min-height: 100px;
        margin-top: -100px;
    }

.ui-menu-item {
    margin-top: -50px;
}

.select2-results ul li {
    list-style: none;
    padding: 4px;
    line-height: 18px;
    /*padding: 0px;
        margin: 0px;
        line-height: 15px;*/
}



/* Media query for mobile screens */
@media (max-width: 600px) {
    .NonMobile {
        display: none;
    }

    .MobileOnly {
        display: block;
    }

    #dvAdPost {
        height: 2px;
    }

    .separator {
        margin-left: 5px;
    }
}

.form-control {
    background: #f6f6f6;
    color: #999999;
    border: none;
}

.select2-selection__rendered {
    line-height: 48px !important;
}

.select2-container .select2-selection--single {
    height: 50px !important;
}

.select2-selection__arrow {
    height: 50px !important;
}

.select2-container--default .select2-dropdown {
    max-height: 1200px !important;
    overflow-y: auto;
    padding: 2px;
}

.select2-results__options {
    max-height: 1200px;
    overflow-y: auto;
}

.gray-form input {
    background-color: white;
    border: 1px solid grey;
}

textarea {
    background-color: white;
    border: 1px solid grey;
}

.form-control:disabled, .form-control[readonly] {
    background-color: white;
    border: 1px solid grey;
    opacity: 1;
}

body, html {
    overflow-x: hidden;
}



.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #00c292;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

