@media only screen and (max-width: 700px) { /* mobily */	
	@keyframes click-box {
		0% {
            /*color: #8cb8c5;*/
            background-color: #72939c;					
		}		
		25% {
            /*color: #f0f0f0;*/
            background-color: #5f7d86;	
		}
		75% {
            background-color: #5f7d86;	
		}
		100% {
            background-color: #72939c;					
		}			
	}
	.inputs-btn button:active {
		animation-name: click-box;
		animation-duration: 2.0s;
	}
}

@media only screen and (min-width: 700px) { /* počítače */
    .inputs-btn button:hover {
        /*color: #8cb8c5;*/
        background-color: #5f7d86;
    }
}

.inputs-textinput {
    display: inline-flex;
    width: 100%;
    max-width: 500px;
    margin-top: 3px;
    background-color: #8cb8c5;
    border-radius: 5px;
    /*
    margin: auto;
    position: relative;
    top: -15%;
    */
}
.inputs-textinput-label {
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    background-color: #72939c;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    font-size: 30px;
    font-family: ubuntuB;
    color: #fbfbfb;
    /*
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px; 
    */
}

.inputs-textinput-input {
    width: calc(100% - 50px);
    height: 50px;
    border-width: 0px;
    padding: 0px;
    margin: 0px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #72939c;
    font-family: ubuntuM;
    font-size: 17px;
    color: #fbfbfb;
    text-indent: 10px;
}

.inputs-textinput-input:hover{
    background-color: #5f7d86;
}
.inputs-textinput-input:focus{
    outline: none;
    background-color: #5f7d86;
}

.inputs-textinput-input::placeholder{
    color: #dedede;
}

.inputs-btn {
    display: flex;
    margin-top: 3px;
}

.inputs-btn button {
    font-family: ubuntuB;
    font-size: 16px;
    margin-left: auto;
    height: 45px;
    width: 150px;
    background-color: #72939c;
    color: #fbfbfb;
    border-radius: 5px;
    border-width: 0px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inputs-btn-icon {
    display: block;
    height: 30px;
}