html,
body {
    height: 100%;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
    font-size: 100%;
    min-width: 300px;
}

#container {
    display: flex;
    flex-direction: column;
    height: 95%;
    min-height: 95%;
    max-height: 95%;
}

.menufont {
    margin: 0px;
    padding: 0px;
    padding-left: 25px;
    height: 70px;
    line-height: 70px;
    vertical-align: middle;
    text-align: left;
    background: #fff;
    color: #000;
    border-bottom: thin solid grey;
}

main {
    clear: both;
    display: flex;
    flex-direction: row;
    width: calc(100% - 40px);
    padding-left: 15px;
    padding-right: 15px;
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
}


footer {
    position: fixed;
    width: 100%;
    bottom: 0px;
    clear: both;
    font-size: larger;
    text-align: center;
    background: #fff;
    color: #000;
    height: 25px;
    padding: 0px;
    vertical-align: middle;
    line-height: 25px;
    border-top: thin solid grey;
}

.carousel {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 98%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 0px solid red;
}

.border_caroussel_control {
    display: flex;
    flex-direction: row;
    height: 28px;
    margin: 0 auto;
    margin-top: 1px;
    padding: 0px;
    border: 0px solid grey;
    border-radius: 10px;
}

.left_control {
    flex-basis: auto;
}

.right_control {
    flex-basis: auto;
}

.carousel-controls {
    width: calc(100% - 50px);
    display: flex;
    padding-top: 5px;
    justify-content: center;
    vertical-align: middle;
}

.carousel-arrow {
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.carousel-arrow.prev {
    border: 0px solid blue;
}

.carousel-arrow.next {
    border: 0px solid yellow;
}

.imgslider {
    border: 1px solid grey;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px;
    width: calc(100% - 5px);
    height: calc(100%);
    display: flex;
    flex-direction: row;
    overflow: hidden;
}


.carousel-item {
    border: 0px solid rgb(19, 194, 60);
    width: 100%;
    display: flex;
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    overflow: hidden;
}

.imgblock {
    border: 0px solid rgb(27, 17, 138);
    margin: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 100%;
    overflow: hidden;
}

img {
    cursor: zoom-in;
}

.no-fullscreen {
    cursor: Default;
}

.view_image_body {
    position: fixed;
    background-color: black;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.view_image {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    cursor: zoom-out;
}

.view_image_img {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 95%;
    max-width: 95%;
    cursor: zoom-out;
}