.navigation {
    margin: 0 auto;
    width: var(--width-view);
    padding: 10px 0;
}

.div-container {
    width: var(--width-view);
    margin-left: calc((100% - var(--width-view))/2);
    border-top: 1px solid #747474;
    margin-top: 30px;
    margin-bottom: 10px;
    display: inline-block;
}

.header-view {
    width: 100%;
    background: white;
    position: relative;
    padding: 10px;
    border-radius: 3px 3px 0 0;
    display: inline-block;
    border-bottom: 2px solid var(--highlight-color);
    margin: 10px 0;
    font-size: 16px;
    font-weight: 700;
    float: left;
    color: var(--highlight-color);
}

.div-title-view {
    font-weight: 700;
    color: #212121;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    margin-bottom: 10px;
}

.general_infor_container {
    width: calc(50% - 5px);
    float: left;
    margin-right: 5px;
    background: white;
    padding: 10px;
    height: fit-content;
}

.image-container {
    width: 100%;
    height: fit-content;
    background: white;
    padding: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.images_preview {
    width: 100%;
    display: inline-block;
}

.images_preview .pip {
    display: inline-block;
    float: left;
    width: calc(20% - 10px);
    margin-right: 10px;
}

.map-container {
    width: 100%;
    min-height: 260px;
    background: white;
    padding: 10px;
}

.description-container, .other-infor-container, .contact-container {
    width: 100%;
    height: fit-content;
    margin-bottom: 10px;
    background: white;
    padding: 10px;
    display: inline-block;
}

.time-container {
    width: calc(50% - 5px);
    float: left;
    background: white;
    display: inline-block;
    margin-right: 5px;
    padding: 10px;
}

.terms-container {
    width: calc(50% - 5px);
    float: left;
    background: white;
    display: inline-block;
    margin-left: 5px;
    padding: 10px;
    height: 116px;
}

.btn-post {
    background: #ff8003;
    color: white;
    padding: 5px 50px;
    border: 0;
    border-radius: 3px;
}

.img-calendar-field {
    width: 20px;
    object-fit: cover;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.imageThumb {
    max-height: 75px;
    border: 2px solid;
    padding: 1px;
    cursor: pointer;
}

.rmv {
    cursor: pointer;
    margin: 7px;
    color: #fff;
    border-radius: 30px;
    border: 1px solid #fff;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
}

.rmv:hover {
    background: rgba(255, 0, 0, 0.5);
}


.lb-radio {
    cursor: pointer;
}
input[type="radio"] {
    display:none;
}
input[type="radio"] + i:before {
    content:'\2718';
    color:red;
}
input[type="radio"]:checked + i:before {
    content:'\2713';
    color:green;
}
