#image_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#image_upload_errors {
    color: red;
}

.swiper-container {
    border-radius: 15px;

    /* Approx 400x265 px for desktop screen*/
    height: 30vh;
    width: 45vh;
}

@media screen and (min-width: 768px) {



}

@media screen and (max-width: 767px) {



}

.swiper-container-placeholder {
    border-radius: 15px;
    height: 270px;
    width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {}

.swiper-slide {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    /* height: 100%; */
}

/* Not part of official API */
/* .swiper-button-container {
    flex: 0;
    background-color: black;
    border: 1px black solid;
    z-index: 12;
    position: absolute;
    bottom: 10px;
    right: 10px;
} */

.swiper-button-next {
    background-color: blue;
    color: white;
    padding: 30px;
    border-radius: 15px;
}

.swiper-button-prev {
    background-color: blue;
    color: white;
    padding: 30px;
    border-radius: 15px;
}

.swiper-pagination {

    flex: 0;
    display: flex;
    flex-direction: row;

    /* Overriding defaults */
    position: initial;
}

.swiper-pagination-bullet {
    background: rgb(255, 255, 255);
    opacity: 0.6;
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
}

.swiper-pagination-bullet-active {
    background-color: blue;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
}

.swiper-button-prev {
    margin-right: 5px;

    /* Overriding defaults */
    position: initial;
    padding: 20px !important;
    margin-top: 0px;
}

.swiper-button-next {

    /* Overriding defaults */
    position: initial;
    padding: 20px !important;
    margin-top: 0px;
}

.swiper-button-prev:after {
    /* Overriding defaults */
    content: "";
}

.swiper-button-next:after {
    /* Overriding defaults */
    content: "";
}

/* Not part of official API */
.next-prev-buttons{
    display: flex;
    flex: 0;
    flex-direction: row;
}

.swiper-funcs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 0;

    /* To even it out with the padded text*/
    padding-right:10px;
    padding-left: 10px;
}

.swiper-footer {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}