@font-face {
    font-family: Frutiger LT Pro, Rockwell Std, Caslon, Ergo LT Pro;
    src: url(../fonts/FrutigerLTPro-Black.otf);
    src: url(../fonts/RockwellStd-BoldItalic.otf);
    src: url(../fonts/Caslon224Std-Book.otf);
    src: url(../fonts/ErgoLTPro-Compressed.otf)
}


html,
body {
    /* font-family: Frutiger LT Pro, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    margin: 0;
    overflow: hidden;
    height: 100%;

}

.emoji-size {
    height: 25px;
    padding-bottom: 5px;
    padding-left:3px;
}

.ext-links {
    margin-left: 0;
    margin-right: 0;
}

.btn-info {
    background-color: #138294 !important;
    border: 1px solid #34bad0;
    color: #fff
}

.btn-info:hover {
    background-color: #34bad0 !important;
    color: #000000;
}

body {
    background: linear-gradient(#ffd65c, white) no-repeat;
    overflow-y: visible;

}


.container {
    /* height: 100%; */
    border: 20px solid black;
    border-radius: 20px;
    z-index: 0;
    background-color: lightblue;
    /* overflow-y: scroll; */
}

.title {
    font-family: Ergo LT Pro, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: center;
    color: #003A71;
    font-size: 3rem;
    font-weight: bold;
    padding-left: 10%;
    padding-right: 10%;

}



.flexwrapper {
    display: flex;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    background-color: #085EAA;
    /* position: fixed; */
    width: 1100px;
}



h2 {
    padding-top: 0.75rem;
    color: white;
}

.iconsize {
    margin-left: 1rem;
    margin-right: 1rem;
    max-height: 40px;
    max-width: 40px;
}

.image-position {
    display: flex;
    justify-content: flex-end;
}

.circle-border {
    border-radius: 50%;
}

.flexcolwrapper {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    align-items: center;
    padding: 5rem;
    flex-wrap: nowrap;

}



.sender {
    position: relative;
    border-radius: .4em;
    max-width: 450px;
    padding: 0.5rem;
    margin: 0.5rem;
    background-color: white;
    align-self: flex-start;
    animation-name: bounceIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.sender:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-right-color: white;
    border-left: 0;
    border-bottom: 0;
    margin-top: -10px;
    margin-left: -20px;

}

.receiver {
    position: relative;
    border-radius: .4em;
    max-width: 450px;
    padding: 0.5rem;
    margin: 0.5rem;
    background-color: #fff4bc;
    align-self: flex-end;
    animation-name: bounceIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

.receiver::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-left-color: #fff4bc;
    border-right: 0;
    border-bottom: 0;
    margin-top: -10px;
    margin-right: -20px;

}

/* this is groupp */
.brg-wrap {
    transform: translate(90%, -100%);
    position: fixed;
    display: flex;
    justify-content: flex-start;
    z-index: 1;
    /* overflow-x: hidden; */
    /* border: 1px solid #000; */
}

.brg {
    /* position:fixed; */
    transform: translateX(-50%);
    width: 20%;
    height: 20%;
    overflow: hidden;
    overflow-x: hidden;

}

.fadeOutRight {
    animation-name: fadeOutRight;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;

}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 3;
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 3;
}

.rd_w {
    max-width: 50%;
}

.blanc {
    background-color: #fff;
}

.mt-pad {
    padding-top: 5rem;
    padding-left: 2rem;
  }

  .prominent {
      color: #bc3e31;
  }

  ol.blue > li {
    color: #406098;
    margin: 1rem;
    margin-left: 0;
  }

/* end group */


@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
        -webkit-transform: translate3d(100%, 0, 0);
    }
}



@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.audioPlayerContainer {
    display: none;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.videoPlayerContainer {
    display: none;
    width: 100%;
    height: 95vh;
}

#audioPlayerSpp {
    justify-self: center;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

.rotate-me {
    transform: rotate(180deg)
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-duration: 1s;
    animation-fill-mode: forward;
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    animation-timing-function: ease-out;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}




@media(max-width:1200px) {

    .flexwrapper {
        width: 920px;
    }
}

@media(max-width:992px) {
    .flexwrapper {
        width: 680px;
    }

}

@media(max-width:768px) {

    .flexcolwrapper {
        padding: 1rem;
        padding-top: 8vh;
    }

    .title {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

@media(max-width:1024px) {

    .title {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media(max-width:576px) {
    .flexwrapper {
        width: calc(100vw - 40px);
    }
}



@media(max-width:420px) {

    .sms-name,
    .title {
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .flexcolwrapper {
        padding: 0.7rem;
        padding-top: 8vh;
    }
}

@media(max-width:375px) {

    .sms-name,
    .title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .iconsize {
        margin-left: 1rem;
        margin-right: 1rem;
        max-height: 30px;
        max-width: 30px;
    }
}