.iframe {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
    border-color: rgba(0,0,0,0)
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}


.chat-global {
    width: 90%;
    height: 90%;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 30px 70px 0px rgba(0,0,0,0.2);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    position: relative;
    top: 50px;
}

.nav-top {
    position: relative;
    background: #fff;
    top: 0px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(51,51,51,0.2);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.location {
    width: 100px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
}
.location img {
    width: 30px;
    margin-left: 10px;
}
.location a {
    color: #000;
    text-decoration: none;
    text-transform: lowercase;
    font-size: 20px;
    margin-left: 5px;
}

.utilisateur {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.utilisateur p:nth-child(1){
    font-size: 20px;
}
.utilisateur p:nth-child(2){
    font-size: 14px;
    opacity: 0.8;
}

.logos-call {
    width: 100px;
    display: flex;
}
.logos-call img {
    margin-right: 20px;
    width: 30px
}


/* **********CONVERSATION********** */

.conversation {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: auto;
}

.talk {
    height: auto;
    margin: 2px 0;
    color: #f1f1f1;
    display: none;
    align-items: center;
    font-size: 18px;
    width: 50%;

}
.talk img {
    position: absolute;
    width: 40px;
    border-radius: 50%;
    margin-bottom: auto;
}

.right img {
    position: static;
    margin-right: auto;
}
.talk p {
    padding: 15px;
    line-height: 20px;
    border-radius: 20px;
    height: auto;
}
.right {
    margin-left: auto;
}
.right p {
    margin-left: auto;
    margin-right: 10px;
    background:#0078FF;
}
.left p {
    margin-left: 50px;
    background: rgb(216,216,216);
    color: #000;
}

/* **********FORM********** */

.chat-form {
    flex-shrink: 0;
    width: 100%;
    height: 90px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-inputs-stuffs {
    background: #fff;
    display: flex;
    width: 90%;
    height: 60px;
    border-radius: 9999px;
}

.group-inp {
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.group-inp img {
    width: 30px;
}
.group-inp textarea {
    resize: none;
    border: none;
    outline: none;
    padding-left: 10px;
    font-size: 16px;
    width: 100%;
    height: 40px;
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.files-logo-cont {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding-left: 10px;
    display: block;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.files-logo-cont img {
    width: 30px;
}

.submit-msg-btn {
    background: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    width: 70px;
    border: none;
    display: flex;
    padding-right: 5px;
    justify-content: center;
    align-items: center;
}

.submit-msg-btn img {
    width: 30px;
}

@-webkit-keyframes chat-global {0% {-webkit-transform: scale(1);transform: scale(1);opacity: 1;}100% {-webkit-transform: scale(0);transform: scale(0);opacity: 1;}}
@keyframes chat-global {0% {-webkit-transform: scale(1);transform: scale(1);opacity: 1;}100% {-webkit-transform: scale(0);transform: scale(0);opacity: 1;}}
/*
#chat-global {animation: chat-global 2s cubic-bezier(0.550, 0.085, 0.680, 0.530) normal both;}