

.dother {
	font-family: 'Cormorant SC', serif;
	display: inline;
	padding: 20px;
	padding-bottom: 20px;
	font-size: 30px;
	width: 100%;
}

a:link { 
    text-decoration: none; /* Убирает подчеркивание для ссылок */
    color:black;
   } 
   a:visited { text-decoration: none;
       color:black; } 
   a:active { text-decoration: none;
       color:black; }

li {
	width: 100%;
}

#input {
	width: 100%;
	font-size: 30px;
	font-family: 'Cormorant SC', serif;
	border-color: grey;	
}

#input:active {
	border-color: none;
}

button {
	font-size: 20px;
	font-family: 'Cormorant SC', serif;
	height: 50px;
	width: 150px;
	background-color: white;
	margin-top: 20px;	
}

#input,
textarea,
[contenteditable] {
  caret-color: transparent;
}

::grammar-error {
  color: inherit;
  background-color: #fff;
}

::spelling-error {
  color: inherit;
  background-color: #fff;
}

#were {
	padding: 10px;
	font-size: 20px;
	font-family: 'Nanum Gothic', sans-serif;
}

table {
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
text-align: left;
border-collapse: separate;
border-spacing: 5px;
background: #ECE9E0;
color: #656665;
border: 16px solid #ECE9E0;
border-radius: 20px;
margin-top: 20px;


}
th {
font-size: 18px;
padding: 10px;
}
td {
background: #F5D7BF;
padding: 10px;
}

.loaderArea {
  background: #ffffff;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  right:0;
  bottom:0;
  z-index: 100000;
}

.loader {
  height: 40px;
  width: 40px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
}
 
.loader:before,
.loader:after {
  content: "";
  height: 40px;
  width: 40px;
  border: 8px solid rgba(255,255,255,.5);
  border-radius: 10px;
  position: absolute;
  top: 0;
}
 
.loader:before {
  animation: animate 2s infinite linear;
}
 
@keyframes animate {
  0% {
    transform: rotate(0) skew(0);
  }
   
  100% {
    transform: rotate(180deg) skew(360deg);
  }
}
 
 
.loader:after {
  animation: animate2 2s infinite linear;
}
 
@keyframes animate2 {
  0% {
    transform: rotate(0) skew(0);
  }
   
  100% {
    transform: rotate(-180deg) skew(-360deg);
  }
}

.form-control {
    display: block;
    width: 90%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 16px solid #ECE9E0;
	border-radius: 20px;
	outline: none;
    }

