body {
    color: #181244;
    background-color: #f8f8fb;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin: 5px;
}

.root{
    width: 100%;
}

.ui-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
}

.logo{
    padding: 8px 0px 0px 6px ;
    width: 109px;
    height: 18px;
}

.select-version {
    text-align: center;
    width: 109px;
    height: 30px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
}

.ui-column {
    width: 50%;
    position: relative;

}

.params-row {
    width: 100%;
    display: flex;
}

.params-container {
    padding: 15 50 0 25;
}

.session-jwt {
    width: 100%;
    height: 32px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
    padding: 5px;
}

.select-device-container {
    flex: 30%;
}

.select-device {
    width: 100%;
    height: 36px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
}

.access-token-jwt-container {
    flex: 70%;
}

.session-jwt {
    width: 100%;
    height: 24px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
    padding: 5px;
}

.session-jwt-container{
    flex: 70%;
}

.access-token-jwt {
    width: 100%;
    height: 28px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
    padding: 5px;
}

.location-container {
    flex: 70%;
}

.location {
    width: 100%;
    height: 24px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    box-shadow: 1px 1px 4px #dbdbdb inset;
    padding: 5px;
}

.output-container{
    flex: 100%;
}

.output{
    width: 100%;
    height: 173px;
    background-color: white;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    overflow-wrap: anywhere;
    display: flex;
    padding: 5px;
    flex-direction: column;
    box-shadow: 1px 1px 7px #dbdbdb inset;
}

.selfie-delay-container{
    
}

.label-container{
    display: inline-block;
}

.label-text{
    display:block;
    padding-bottom: 6px;
}

.selfie-delay{
    width: 70px;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: #DDE2E5;
    height: 32px;
}

.float-right{
    clear: both;
    float: right;
}

.case-container{
    display: flex;
    justify-content: flex-start;
}

.liveness{
    font-family: 'Montserrat', sans-serif;
    position: relative;
    background-color: white;
    height: 33px;
    border-radius: 5px;
    border-style: none;
    cursor: pointer;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.liveness:disabled{
    background-color: #EFF0F2;
}

.liveness::after{
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: linear-gradient(to right, #1F1756, #3B5CCE);
    content: '';
    z-index: -1;
    border-radius: 5px;
}

.liveness:disabled::after{
    position: absolute;
    top: -2px; bottom: -2px;
    left: -2px; right: -2px;
    background: #EFF0F2;
    content: '';
    z-index: -1;
    border-radius: 5px;
}

.video-buttons{
    position:relative; 
    display: flex; 
    flex-direction: column; 
    margin-left: -100; 
    justify-content: center;
}

.video-button{
    cursor: pointer;
}

.cases-row{
    padding: 25 50 0 50; 
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header{
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: solid 1px #EAEAEA;
}

.name-icon-container{
    background-color: white;
    text-transform: uppercase;
    font-family: "Lucida Console";
    align-items:center;
    color: #F2C94C;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    font-size: 16px;
    vertical-align: middle;
    margin: 0 10px 0 0;
    border: solid 2px #F3F3F3;
}

.name-icon{
    width:max-content;
    font-style: normal;
    margin: 0 auto;
}