* {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .post-carousel-container{
        position: relative;
    }

    .post-slides-container {
        position: relative;
    }

    .post-slide {
        display: none;
    }

    .post-slide>img{
        display: block;
        width: 100%;
		margin: 0 !important;
    }

    .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
    }



    .post-active{
        display: block;
    }

    .post-bottom-panel{
        width: 35px;
        height: 35px;
        position: absolute;
        top: 50%;
		margin: 10px;
        transform: translateY(-50%)
    }

    .post-bottom-panel>img{
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 50%;
        padding: 2px;
		margin: 0 !important;
    }

    .post-previous{
        left: 0;
    }
    .post-next{
        right: 0;
    }

    .post-caption{
        width: 100%;
        padding: 2.5%;
        position: absolute;
        bottom: 0;
        color: white;
        background: rgba(30, 94, 158, 0.568627);
        font-size: 30px;
        text-align: center;
    }



    @media only screen and (max-width: 1440px) {
        .post-caption {
            font-size: 20px;
        }
    }

    @media only screen and (max-width: 1024px) {
        .post-caption {
            font-size: 16px;
        }
    }

    @media only screen and (max-width: 375px) {
        .post-caption {
            font-size: 12px;
        }
    }