body {
    background: black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: scroll;
    height: auto;
    position: relative !important;
    min-height: 100%;

}

html {
    position: relative;
    scroll-behavior: smooth;
}

option{
    color:black;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.msg-top {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: sticky;
    top: 0;
    background-color: rgba(42, 42, 42, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    cursor: pointer;
}



.msg-av img {
    width: 60px;
    border-radius: 60px;
}

.msg-av {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
}


.msg-top-left,
.msg-top-right svg {
    height: 30px;
    width: 30px;
    margin-top: -10px;
}

.msg-content {
    color: white;
    padding: 10px 0;
    min-height: 636px;
}

.msg-left {
    background: #3574de;
    padding: 12px 18px;
    border-radius: 20px;
    margin: 7px 12px;
    max-width: 75%;
    font-size: 16px;
    align-self: self-end;
}

.msg-right {
    background: #262629;
    padding: 12px 18px;
    border-radius: 20px;
    margin: 7px 12px;
    max-width: 75%;
    font-size: 16px;
    align-self: self-start;
}

.msg-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    width: 100%;
    position: relative;
}


.msg-date {
    font-size: 13px;
    opacity: .5;
    margin-bottom: 4px;
}

.msg-bottom {
    height: 80px;
    background-color: rgba(42, 42, 42, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 10px;
    transition: all .4s ease-in-out;
    overflow: hidden;
    z-index: 10;
}

.bottom-pannel {
    transition: all .4s ease-in-out;
}

.bottom-pannel.off {
    transform: translateY(80px);
}


.msg-input-wrapper {
    background: transparent;
    flex: 1;
    border-radius: 30px;
    height: 40px;
    outline: none;
    border: 1px solid #7b7b7b;
    color: white;
    padding: 0 20px;
    font-size: 16px;
    position: relative;
    transition: all .4s ease;
    width: 100%;
}

#code {
    background: transparent;

    flex: 1;
    border-radius: 30px;
    height: 40px;
    outline: none;
    border: 1px solid #7b7b7b;
    color: white;
    font-size: 14px;
    position: relative;
    transition: all .4s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 12px;
    padding-right: 12px;
}

.code-wrapper {
    position: relative;
    margin-right: 10px;

}

.code-wrapper:after {
    content: "";
    background-image: url('../img/chevron-white.svg');
    position: absolute;
    width: 14px;
    height: 14px;
    right: 8px;
    top: 13px;
    pointer-events: none;
}

.msg-input-wrapper:focus {
    border: 1px solid #fff;
}

.input-last,
.input-optin,
.input-tel,
.input-mail {
    display: flex;
    justify-content: center;
    align-items: center;
}

.msg-cam {
    width: 36px;
    margin-right: 15px;
    margin-left: 10px;
    opacity: .5;
}

.msg-submit {
    position: relative;
    right: 3px;
    top: 1px;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    transition: all .4s ease;
}

.msg-submit:hover {
    background: #3574de;
}

.msg-submit svg {
    transition: all .4s ease;
}

.msg-submit:hover svg {
    stroke: white;
}


.msg-submit svg {
    height: 26px;
    width: 26px;
}



.hide {
    display: none;
}

.msg-optin {
    color: grey;
    font-size: 18px;
    height: 40px;
    border: 1px solid grey;
    padding: 0 20px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    cursor: pointer;
    transition: all .4s ease;
}

.msg-optin:hover {
    color: white;
    border: 1px solid white;
}

.msg-right a {
    color: #83b1fe;
}

.sendinblue{
    display: none;
    position: relative;
}

.select {
    color: #83b1fe;
    cursor: pointer;
    transition: all .4s ease;
    user-select: text !important;
}

.select:hover {
    color:white;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: #3574de;
}

::selection {
    color: white;
    background: #3574de;
}


.copied {
    position: absolute;
    z-index: 2;
    background: black;
    padding: 8px 15px;
    color: orange;
    border-radius: 10px;
    left: 109px;
    bottom: 31px;
    opacity: 0;
    pointer-events: none;
    transform: scale(.8);
    transition: all .6s ease-in-out;
}

.copied.active {
    opacity: 1;
    transform: scale(1);

}

.select.copy {
    color: grey;
}

@media (max-height:795px){
    .msg-bottom {
        height: 60px;
    }
}