.audio-recording-container-two {
    /* width: 100%;
    height: 100vh; */
    /* view port height*/
    /*targeting Chrome & Safari*/
    /* display: -webkit-flex; */
    /*targeting IE10*/
    /* display: -ms-flex;
    display: flex;
    flex-direction: column;
    justify-content: center; */
    /*horizontal centering*/
    /* align-items: center; */
}
.start-recording-button-two {
    font-size: 40px;
    color: gray;
    cursor: pointer;
    opacity: .8;
    margin-bottom: 30px;
}
.start-recording-button-two:hover {
    opacity: 1;
}
.recording-contorl-buttons-container-two {
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    justify-content: space-evenly;
    /*horizontal centering*/
    align-items: center;
    width: 334px;
    margin-bottom: 30px;
}
.cancel-recording-button-two,
.stop-recording-button-two {
    font-size: 40px;
    cursor: pointer;
}
.cancel-recording-button-two {
    color: gray;
    opacity: 0.7;
}
.cancel-recording-button-two:hover {
    color: rgb(100, 100, 100);
}
.stop-recording-button-two {
    color: #33cc33;
    opacity: 0.7;
}
.stop-recording-button-two:hover {
    color: #27a527;
}
.recording-elapsed-time-two {
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    justify-content: center;
    /*horizontal centering*/
    align-items: center;
}
.red-recording-dot-two {
    font-size: 25px;
    color: gray;
    margin-right: 12px;
    /*transitions with Firefox, IE and Opera Support browser support*/
    animation-name: flashing-recording-dot-two;
    -webkit-animation-name: flashing-recording-dot-two;
    -moz-animation-name: flashing-recording-dot-two;
    -o-animation-name: flashing-recording-dot-two;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
}
/* The animation code */
@keyframes flashing-recording-dot-two {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes flashing-recording-dot-two {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes flashing-recording-dot-two {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes flashing-recording-dot-two {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.elapsed-time-two {
    font-size: 32px;
}
.recording-contorl-buttons-container-two.hide-two {
    display: none;
}
.overlay-two {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(82, 76, 76, 0.35);
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    justify-content: center;
    /*horizontal centering*/
    align-items: center;
}
.overlay-two.hide-two {
    display: none;
}
.browser-not-supporting-audio-recording-box-two {
    /*targeting Chrome & Safari*/
    display: -webkit-flex;
    /*targeting IE10*/
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*horizontal centering*/
    align-items: center;
    width: 317px;
    height: 119px;
    background-color: red;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
}
.close-browser-not-supported-box-two {
    cursor: pointer;
    background-color: #abc1c05c;
    border-radius: 10px;
    font-size: 16px;
    border: none;
}
.close-browser-not-supported-box-two:hover {
    background-color: #92a5a45c;
}
.close-browser-not-supported-box-two:focus {
    outline: none;
    border: none;
}
.audio-element-two.hide-two {
    display: none;
}
.text-indication-of-audio-playing-container-two {
    height: 20px;
}
.text-indication-of-audio-playing-two {
    font-size: 20px;
}
.text-indication-of-audio-playing-two.hide-two {
    display: none;
}
/* 3 Dots animation*/
.text-indication-of-audio-playing-two span {
    /*transitions with Firefox, IE and Opera Support browser support*/
    animation-name: blinking-dot-two;
    -webkit-animation-name: blinking-dot-two;
    -moz-animation-name: blinking-dot-two;
    -o-animation-name: blinking-dot-two;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
}
.text-indication-of-audio-playing-two span:nth-child(2) {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
}
.text-indication-of-audio-playing-two span:nth-child(3) {
    animation-delay: .8s;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
}
/* The animation code */
@keyframes blinking-dot-two {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* The animation code */
@-webkit-keyframes blinking-dot-two {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* The animation code */
@-moz-keyframes blinking-dot-two {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* The animation code */
@-o-keyframes blinking-dot-two {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}