@import url('https://fonts.googleapis.com/css?family=PT+Sans|Raleway');
@import url('https://fonts.googleapis.com/css?family=Roboto&subset=cyrillic');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  /*font-family: 'Raleway', sans-serif;*/
  font-family: Roboto;
  background: #f4f4f4;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header_dropzone{
  height: 53px;
}

.header_dropzone .container{
  width: 100%;
}

nav {
  font-family: 'PT Sans', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  background: #333;
}

nav .container {
  display: flex;
}

nav .nav__left {
  flex-grow: 3;
  display: flex;
}

nav .nav__right {
  flex-grow: 2;
  display: flex;
  flex-direction: row-reverse;
}

nav li {
  display: block;
  padding: 10px 10px;
  transition: all 150ms ease-out;
}

nav li a:hover {
  text-decoration: none;
  color: #A6A6A6;
}

nav li a:focus {
  text-decoration: none;
}

nav li a i  {
  margin-right: 4px;
}

.title h1 {
  text-align: center;
}

.title {
  padding: 10px 0;
  border-bottom: 2px solid #F5F5F5;
}

button.button {
  background: #EFDB06;
  border: 1px solid #F9E610;
  border-radius: 20px;
  padding: 10px 15px;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 200ms ease-out;
  outline: none;
}

button.button:hover {
  background: #F9E610;
}

button.button.disabled {
  background: #F9E610;
  opacity: 0.6;
  cursor: default;
}

button.button.button-danger {
  background: #FF3333;
  border: 1px solid #FF4747;
  color: #fff;
}

button.button.button-danger:hover {
  background: #FF4747;
}

.new-button {
  display: flex;
  flex-direction: row-reverse;
}

.form-control:focus {
  border-color: #F9E610;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(249, 230, 16, 0.6);
}

.form-control.error {
  border-color: #FF3333;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 71, 71, 0.6);
}


/*Form popup*/

/** {
    box-sizing: border-box;
}
*/
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    transition: opacity .3s ease;
}

.modal-container {
    width: 400px;
    margin: 200px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-container textarea{
    resize: none;
}


.modal-header h3 {
    margin-top: 0;
}

.modal-body {
    margin: 20px 0;
}

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

.form-label {
    display: block;
    margin-bottom: 1em;
}

.form-label > .form-control {
    margin-top: 0.5em;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    line-height: 1.5;
    border: 1px solid #ddd;
}

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
