﻿*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    height: 100%;
}

.preloader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999;
}

.loader{
    position: absolute;
    left: 47.5%;
    top: 47.5%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 10px solid rgb(95, 205, 212);
    border-top: 10px solid transparent;
    animation-name: loader;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes loader{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

.wrapper{
    width: 700px;
    max-height: 200px;
    margin: 0 auto;
	display:none;
}

.activityContainer{
    width: 100%;
    height: 100%;
    user-select: none;
    margin-top: 20px;
}

.activityContainer>div{
    margin-bottom: 26px;
}

.activityContainer>div{
    display: flex;
    align-items: baseline;
}

.activityContainer button{
    margin: 0 5px;
    cursor: pointer;
    border: none;
    background: none;
}

.activityContainer button:focus{
	outline:3px solid #000;
}

.activityContainer .singleAlphabets button>img{
    width: 100%;
    height: auto;
}

.activityContainer .downView{
    position: relative;
    top: 9px;
}

.activityContainer button img{
    float: left;
    height: 37px;
    margin-right: 2px;
}

.mixedAlphabets{
    width: 82%;
    margin: 0 auto;
}

.mixedAlphabets button, .longAlphabets button{
    margin: 0 10px;
}

.mixedAlphabets button img, .longAlphabets button img{
    width: 100%;
    height: auto;
    margin: 0;
}

.longAlphabets button:nth-child(1), .longAlphabets button:nth-child(2){
    position: relative;
    top: 15px;
}