
/*  blau = #3c468c   */

body , html {
    min-height:100%;
    height:100%;
    width: 100%;
    margin:0px;
    padding:0px;
    background-color: rgba(230,230,230,1);
    font-family: 'Roboto', sans-serif;
    font-weight:400;
    line-height: 1.4;
    color: #3c468c;
    /*
    -webkit-text-size-adjust: 100%;
		*/
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

.page {
  position: relative;
  width:100%;
  border: 1px dotted rgba(60,70,140,0);
}

.page.page-login {
  width: calc(100% - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
}

.bg-white {
  background-color: white;
}

.bg-white-alpha {
  background-color:rgba(255,255,255,0.5);
}

.indent {
  margin: 24px;
}

.rounded-corners {
  border-radius: 23px;
}

.block {
  width: calc(100% - 48px);
  max-width: 940px;
  margin: 0 auto;
  margin-top: 42px;
  border: 1px dotted transparent;
}
.page.edit .block {
  max-width: 640px;
}


.line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid  rgba(60,70,140,0.7); 
  background-color: rgba(60,70,140,0);
}
.line.add-new {
  justify-content: flex-end;
  border-bottom: 1px solid  rgba(60,70,140,0.7); 
  padding-bottom: 12px;
}

.line a:nth-child(1) {
  width: calc(35% - 30px);
}
.line a:nth-child(2) {
  width: calc(35% - 30px);
}
.line a:nth-child(3) {
  width: calc(30% - 30px);
  background-color: rgba(60,0,0,0);
}
.line.add-new a:nth-child(1) {
  width: unset; 
}

.detail {
  width: 100%;
}

a {
  text-decoration: none;
  color: #3c468c;
}

.icon {
  display: block;
  width: 30px;
  background-color: rgba(60,70,140,0);
  color: #000000;
  text-decoration: none;
}
.icon.eye {
  width: 36px;
}
.icon.hammer {
  width: 34px;
}
.icon.trash {
  width: 20px;
}

.detail {
  max-height:0px;
  color: rgba(0,0,0,0.7);
  overflow: hidden;
}

.detail.open {
  max-height:10000px;
	animation: openDetails;
  animation-duration: 1000ms;
}

@keyframes openDetails {
  0% { 
    max-height:0px;
  }
  100% { 
    max-height:500px; 
  }
}
.detail.close {
  max-height:0px;
	animation: closeDetails;
  animation-duration: 300ms;
}

@keyframes closeDetails {
  0% { 
    max-height:300px;
  }
  100% { 
    max-height:0px; 
  }
}

.splitter-line {
  height: 24px;
  margin-top: 24px;
  overflow: hidden;
  border-top: 1px solid #cccccc;
}

.color-notice {
  color: #666666;
}


input[type="text"],
input[type="password"],
textarea {
	-webkit-appearance: none;
}


input[type="button"], 
input[type="reset"], 
input[type="submit"] {
  cursor:pointer;
}

input:focus, textarea:focus, select:focus{
  outline: none !important;
}

input, 
textarea {
  min-height:48px;
  border:1px solid #FFFFFF;
  padding:0px;
  padding-left:12px;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  margin:8px 0px 15px 0px;
}

.login-wrapper, 
.block-artist-list, 
.page.edit .block {
  margin-bottom: 42px;
}
.login-wrapper input {
  width: 240px;
}
.login-wrapper input.button {
  width: 254px;
  margin-top: 42px;
}


input.button {
  padding-left: 0px;
}
.edit-block input.button {
  padding-left: 12px;
  padding-right: 12px;
}
input.button-blue {
  background-color: rgba(60,70,140,1);
  border-color: rgba(60,70,140,1);
  color: white;
}
input.button-clear {
  border-color: rgba(60,70,140,1);
  color: rgba(60,70,140,1);
}



.search-block {
  display: flex;
}

.search-block .wrapper-select {       /* wrapper for selects */
  width: calc(35% - 24px);
  border-top:0px solid blue;
  margin:0px 24px 0px 0px;
}
.search-block .wrapper-drei {
  width: calc(15%);
  margin:0px 20px 0px 0px;
}
.search-block .wrapper-vier {
  width: calc(15%);
  margin:0px 0px 0px 0px;
}
.search-block .wrapper-select input.search-word {
  width: calc(100% - 13px);
}

.wrapper-select input.button {
  width: 100%;
}

.wrapper-select select {
  display:none;
}
.wrapper-select .simpleselect {
  border-top:8px solid transparent;
}
.wrapper-select.noborder .simpleselect {
  border-top:0px none;
}

.edit-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.edit-block h2 {
  width: 100%;
}

textarea {
  width: 100%;
  min-height: 240px;
  padding-top: 12px;
}

textarea.low {
  min-height: 90px;
}

.width-20 {
  width: 80px;
}
.width-40 {
  width: calc(100% - 118px);
}
.width-50 {
  width: calc(50% - 26px);
}

.icon-logout {
  position: absolute;
  top: 6px;
  left: 6px;
  display:block;
  background-image: url(../images/symbols/Symbol_logged-blue.svg);
  background-size: 100% auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px; 
}

@media screen and (max-width: 659px) {
 
  .login-wrapper {
    width: calc(100% - 48px);
  } 
  .login-wrapper input {
    width: calc(100% - 14px);
  }
  .login-wrapper input.button {
    width: calc(100%);
    margin-top: 42px;
  }
  
  .line {
    justify-content: flex-start;
  }
  .line a:nth-child(1), 
  .line a:nth-child(2), 
  .line a:nth-child(3) {
    width: calc(100%);
    margin-bottom: 5px;
    padding-top: 6px;
  }
  .icon.eye, 
  .icon.hammer, 
  .icon.trash {
    width: 60px;
  }
  .search-block {
    display: flex;
    flex-wrap: wrap;
  }
  .search-block .wrapper-select {       /* wrapper for selects */
    width: calc(100%);
    margin:0px 0px 0px 0px;
  }
  .search-block .wrapper-drei {
    width: calc(50% - 9px);
  }
  .search-block .wrapper-vier {
    width: calc(50% - 9px);
    margin-left: 18px;
  }
  .search-block .wrapper-select input.search-word {
    width: calc(100% - 13px);
    margin-top: 21px;
  }
  
  .width-20 {
    width: 80px;
  }
  .width-40 {
    width: calc(100% - 118px);
  }
  .width-50 {
    width: calc(100%);
  }
  textarea {
    min-height: 120px;
  }
  
  .edit-block .button-clear, 
  .edit-block .button-blue {
    width: calc(50% - 10px);
  }
  .icon-logout {
    top: 4px;
    left: 2px;
    height: 22px;
    width: 22px; 
  }
}
