.example{
    flex: 1;
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;
    padding: 10px;
    
}
.img-view{
    border-radius: 10px;
    min-height: 300px;
    max-width: 400px;
    flex: 1;
    box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.2);
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */

}

.flow{
    background: url('../images/logoFlow.png') no-repeat center;
    background-size: contain;
    background-color: #6a5acd;    
}
.arrived{
    background: url('../images/flowArrived.jpeg') no-repeat left;
    background-size: cover;
    min-height: 200;
    max-width: 600px;
    
}
.checkinArrived{
    background: url('../images/portfolio-imgs/checkinArrived.png') no-repeat right;
    background-size: contain;
    min-height: 200;
    border-radius: 10px;
    background-color: transparent;
    max-width: 600px;
    box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0);
}


.iconsArrivedCheckin{
    background: url('../images/portfolio-imgs/checkinIconArrived.png') no-repeat left;
    background-size: contain;
    min-height: 70px;
    max-width: 70px;
}
.iconsArrivedSms{
    background: url('../images/portfolio-imgs/smsArrived.png') no-repeat left;
    background-size: contain;
    min-height: 70px;
    max-width: 70px;
}
.iconsArrivedAdmin{
    background: url('../images/portfolio-imgs/adminIconArrived.png') no-repeat left;
    background-size: contain;
    min-height: 70px;
    max-width: 70px;
}
.iconsArrivedInfo{
    background: url('../images/portfolio-imgs/infoIconArrived.png') no-repeat left;
    background-size: contain;
    min-height: 70px;
    max-width: 70px;
}
.text, .text-left{
    position: relative;
    padding: 10px;
    text-align: start;
    max-width: 400px;
    background: #ff9000;
    animation: fadeInDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s;
    margin: 5px; /* don't forget to set a duration! */
}
.swal2-modal,.swal2-container {
    min-height: 100%;
    width: 100%;
    height: auto;
    /* display: flex; */
    margin: 0;
}
.swal2-container{
    padding: 0;
}
.video{
    max-width: 500px;
    min-width: 300px;
    border-radius: 10px;
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}
.modal{
    background: #fff;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.swal2-content,.swal2-html-container{
    flex: 1;
    display: flex;
}
.text.text.no-arrow{
    background: #ff9000;
}

.text.no-arrow::before{
    border-width: 0px 0px 0px 0px;
}

.text::before{
    position: absolute;
    border-style: solid;
    border-color: #ff9000 transparent;
    border-width: 8px 0px 0px 8px;
    right: 100%;
    top: 0;
    content:'';
}

.text-left::before{
    position: absolute;
    border-style: solid;
    border-color: #ff9000 transparent;
    border-width: 8px 8px 0px 0px;
    left: 100%;
    top: 0;
    content:'';
}
.text-left + .text-left{
    margin-top: 30px;
}

@media  (max-width: 790px)
{
    .swal2-modal{
        padding: 5px;
    }
    .swal2-content{
        padding: 5px;
    }
    .example{
        position: relative;
        flex-direction: column;
        align-items: center;
        min-height: 500px;
    }
    .img-view{
        width: 100%;

    }
        
    .text, .text-left{
        font-size: 14px;
        background: transparent;
        text-align: center;
    }
    .text::before{
        border-width: 0px 8px 8px 8px;
        right: 50%;
        content:'';
    }
    .text-left::before{
        border-width: 8px 8px 0px 8px;
        
        content:'';   
        left: 50%;
        top: 95%;
        content:'';
    }
    
    .text-left + .text-left{
       
        margin-top: 0px;
        
    }
    .swal2-modal{
        margin: 5px !important;
    }
    .text-left + .text-left::before{
        border-width: 0px 8px 8px 8px;
        
        content:'';   
        left: 50%;
        top: 0;
        content:'';
        text-align: left;
    }
    .text-left{
        position: absolute;
    }

    .container-tool > .text-left {
        position: absolute;
        top: 0;
        left: 0;
    }
    .container-tool > .text-left + .text-left{
        position: absolute;
        bottom:0;
        left: 0;
        top:85%;
        text-align: left;
    }

    .arrived{
        position: absolute;
        top:23%;
    }
    .swal2-modal {
        width: 100%;
    }


}