body {
    height: 100%;
    background-color: #201f22;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23575a61' fill-opacity='0.43' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.ui.container {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.ui.container.hidden {
    display: none !important;
}

.hidden {
    display: none !important;
}


.main-container {
    padding: 30px;
		//margin: 20px 0;
		display: flex;
    flex-direction: row;
    border: none;
    border-radius: .28571429rem;
    box-shadow: 0 1px 3px 0 #D4D4D5, 0 0 0 1px #D4D4D5;
    background: white;
}

.left-container {
    width: 75%;
    padding: 10px;
}

#show-data {
	max-width: 100%;
}

.left-container > h2 {
    color: #2185D0;
}

.right-container {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding: 50px 0 0 0;
    align-self: flex-end;
}

.right-container > button {
    margin-bottom: 15px !important;
}

.navigation-controllers {
    text-align: right;
}


@media all and (max-width: 580px){
	.main-container {
		padding: 10px;
		flex-direction: column;
    margin: 0;
    border-radius: 0;
	}

	.left-container {
		width: 100%;
    padding: 0;
	}

	.left-container > div {
		max-height: none !important;
		min-height: 0 !important;
	}

	.right-container {
		width: 100%;
		padding: 0;
	}

	#show-data,
	.ui.container {
		max-width: 100%;
		height: auto !important;
	}

  .navigation-controllers {
		padding-bottom: 20px;
}

}

@media all and (max-height: 580px){
	.ui.container {
		max-width: 100%;
		height: auto !important;
    margin: 0 !important;
	}
}

.navigation-controllers .timer{
    float: left;
    padding-top: 10px;
		margin: 0px;
    color: white;
}

#review-data {
   display: none; 
}

@media screen and (min-width: 1200px) {
    .ui.container {
        width: 900px;
    }
}










.main-container.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

		background-color: #1B1C1D;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23575a61' fill-opacity='0.43' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    box-shadow: none;
}


.main-container.login.hidden {
    display: none !important;
}


.ui.container.login {
    height: auto;
    width: 400px;
}


.ui.container.text-container.login {
    width: 700px !important;
}

.ui.form {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}


.ui.form .field > label {
    color: white;
}


.ui.header {
    color: white;
    text-align: center;
}


.blinking {
  -webkit-animation: blink1 1s linear infinite;
  animation: blink1 1s linear infinite;
	
}
@-webkit-keyframes blink1 {
  0% { color: rgba(34, 34, 34, 1); }
  50% { color: rgba(34, 34, 34, 0); }
  100% { color: rgba(34, 34, 34, 1); }
}
@keyframes blink1 {
  0% { color: rgba(34, 34, 34, 1); }
  50% { color: rgba(34, 34, 34, 0); }
  100% { color: rgba(34, 34, 34, 1); }
}
