.al {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.al .header {
  position: relative;
  margin: 40px 0 20px 0;
  z-index: 30;
  width: 40%;
  min-width: 250px;
  animation: slide-in-up 0.3s ease-out 0.1s;
  -webkit-animation-fill-mode: backwards;
}
.al.willClose .header {
  animation: slide-out-up 0.3s ease-out 0.1s;
  -webkit-animation-fill-mode: backwards;
}
.al .files {
  margin: 20px 0 80px 0;
  width: 70%;
}
.al.modal .file {
  animation-name: zoom-in;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-duration: 0.4s;
  animation-delay: 0.05s;
}
.al.willClose .file {
  animation-name: fade-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.al .controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-basis: content;
  align-items: center;
  padding: 5px 30px!important;
}
.al .controls .button {
  margin-top: 0;
}

body {
  background-color: #3c3c3e;
  margin: 0;
  font-family: 'Roboto';
  font-size: 14px;
  letter-spacing: 0.03em;
}
.tb {
  display: none;
}
@media (max-width: 992px) {
  .tb {
    position: fixed;
    z-index: 16;
    height: 40px;
    width: 190px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    opacity: 0.6;
  }
  .tb:hover {
    opacity: 1;
  }
  .tb .menuToggle {
    display: block;
    width: 30px;
    height: 34px;
    margin: 10px 0 4px 15px;
    background-image: url(img/icons/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: 0.2s ease-out;
  }
  .tb .logo {
    margin: 15px 10px 5px 5px;
    color: #000000;
    font-size: 22px;
    font-weight: 300;
  }
}
@media (max-width: 500px) {
  .tb {
    position: fixed;
    z-index: 20;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    background-color: #3c3c3e;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.8);
    opacity: 1;
  }
  .tb .menuToggle {
    display: block;
    width: 30px;
    height: 34px;
    margin: 3px 0 4px 15px;
    background-image: url(img/icons/menu-w.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transition: 0.2s ease-out;
  }
  .tb .logo {
    margin: 10px 10px 5px 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
  }
}
.dz-zone {
  position: absolute;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  margin: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 0.6s ease-out;
}
.dz-title {
  font-size: 32px;
  color: #ffffff;
  font-weight: 300;
  animation: scale-in 0.3s ease-out;
}
.op.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.op.modal .title {
  margin: 10px;
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  animation: scale-in 0.3s ease-out;
}
.op.modal .text {
  font-size: 14px;
  text-align: center;
  max-width: 400px;
  line-height: 1.5;
  font-weight: 300;
  opacity: 0.6;
  color: #ffffff;
  animation: scale-in 0.3s ease-out;
}
.op.modal .controls {
  position: relative;
  background: none;
  border: none;
  left: none;
  width: auto;
  margin: 20px;
}
.op.modal .controls .button {
  margin: 0 5px;
  padding: 7px 25px;
}

.ct {
  position: fixed;
  width: calc(100% - 200px);
  left: 200px;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  /*padding: 0 20px 40px 0;
    margin: 0;*/
  padding: 0;
  background-color: #ffffff;
  box-shadow: -1px 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 1px 0 rgba(0, 0, 0, 0.15);
}
.ct .header {
  padding: 0;
  position: relative;
  z-index: 30;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.ct .header.alh .controls {
  position: relative;
  width: 50%;
  padding-bottom: 30px;
}
.ct .header .title {
  position: relative;
  display: inline-block;
  margin: 60px 20px 20px 20px;
  font-size: 32px;
  font-weight: 300;
}
.ct .header .title .checkboxWrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -40%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
}
.ct .header .title .checkboxWrapper input[type="checkbox"].favorites {
  -webkit-appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0 0 0 10px;
  transition: 0.2s ease-in;
  background-position: center;
  background-size: contain;
  background-image: url(img/icons/fav.svg);
  background-repeat: no-repeat;
  border: none;
  opacity: 0.4;
  transition: 0.2s ease-out;
}
.ct .header .title .checkboxWrapper input[type="checkbox"].favorites:hover {
  opacity: 1;
}
.ct .header .title .checkboxWrapper input[type="checkbox"].favorites:hover ~ label {
  opacity: 1;
  color: #999999;
}
.ct .header .title .checkboxWrapper input[type="checkbox"].favorites:focus {
  box-shadow: none;
}
.ct .header .title .checkboxWrapper input[type="checkbox"].favorites ~ label {
  font-size: 12px;
  color: #999999;
  font-weight: 300;
  margin: 2px 0 0 5px;
  line-height: 1.1;
  opacity: 0;
  transition: 0.3s ease-out;
}
.ct .header .title .checkboxWrapper input[type="checkbox"]:checked.favorites {
  -webkit-appearance: none;
  background-position: center;
  background-image: url(img/icons/fav-active.svg);
  opacity: 0.3;
}
.ct .header .title .checkboxWrapper input[type="checkbox"]:checked.favorites:hover {
  opacity: 0.8;
}
.ct .header .title .checkboxWrapper input[type="checkbox"]:checked.favorites:active {
  opacity: 1;
}
.ct .header .controls {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  margin: 10px 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.ct .header .controls .button {
  margin-right: 0;
  margin-left: 7px;
}
.ct .header .controls .transparentRed {
  margin-left: 20px;
}
@media (max-width: 992px) {
  .ct {
    left: 0;
    width: 100%;
    transition: 0.3s ease-out;
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .ct {
    top: 40px;
  }
  .ct .header {
    border-bottom: 1px solid #eeeeee;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
  }
  .ct .header .title {
    margin: 10px 20px;
    left: 0;
    top: 0;
    transform: none;
  }
}
.tabs {
  position: relative;
  border-radius: 2px;
  padding: 0;
  margin: 0;
  /*background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2), 0 0 1px 0 rgba(0,0,0,0.15);*/
}
.tabs .nav {
  position: relative;
  margin: 0;
  left: 0;
  top: 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: "";
}
.tabs .nav .mobileNav {
  display: none;
}
.tabs .nav ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 6px;
  cursor: default;
}
.tabs .nav ul li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin: 10px 8px 0 8px;
  padding: 0 10px 5px 10px;
  color: #555555;
}
.tabs .nav ul li::before,
.tabs .nav ul li::after {
  content: '';
  position: absolute;
  height: 2px;
  bottom: 0;
  width: 0;
  transition: 0.3s ease-out;
  background-color: #FF6700;
}
.tabs .nav ul li::before {
  right: 50%;
}
.tabs .nav ul li::after {
  left: 50%;
}
.tabs .nav ul li:hover {
  color: #000000;
}
.tabs .nav ul li.active {
  color: #FF6700;
}
.tabs .nav ul li.active::before,
.tabs .nav ul li.active::after {
  width: 50%;
}
.tabs .nav ul li .required {
  position: absolute;
  right: 0;
  top: -3px;
  padding: 0 0 3px 4px;
  font-size: 10px;
  font-weight: 400;
  color: #FF6700;
}
@media (max-width: 500px) {
  .tabs .nav {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .tabs .nav .mobileNav {
    display: block;
    position: relative;
    font-size: 18px;
    margin: 15px 20px;
    cursor: default;
  }
  .tabs .nav .mobileNav::after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 12px;
    height: 12px;
    margin: 0 0 0 7px;
    transform: translateY(-50%);
    content: '';
    background-image: url(img/icons/menu-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .tabs .nav ul {
    max-height: 0;
    transition: 0.4s ease-out;
  }
  .tabs .nav ul.open {
    display: block;
    background-color: #f8f8f8;
    position: relative;
    width: 100%;
    max-height: 100%;
    margin: 0;
  }
  .tabs .nav ul.open li {
    font-size: 16px;
    display: block;
    margin: 0;
    padding: 15px 20px;
    width: 100%;
  }
  .tabs .nav ul.open li.active {
    background-color: #eeeeee;
    border-bottom: none;
  }
  .tabs .nav ul.open li.active::before,
  .tabs .nav ul.open li.active::after {
    display: none;
  }
  .tabs .nav ul.open li .required {
    display: inline-block;
    position: relative;
    top: -0.6em;
  }
}
.tabs .tab {
  display: none;
  /*.section-title {
			position: relative;
			z-index: 1;
			margin: 0 0 10px 0;
			padding: 3px 0 0px 0;
			height: 100%!important;
			color: #bbbbbb;
			font-size: 13px;
			font-weight: 300;
			text-transform: uppercase;    
			border-bottom: 1px solid #eeeeee;    
		}
		.section:first-child .section-title {
			border: none;
			margin: 10px 0 0 0;
		}*/
}
.tabs .tab.active {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  padding: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  animation: slide-in-right 0.6s ease-out;
  animation-fill-mode: forwards;
}
.tabs .tab.active .controls {
  position: relative;
  z-index: 10;
  width: calc(100% - 40px);
  top: 0;
  margin: 15px 20px;
}
.tabs .tab.active .controls .button {
  padding: 6px 12px;
  margin: 0 5px 0 0;
}
.tabs .tab.active .controls .empty ~ .button,
.tabs .tab.active .controls .empty ~ .bulkSelect {
  opacity: 0.5;
  pointer-events: none;
}
.tabs .tab.active .controls .right {
  float: right;
}
.tabs .tab.active .controls #selectAll {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: none;
  border: 1px solid #bbbbbb;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  margin-right: 5px;
}
.tabs .tab.active .controls #selectAll:hover {
  border-color: #999999;
}
.tabs .tab.active .controls #selectAll:focus {
  outline: none;
}
.tabs .tab.active .controls #selectAll::after {
  position: absolute;
  content: "•";
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  color: #bbbbbb;
}
.tabs .tab.active .controls #selectAll.empty {
  border-color: #dddddd;
}
.tabs .tab.active .controls #selectAll.empty:hover {
  border-color: #bbbbbb;
}
.tabs .tab.active .controls #selectAll.empty::after {
  content: "";
}
.tabs .tab.active .controls #selectAll.all {
  border-color: #FF6700;
  background-color: #FF6700;
  background-position: center;
  background-image: url(img/icons/checkmark.svg);
  background-repeat: no-repeat;
}
.tabs .tab.active .controls #selectAll.all:hover {
  border-color: #db5900;
}
.tabs .tab.active .controls #selectAll.all::after {
  content: "";
}
.section-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.section-controls .addableField {
  width: 60%;
}

.textField {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
}
.textField:hover {
  border-color: #bbbbbb;
}
.textField:active,
.textField:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
label {
  opacity: 0.4;
}
label.requiered {
  opacity: 1;
}
label.requiered::after {
  content: ' *';
  color: #FF6714;
  padding-left: 2px;
}
.controls-group {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px;
}
.controls-group label {
  flex-basis: 15em;
  text-align: right;
  margin: 0 20px;
  padding: 0.6em 0 0.6em 0;
}
.controls-group input[type="text"] {
  flex-basis: 25em;
  margin-right: 10px;
}
@media (max-width: 500px) {
  .controls-group {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .controls-group label {
    flex-basis: auto;
    margin: 10px 15px 0 15px;
    font-size: 12px;
  }
  .controls-group input[type="text"],
  .controls-group textarea {
    flex-basis: auto!important;
    width: calc(100% - 40px);
    margin: 5px 10px;
  }
}
textarea,
input {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  background-color: #ffffff;
  resize: none;
}
textarea:hover,
input:hover {
  border-color: #bbbbbb;
}
textarea:active,
input:active,
textarea:focus,
input:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  font-weight: 300;
}
select {
  border: 1px solid #dddddd;
  border-radius: 2px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 7px 8px;
  font-size: 13px;
  transition: 0.3s ease-in;
  -webkit-appearance: none;
  background: url(img/icons/arrow.svg) no-repeat calc(90%) 50%;
}
select:hover {
  border-color: #cccccc;
  -webkit-appearance: none;
}
select:active,
select:focus {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
  -webkit-appearance: none;
}
.select {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 1px 10px 12px 0;
  padding: 0.4em;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  cursor: default;
  border: 1px solid #dddddd;
  transition: 0.3s ease-in;
}
.select::after {
  content: '';
  position: absolute;
  right: 0;
  margin: 0.3em 0.7em;
  width: 0.8em;
  height: 0.8em;
  background-image: url(img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.select:hover {
  border-color: #bbbbbb;
}
.select span {
  pointer-events: none;
}
.select ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  padding: 1em 0;
  margin: 4px 0 0 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.select ul li {
  padding: 1em 1em;
  /*&:first-child {
				padding-top: 1em;
			}
			&:last-child {
				padding-bottom: 1em;
			}*/
}
.select ul li:hover {
  background-color: #f7f7f7;
}
.select ul li:active,
.select ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.select.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.bulkSelect {
  position: relative;
  display: inline;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 0.5em 0.6em 0.6em 0.6em;
  font-size: 14px;
  font-weight: 300;
  border-radius: 2px;
  cursor: default;
  transition: 0.3s ease-in;
}
.bulkSelect:hover {
  border-color: #bbbbbb;
}
.bulkSelect span {
  pointer-events: none;
}
.bulkSelect ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 160px;
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.bulkSelect ul li {
  padding: 5px 15px;
}
.bulkSelect ul li:first-child {
  padding-top: 10px;
}
.bulkSelect ul li:last-child {
  padding-top: 10px;
}
.bulkSelect ul li:hover {
  background-color: #f7f7f7;
}
.bulkSelect ul li:active,
.bulkSelect ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.bulkSelect.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.modal select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 4px 5px;
  font-size: 13px;
  transition: 0.3s ease-in;
  -webkit-appearance: none;
  background-color: #323234;
  background-image: url(img/icons/arrow-w.svg);
  background-repeat: no-repeat;
  background-position: calc(90%) 50%;
  color: #ffffff;
}
.modal select:hover {
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-appearance: none;
}
.modal select:active,
.modal select:focus {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
  -webkit-appearance: none;
}
.modal .select {
  background-color: #3c3c3e;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
}
.modal .select:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal .select::after {
  content: '';
  position: absolute;
  right: 0;
  margin: 0.3em 0.7em;
  width: 0.7em;
  height: 0.7em;
  background-image: url(img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.modal .select.selected {
  color: #ffffff;
}
.modal textarea,
.modal input {
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 3px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 7px 8px;
  font-size: 13px;
  transition: 0.3s ease-in;
  background-color: #3c3c3e;
  color: #ffffff;
}
.modal textarea:hover,
.modal input:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal textarea:active,
.modal input:active,
.modal textarea:focus,
.modal input:focus {
  border-color: rgba(255, 103, 0, 0.8);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 3px 0 rgba(255, 103, 0, 0.8), inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  color: #000000;
}
.modal textarea::-webkit-input-placeholder,
.modal input::-webkit-input-placeholder {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 500px) {
  .modal textarea,
  .modal input {
    width: 100%;
  }
}
.modal input[type="checkbox"] {
  -webkit-appearance: none;
  background-color: #3c3c3e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 16px;
  height: 16px;
  padding: 0;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  float: left;
}
.modal input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.modal input[type="checkbox"]:checked {
  -webkit-appearance: none;
  background-color: #FF6700;
  background-position: center;
  background-origin: content-box;
  background-image: url(img/icons/checkmark.svg);
  background-repeat: no-repeat;
  border: 1px solid #FF6700;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  padding: 0;
}
.modal input[type="checkbox"]:checked:hover {
  border-color: #db5900;
}
.modal input[type="checkbox"]:active {
  background-color: #db5900;
}
.modal input[type="checkbox"] ~ label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 3px;
  margin-left: 21px;
}
.modal input[type="checkbox"] ~ label .ad-info {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.modal .searchField {
  background-color: #3c3c3e;
  border: 1px solid rgba(255, 255, 255, 0);
}
.modal .searchField:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal .searchField input {
  background: none!important;
}
.modal .searchField input:active,
.modal .searchField input:focus,
.modal .searchField input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background: none!important;
}
.modal .searchField.active {
  border-color: rgba(255, 103, 0, 0.8);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 3px 0 rgba(255, 103, 0, 0.8), inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  color: #000000;
}
.modal .searchField.active > input {
  background: none!important;
}
.modal .searchField.active > input:active,
.modal .searchField.active > input:focus,
.modal .searchField.active > input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background: none!important;
}
.button {
  display: inline-block;
  border-radius: 2px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s ease-in;
  margin: 0 8px;
  width: auto;
  white-space: nowrap;
}
.button:active,
.button:focus {
  outline: none;
}
.roundButton {
  border-radius: 50%;
  padding: 0;
  transition: 0.2s ease-in;
  margin: 0 0 0 6px;
  width: 22px;
  height: 22px;
  white-space: nowrap;
}
.roundButton:active,
.roundButton:focus {
  outline: none;
}
.orange {
  background-color: #FF6700;
  border: 1px solid #FF6700;
  color: #ffffff;
}
.orange:hover {
  border-color: #db5900;
}
.orange:active {
  background-color: #CE5200;
}
.grayOutline {
  color: #9B9B9B;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: none;
}
.grayOutline:hover,
.grayOutline:focus {
  color: #777777;
  border-color: rgba(0, 0, 0, 0.35);
}
.grayOutline:active {
  color: #777777;
  border-color: rgba(0, 0, 0, 0.25);
  background-color: #eeeeee;
}
.whiteOutline {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
}
.whiteOutline:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.whiteOutline:active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}
.white {
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid #ffffff;
  background: #ffffff;
}
.white:hover {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}
.white:active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.redOutline {
  color: #a61426;
  border: 1px solid #a61426;
  background: none;
}
.redOutline:hover {
  color: #C6182D;
  border-color: #C6182D;
}
.redOutline:active {
  background-color: #C6182D;
  border-color: #C6182D;
  color: #ffffff;
}
.transparentGray {
  background: none;
  border: none;
  color: #999999;
}
.transparentGray:hover {
  background-color: rgba(153, 153, 153, 0.1);
  color: #000000;
}
.transparentGray:active {
  background-color: rgba(153, 153, 153, 0.3);
  color: #000000;
}
.transparentRed {
  background: none;
  border: none;
  color: #C6182D;
}
.transparentRed:hover {
  background-color: rgba(166, 20, 38, 0.1);
}
.transparentRed:active {
  background-color: #C6182D;
  color: #ffffff;
}
.transparentRed .delete {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 13px;
  margin-right: 6px;
  background-image: url(img/icons/delete.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.add {
  background-image: url(img/icons/add.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.remove {
  background-image: url(img/icons/remove.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  /*&:hover {
		border-color: @red-dark-color;
		
		svg {
			fill: @red-dark-color;
		}
	}
	&:active {
		border-color: @red-dark-color;
		background-color: @red-dark-color;
		
		svg {
			fill: #ffffff;
		}
	}*/
}
.searchField {
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.searchField:hover {
  border-color: #bbbbbb;
}
.searchField:active,
.searchField:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
.searchField.active {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 3px 0 #FF6700, inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  opacity: 1;
  background-color: #ffffff;
}
.searchField input {
  border: none;
  margin: 0;
  width: calc(100% - 30px);
  padding: 6px 11px;
  margin: 1px;
  font-size: 14px;
  background-color: none!important;
}
.searchField input:active,
.searchField input:focus,
.searchField input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background-color: none!important;
}
.searchField .filterIcon {
  position: absolute;
  right: 7px;
  top: 0;
  height: 100%;
  width: 22px;
  background-image: url(img/icons/advanced-search.svg);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: 0.2s ease-out;
}
.searchField .filterIcon:hover {
  opacity: 1;
}
.searchField .filter {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
  margin: 4px 0 0 0;
  border-radius: 3px;
  background-color: none;
  box-shadow: none;
  transition: 0.3s ease-out;
}
.searchField .filter.open {
  background-color: #ffffff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  animation: fade-in 0.3s ease-in;
  max-height: 600px;
}
.searchField .filter.open .section {
  opacity: 1;
}
.searchField .filter .section {
  position: relative;
  width: 100%;
  margin: 20px 0 20px 20px;
  display: flex;
  flex-direction: row;
  opacity: 0;
  transition: 0.2s ease-out;
}
.searchField .filter .section .section-title {
  font-size: 13px;
  width: 10%;
  min-width: 70px;
  max-width: 130px;
  padding: 3px 10px 3px 0;
}
.searchField .filter .section .section-options {
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  padding: 0 30px 15px 0;
  width: 90%;
  max-width: calc(100% - 70px);
  min-width: calc(100% - 130px);
  display: flex;
  flex-wrap: wrap;
}
.searchField .filter .section:last-child .section-options {
  border-bottom: none;
}
input[type='checkbox'].toggle + label {
  font-size: 13px;
  font-weight: 300;
  color: #555555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-radius: 3px;
  padding: 3px 8px 2px 8px;
  transition: 0.2s ease-in;
  margin: 0 4px 5px 0;
  cursor: default;
  opacity: 1;
}
input[type='checkbox'].toggle + label:hover {
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.35);
}
input[type='checkbox'].toggle {
  display: none;
}
input[type='checkbox']:checked.toggle + label {
  font-size: 13px;
  font-weight: 300;
  padding: 3px 8px 2px 8px;
  background-color: #FF6700;
  border: 1px solid #FF6700;
  color: #ffffff;
  opacity: 1;
}
input[type='checkbox']:checked.toggle + label:hover {
  border-color: #db5900;
}
input[type="checkbox"].switch {
  -webkit-appearance: none;
  display: inline-block;
  background: #eeeeee;
  border: 1px solid #dddddd;
  border-radius: 16px;
  width: 32px;
  height: 20px;
  padding: 4px;
  margin: 5px 0;
  transition: 0.2s ease-in;
  background-position: left;
  background-size: contain;
  background-image: url(img/icons/circle.svg);
  background-repeat: no-repeat;
}
input[type="checkbox"].switch:hover {
  border-color: #cccccc;
}
input[type="checkbox"].switch:hover ~ label {
  color: #000000;
}
input[type="checkbox"].switch:focus {
  box-shadow: none;
}
input[type="checkbox"].switch ~ label {
  font-size: 11px;
  color: #999999;
  margin: 2px 40px 0 0;
  line-height: 1.1;
  padding: 5px;
}
input[type="checkbox"]:checked.switch {
  -webkit-appearance: none;
  background-color: #FF6700;
  background-position: right;
  background-size: contain;
  background-image: url(img/icons/circle.svg);
  background-repeat: no-repeat;
  border: 1px solid #FF6700;
  padding: 0;
}
input[type="checkbox"]:checked.switch:hover {
  border-color: #db5900;
}
input[type="checkbox"]:checked.switch:active {
  background-color: #db5900;
}
.addableField {
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: fade-in 0.2s ease-out;
  margin: 0 0 15px 0;
  width: 100%;
}
.addableField input {
  width: calc(100% - 60px);
}
.addableField .linkField {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% - 60px);
}
.addableField .linkField input {
  margin: 0 5px;
  width: auto;
}
.addableField .linkField .title {
  flex-grow: 2;
}
.addableField .linkField .url {
  flex-grow: 8;
}
.addableField .remove {
  display: none;
}
.addableField.multiple .remove {
  display: block;
}
.multiSelect {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  display: inline-block;
  width: 100%;
  margin: 1px 0 12px 0;
  cursor: default;
  transition: 0.3s ease-in;
  /*&::after {
		content: '';
		position: absolute;
		right: 0;
		margin: 0.3em 0.7em;
		width: 0.8em;
		height: 0.8em;
		background-image: url(img/icons/arrow.svg);
		background-repeat: no-repeat;
		background-size: contain;
	}*/
}
.multiSelect:hover {
  border-color: #bbbbbb;
}
.multiSelect:active,
.multiSelect:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
.multiSelect:hover {
  border-color: #bbbbbb;
}
.multiSelect span {
  pointer-events: none;
  color: #999999;
  font-weight: 300;
}
.multiSelect ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  padding: 1em 0;
  margin: 4px 0 0 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.multiSelect ul li {
  padding: 1em;
}
.multiSelect ul li:first-child {
  padding-top: 1em;
}
.multiSelect ul li:last-child {
  padding-bottom: 1em;
}
.multiSelect ul li:hover {
  background-color: #f7f7f7;
}
.multiSelect ul li:active,
.multiSelect ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.multiSelect.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.multiSelect .tag {
  display: inline-block;
  position: relative;
  z-index: 30;
  padding: 3px 20px 3px 3px;
  border-radius: 2px;
  margin: 2px;
  font-size: 12px;
  font-weight: 300;
  background-color: #eeeeee;
  color: #000000;
}
.multiSelect .tag::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  content: '✕';
  color: #999999;
}
.multiSelect .tag::after:hover {
  color: #000000;
}
.radioToggle {
  list-style: none;
  padding: 0.6em 0;
  margin: 10px 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}
.radioToggle li {
  font-size: 14px;
  font-weight: 300;
  display: inline;
  padding: 0.5em 1.0em;
  margin: 0 -5px 0 0;
  border: 1px solid #dddddd;
  color: #999999;
  transition: 0.3s ease-out;
}
.radioToggle li:hover {
  border-color: #bbbbbb;
}
.radioToggle li.active {
  background-color: #FF6700;
  color: #ffffff;
  border-color: #FF6700;
  margin: 0 -5px 0 0;
}
.radioToggle li.active:hover {
  border-color: #db5900;
}
.radioToggle li:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.radioToggle li:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.textField {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
}
.textField:hover {
  border-color: #bbbbbb;
}
.textField:active,
.textField:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
label {
  opacity: 0.4;
}
label.requiered {
  opacity: 1;
}
label.requiered::after {
  content: ' *';
  color: #FF6714;
  padding-left: 2px;
}
.controls-group {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px;
}
.controls-group label {
  flex-basis: 15em;
  text-align: right;
  margin: 0 20px;
  padding: 0.6em 0 0.6em 0;
}
.controls-group input[type="text"] {
  flex-basis: 25em;
  margin-right: 10px;
}
@media (max-width: 500px) {
  .controls-group {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .controls-group label {
    flex-basis: auto;
    margin: 10px 15px 0 15px;
    font-size: 12px;
  }
  .controls-group input[type="text"],
  .controls-group textarea {
    flex-basis: auto!important;
    width: calc(100% - 40px);
    margin: 5px 10px;
  }
}
textarea,
input {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  background-color: #ffffff;
  resize: none;
}
textarea:hover,
input:hover {
  border-color: #bbbbbb;
}
textarea:active,
input:active,
textarea:focus,
input:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  font-weight: 300;
}
select {
  border: 1px solid #dddddd;
  border-radius: 2px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 7px 8px;
  font-size: 13px;
  transition: 0.3s ease-in;
  -webkit-appearance: none;
  background: url(img/icons/arrow.svg) no-repeat calc(90%) 50%;
}
select:hover {
  border-color: #cccccc;
  -webkit-appearance: none;
}
select:active,
select:focus {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
  -webkit-appearance: none;
}
.select {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 1px 10px 12px 0;
  padding: 0.4em;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  cursor: default;
  border: 1px solid #dddddd;
  transition: 0.3s ease-in;
}
.select::after {
  content: '';
  position: absolute;
  right: 0;
  margin: 0.3em 0.7em;
  width: 0.8em;
  height: 0.8em;
  background-image: url(img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.select:hover {
  border-color: #bbbbbb;
}
.select span {
  pointer-events: none;
}
.select ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  padding: 1em 0;
  margin: 4px 0 0 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.select ul li {
  padding: 1em 1em;
  /*&:first-child {
				padding-top: 1em;
			}
			&:last-child {
				padding-bottom: 1em;
			}*/
}
.select ul li:hover {
  background-color: #f7f7f7;
}
.select ul li:active,
.select ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.select.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.bulkSelect {
  position: relative;
  display: inline;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 0.5em 0.6em 0.6em 0.6em;
  font-size: 14px;
  font-weight: 300;
  border-radius: 2px;
  cursor: default;
  transition: 0.3s ease-in;
}
.bulkSelect:hover {
  border-color: #bbbbbb;
}
.bulkSelect span {
  pointer-events: none;
}
.bulkSelect ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 160px;
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.bulkSelect ul li {
  padding: 5px 15px;
}
.bulkSelect ul li:first-child {
  padding-top: 10px;
}
.bulkSelect ul li:last-child {
  padding-top: 10px;
}
.bulkSelect ul li:hover {
  background-color: #f7f7f7;
}
.bulkSelect ul li:active,
.bulkSelect ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.bulkSelect.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.modal select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 4px 5px;
  font-size: 13px;
  transition: 0.3s ease-in;
  -webkit-appearance: none;
  background-color: #323234;
  background-image: url(img/icons/arrow-w.svg);
  background-repeat: no-repeat;
  background-position: calc(90%) 50%;
  color: #ffffff;
}
.modal select:hover {
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-appearance: none;
}
.modal select:active,
.modal select:focus {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
  -webkit-appearance: none;
}
.modal .select {
  background-color: #3c3c3e;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
}
.modal .select:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal .select::after {
  content: '';
  position: absolute;
  right: 0;
  margin: 0.3em 0.7em;
  width: 0.7em;
  height: 0.7em;
  background-image: url(img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.modal .select.selected {
  color: #ffffff;
}
.modal textarea,
.modal input {
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 3px;
  width: 100%;
  margin: 1px 0 12px 0;
  padding: 7px 8px;
  font-size: 13px;
  transition: 0.3s ease-in;
  background-color: #3c3c3e;
  color: #ffffff;
}
.modal textarea:hover,
.modal input:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal textarea:active,
.modal input:active,
.modal textarea:focus,
.modal input:focus {
  border-color: rgba(255, 103, 0, 0.8);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 3px 0 rgba(255, 103, 0, 0.8), inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  color: #000000;
}
.modal textarea::-webkit-input-placeholder,
.modal input::-webkit-input-placeholder {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 500px) {
  .modal textarea,
  .modal input {
    width: 100%;
  }
}
.modal input[type="checkbox"] {
  -webkit-appearance: none;
  background-color: #3c3c3e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  width: 16px;
  height: 16px;
  padding: 0;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  float: left;
}
.modal input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.modal input[type="checkbox"]:checked {
  -webkit-appearance: none;
  background-color: #FF6700;
  background-position: center;
  background-origin: content-box;
  background-image: url(img/icons/checkmark.svg);
  background-repeat: no-repeat;
  border: 1px solid #FF6700;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  padding: 0;
}
.modal input[type="checkbox"]:checked:hover {
  border-color: #db5900;
}
.modal input[type="checkbox"]:active {
  background-color: #db5900;
}
.modal input[type="checkbox"] ~ label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  padding: 3px;
  margin-left: 21px;
}
.modal input[type="checkbox"] ~ label .ad-info {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.modal .searchField {
  background-color: #3c3c3e;
  border: 1px solid rgba(255, 255, 255, 0);
}
.modal .searchField:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.modal .searchField input {
  background: none!important;
}
.modal .searchField input:active,
.modal .searchField input:focus,
.modal .searchField input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background: none!important;
}
.modal .searchField.active {
  border-color: rgba(255, 103, 0, 0.8);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 3px 0 rgba(255, 103, 0, 0.8), inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  color: #000000;
}
.modal .searchField.active > input {
  background: none!important;
}
.modal .searchField.active > input:active,
.modal .searchField.active > input:focus,
.modal .searchField.active > input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background: none!important;
}
.button {
  display: inline-block;
  border-radius: 2px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s ease-in;
  margin: 0 8px;
  width: auto;
  white-space: nowrap;
}
.button:active,
.button:focus {
  outline: none;
}
.roundButton {
  border-radius: 50%;
  padding: 0;
  transition: 0.2s ease-in;
  margin: 0 0 0 6px;
  width: 22px;
  height: 22px;
  white-space: nowrap;
}
.roundButton:active,
.roundButton:focus {
  outline: none;
}
.orange {
  background-color: #FF6700;
  border: 1px solid #FF6700;
  color: #ffffff;
}
.orange:hover {
  border-color: #db5900;
}
.orange:active {
  background-color: #CE5200;
}
.grayOutline {
  color: #9B9B9B;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: none;
}
.grayOutline:hover,
.grayOutline:focus {
  color: #777777;
  border-color: rgba(0, 0, 0, 0.35);
}
.grayOutline:active {
  color: #777777;
  border-color: rgba(0, 0, 0, 0.25);
  background-color: #eeeeee;
}
.whiteOutline {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: none;
}
.whiteOutline:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.whiteOutline:active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}
.white {
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid #ffffff;
  background: #ffffff;
}
.white:hover {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
}
.white:active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.redOutline {
  color: #a61426;
  border: 1px solid #a61426;
  background: none;
}
.redOutline:hover {
  color: #C6182D;
  border-color: #C6182D;
}
.redOutline:active {
  background-color: #C6182D;
  border-color: #C6182D;
  color: #ffffff;
}
.transparentGray {
  background: none;
  border: none;
  color: #999999;
}
.transparentGray:hover {
  background-color: rgba(153, 153, 153, 0.1);
  color: #000000;
}
.transparentGray:active {
  background-color: rgba(153, 153, 153, 0.3);
  color: #000000;
}
.transparentRed {
  background: none;
  border: none;
  color: #C6182D;
}
.transparentRed:hover {
  background-color: rgba(166, 20, 38, 0.1);
}
.transparentRed:active {
  background-color: #C6182D;
  color: #ffffff;
}
.transparentRed .delete {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 13px;
  margin-right: 6px;
  background-image: url(img/icons/delete.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.add {
  background-image: url(img/icons/add.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.remove {
  background-image: url(img/icons/remove.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  /*&:hover {
		border-color: @red-dark-color;
		
		svg {
			fill: @red-dark-color;
		}
	}
	&:active {
		border-color: @red-dark-color;
		background-color: @red-dark-color;
		
		svg {
			fill: #ffffff;
		}
	}*/
}
.searchField {
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  transition: 0.3s ease-in;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.searchField:hover {
  border-color: #bbbbbb;
}
.searchField:active,
.searchField:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
.searchField.active {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 3px 0 #FF6700, inset 0 0 2px 0 rgba(255, 103, 0, 0.3);
  opacity: 1;
  background-color: #ffffff;
}
.searchField input {
  border: none;
  margin: 0;
  width: calc(100% - 30px);
  padding: 6px 11px;
  margin: 1px;
  font-size: 14px;
  background-color: none!important;
}
.searchField input:active,
.searchField input:focus,
.searchField input:hover {
  outline: none!important;
  border: none!important;
  box-shadow: none!important;
  background-color: none!important;
}
.searchField .filterIcon {
  position: absolute;
  right: 7px;
  top: 0;
  height: 100%;
  width: 22px;
  background-image: url(img/icons/advanced-search.svg);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: 0.2s ease-out;
}
.searchField .filterIcon:hover {
  opacity: 1;
}
.searchField .filter {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  max-height: 0;
  overflow: hidden;
  margin: 4px 0 0 0;
  border-radius: 3px;
  background-color: none;
  box-shadow: none;
  transition: 0.3s ease-out;
}
.searchField .filter.open {
  background-color: #ffffff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  animation: fade-in 0.3s ease-in;
  max-height: 600px;
}
.searchField .filter.open .section {
  opacity: 1;
}
.searchField .filter .section {
  position: relative;
  width: 100%;
  margin: 20px 0 20px 20px;
  display: flex;
  flex-direction: row;
  opacity: 0;
  transition: 0.2s ease-out;
}
.searchField .filter .section .section-title {
  font-size: 13px;
  width: 10%;
  min-width: 70px;
  max-width: 130px;
  padding: 3px 10px 3px 0;
}
.searchField .filter .section .section-options {
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  padding: 0 30px 15px 0;
  width: 90%;
  max-width: calc(100% - 70px);
  min-width: calc(100% - 130px);
  display: flex;
  flex-wrap: wrap;
}
.searchField .filter .section:last-child .section-options {
  border-bottom: none;
}
input[type='checkbox'].toggle + label {
  font-size: 13px;
  font-weight: 300;
  color: #555555;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  border-radius: 3px;
  padding: 3px 8px 2px 8px;
  transition: 0.2s ease-in;
  margin: 0 4px 5px 0;
  cursor: default;
  opacity: 1;
}
input[type='checkbox'].toggle + label:hover {
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.35);
}
input[type='checkbox'].toggle {
  display: none;
}
input[type='checkbox']:checked.toggle + label {
  font-size: 13px;
  font-weight: 300;
  padding: 3px 8px 2px 8px;
  background-color: #FF6700;
  border: 1px solid #FF6700;
  color: #ffffff;
  opacity: 1;
}
input[type='checkbox']:checked.toggle + label:hover {
  border-color: #db5900;
}
input[type="checkbox"].switch {
  -webkit-appearance: none;
  display: inline-block;
  background: #eeeeee;
  border: 1px solid #dddddd;
  border-radius: 16px;
  width: 32px;
  height: 20px;
  padding: 4px;
  margin: 5px 0;
  transition: 0.2s ease-in;
  background-position: left;
  background-size: contain;
  background-image: url(img/icons/circle.svg);
  background-repeat: no-repeat;
}
input[type="checkbox"].switch:hover {
  border-color: #cccccc;
}
input[type="checkbox"].switch:hover ~ label {
  color: #000000;
}
input[type="checkbox"].switch:focus {
  box-shadow: none;
}
input[type="checkbox"].switch ~ label {
  font-size: 11px;
  color: #999999;
  margin: 2px 40px 0 0;
  line-height: 1.1;
  padding: 5px;
}
input[type="checkbox"]:checked.switch {
  -webkit-appearance: none;
  background-color: #FF6700;
  background-position: right;
  background-size: contain;
  background-image: url(img/icons/circle.svg);
  background-repeat: no-repeat;
  border: 1px solid #FF6700;
  padding: 0;
}
input[type="checkbox"]:checked.switch:hover {
  border-color: #db5900;
}
input[type="checkbox"]:checked.switch:active {
  background-color: #db5900;
}
.addableField {
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: fade-in 0.2s ease-out;
  margin: 0 0 15px 0;
  width: 100%;
}
.addableField input {
  width: calc(100% - 60px);
}
.addableField .linkField {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% - 60px);
}
.addableField .linkField input {
  margin: 0 5px;
  width: auto;
}
.addableField .linkField .title {
  flex-grow: 2;
}
.addableField .linkField .url {
  flex-grow: 8;
}
.addableField .remove {
  display: none;
}
.addableField.multiple .remove {
  display: block;
}
.multiSelect {
  position: relative;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 300;
  padding: 0.4em;
  /*& ~ span::after {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 2px;
		width: 0;
		transition: 0.3s ease-out;
		background-color: @accent-color;
	}
	*/
  display: inline-block;
  width: 100%;
  margin: 1px 0 12px 0;
  cursor: default;
  transition: 0.3s ease-in;
  /*&::after {
		content: '';
		position: absolute;
		right: 0;
		margin: 0.3em 0.7em;
		width: 0.8em;
		height: 0.8em;
		background-image: url(img/icons/arrow.svg);
		background-repeat: no-repeat;
		background-size: contain;
	}*/
}
.multiSelect:hover {
  border-color: #bbbbbb;
}
.multiSelect:active,
.multiSelect:focus {
  border-color: #FF6700;
  outline: none;
  /*
		& ~ span::after {
			width: 100%;
			box-shadow: 0 1px 2px 0 fade(@accent-color, 70%);
		}*/
}
.multiSelect:hover {
  border-color: #bbbbbb;
}
.multiSelect span {
  pointer-events: none;
  color: #999999;
  font-weight: 300;
}
.multiSelect ul {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  padding: 1em 0;
  margin: 4px 0 0 0;
  overflow: hidden;
  transition: 0.3s ease-out;
  list-style: none;
  cursor: default;
  opacity: 0;
}
.multiSelect ul li {
  padding: 1em;
}
.multiSelect ul li:first-child {
  padding-top: 1em;
}
.multiSelect ul li:last-child {
  padding-bottom: 1em;
}
.multiSelect ul li:hover {
  background-color: #f7f7f7;
}
.multiSelect ul li:active,
.multiSelect ul li.active {
  background-color: #FF6700;
  color: #ffffff;
}
.multiSelect.open ul {
  max-height: 300px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
  opacity: 1;
  color: #000000;
}
.multiSelect .tag {
  display: inline-block;
  position: relative;
  z-index: 30;
  padding: 3px 20px 3px 3px;
  border-radius: 2px;
  margin: 2px;
  font-size: 12px;
  font-weight: 300;
  background-color: #eeeeee;
  color: #000000;
}
.multiSelect .tag::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  content: '✕';
  color: #999999;
}
.multiSelect .tag::after:hover {
  color: #000000;
}
.radioToggle {
  list-style: none;
  padding: 0.6em 0;
  margin: 10px 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}
.radioToggle li {
  font-size: 14px;
  font-weight: 300;
  display: inline;
  padding: 0.5em 1.0em;
  margin: 0 -5px 0 0;
  border: 1px solid #dddddd;
  color: #999999;
  transition: 0.3s ease-out;
}
.radioToggle li:hover {
  border-color: #bbbbbb;
}
.radioToggle li.active {
  background-color: #FF6700;
  color: #ffffff;
  border-color: #FF6700;
  margin: 0 -5px 0 0;
}
.radioToggle li.active:hover {
  border-color: #db5900;
}
.radioToggle li:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.radioToggle li:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.quickEdit {
  transition: 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
}
.quickEdit:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.quickEdit.edit {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
}
.files {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}
.files .section {
  margin: 0 0 10px 0;
}
.files .section::first-child {
  margin-top: 10px;
}
.files .section .section-title {
  position: relative;
  height: 7px;
  border-bottom: 1px solid #eeeeee;
  margin: 0 0 10px 0;
}
.files .section .section-title p {
  color: #bbbbbb;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 10;
}
.files .section .section-title .helper {
  padding: 0 6px;
  background-color: #ffffff;
}
.files .section .section-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.file {
  flex-basis: calc((100% - 120px)/4);
  margin: 10px 15px 30px 15px;
}
@media (min-width: 1400px) {
  .file {
    flex-basis: calc((100% - 150px)/5);
  }
}
@media (max-width: 768px) {
  .file {
    flex-basis: calc((100% - 60px)/3);
  }
}
@media (max-width: 500px) {
  .file {
    flex-basis: calc(100% - 20px);
  }
}
.file .file-img {
  position: relative;
  padding-top: 66.59%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in;
  background-position: center;
  background-size: cover;
}
.file .file-img .progressBar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  width: auto;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(220, 220, 220, 0.7);
}
.file .file-img .progressBar .loaded {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #FF6714;
}
.file .file-img .file-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.4s ease-out, outline 0.4s ease-out;
  border-radius: 2px;
  outline: solid 3px rgba(0, 0, 0, 0);
  outline-offset: -2px;
}
.file .file-img .file-controls .close {
  display: none;
}
.file .file-img .file-controls .type {
  display: none;
}
.file .file-img .file-controls .button {
  display: none;
}
.file .file-img .file-controls .checkmark {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
  transition: border 0.2s ease-out, background-color 0.2s ease-out;
}
.file .file-img:hover {
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 8px 0 rgba(0, 0, 0, 0.35), 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.file .file-img:hover .file-controls {
  background-color: rgba(0, 0, 0, 0.7);
}
.file .file-img:hover .file-controls .close {
  position: absolute;
  display: block;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  cursor: default;
  background-image: url('img/icons/close.svg');
  background-size: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transition: 0.3s ease-out;
  animation: fade-in 0.4s ease-out 0.2s;
  -webkit-animation-fill-mode: backwards;
}
.file .file-img:hover .file-controls .close:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.file .file-img:hover .file-controls .checkmark {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.file .file-img:hover .file-controls .checkmark:hover {
  border-color: #ffffff;
}
.file .file-img:hover .file-controls .type {
  display: block;
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 20px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: none;
  background-size: contain;
  animation: fade-in 0.4s ease-out 0.2s;
  -webkit-animation-fill-mode: backwards;
}
.file .file-img:hover .file-controls .button {
  display: block;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0;
  border-radius: 3px;
  border-width: 1px;
  animation: scale-in 0.3s ease-out 0.1s;
  -webkit-animation-fill-mode: backwards;
}
.file.selected .file-img .file-controls {
  outline: solid 3px #FF6700;
  outline-offset: -2px;
}
.file.selected .file-img .file-controls .checkmark {
  background-color: #FF6700;
  background-position: center;
  background-origin: content-box;
  background-image: url(img/icons/checkmark.svg);
  background-repeat: no-repeat;
  border-color: #FF6700;
}
.file.selected .file-img .file-controls .checkmark:hover {
  border-color: #db5900;
}
.file.img .file-img:hover .file-controls .type {
  background-image: url(img/icons/imgType.svg);
}
.file.video .file-img:hover .file-controls .type {
  background-image: url(img/icons/videoType.svg);
}
.file.mcoll .file-img:hover .file-controls .type {
  background-image: url(img/icons/mcollType.svg);
}
.file .file-title {
  transition: 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0.5em 0 0.1em 0;
  padding: 0 0.1em;
  overflow-wrap: break-word;
  overflow: hidden;
  cursor: default;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file .file-title:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.file .file-title.edit {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
}
.file .file-title input {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.1;
}
.file .file-title input:focus,
.file .file-title input:active {
  border: none;
  box-shadow: none;
  outline: none;
}
.file .file-info {
  transition: 0.3s ease-out;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 300;
  color: #999999;
  line-height: 1.3;
  padding: 0.1em;
  margin: 0 0 0.5em 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  max-height: 3.9em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.file .file-info:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.file .file-info.edit {
  border-color: #FF6700;
  outline: none;
  box-shadow: 0 0 1px 0 #FF6700;
}
.file .file-info textarea {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 12px;
}
.file .file-info textarea:focus,
.file .file-info textarea:active {
  border: none;
  box-shadow: none;
  outline: none;
}
.file .file-purpose {
  position: relative;
  /*.select.selected ~ .file-purpose-preview {
			position: relative;
			font-size: 11px;
			display: inline-block;
			color: #999999;
			font-weight: 300;
			right: 0;
			cursor: default;
			transition: 0.2 ease-out;
			
			&::before {
				content: ' — ';
			}
			&:hover {
				color: #000000;
			}
		}*/
}
.file .file-purpose .select {
  position: relative;
  font-size: 12px;
  display: inline-block;
  color: #555555;
  font-weight: 300;
  width: 50%;
  line-height: 1.3;
  border-radius: 3px;
  padding: 1px 8px 0 6px;
}
.file .file-purpose .select::after {
  content: '';
  position: absolute;
  right: 0;
  margin: 4px 4px;
  width: 7px;
  height: 7px;
  background-image: url(img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.file .file-purpose .select.selected {
  background-color: #eeeeee;
}
.file .file-purpose .file-purpose-preview {
  display: none;
}
.file.video .select.selected ~ .file-purpose-preview {
  display: none;
}

.hidden {
  display: none!important;
}
.locked {
  pointer-events: none;
}
.overflow {
  position: fixed;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-fade-in {
  0% {
    background-color: rgba(30, 30, 32, 0);
  }
  100% {
    background-color: rgba(30, 30, 32, 0.94);
  }
}
@keyframes modal-fade-out {
  0% {
    background-color: rgba(30, 30, 32, 0.94);
  }
  100% {
    background-color: rgba(30, 30, 32, 0);
  }
}
@keyframes scale-in {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.6);
    opacity: 0;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-out-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes slide-in-down {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes slide-in-up {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-40px);
    opacity: 0;
  }
}
@keyframes scale-in-right {
  0% {
    transform: translate(5px, -15px) scale(1.1);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-down {
  0% {
    transform: translate(0, -15px) scale(1.1);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes place-left {
  0% {
    transform: translate(-5px, -15px) scale(1.1);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes grow-down {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 500px;
  }
}
@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.lm {
  position: fixed;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  cursor: default;
  opacity: 0.5;
  transition: 0.3s ease-out;
  overflow-y: scroll;
}
.lm .logo {
  position: relative;
  margin: 15px 10px 5px 30px;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  transition: 0.3s ease-out;
  animation: place-left 0.4s ease-out;
}
.lm:hover {
  opacity: 1;
}
.lm:hover ~ .tb > .logo {
  opacity: 1;
}
.lm ul {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.2s ease-out;
}
.lm ul > li {
  margin: 10px 0;
  padding: 8px 0 8px 30px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.2s ease-out;
  animation-name: place-left;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
}
.lm ul > li.ad:nth-child(1) {
  animation-delay: 0s;
}
.lm ul > li.ad:nth-child(2) {
  animation-delay: 0.05s;
}
.lm ul > li.ad:nth-child(3) {
  animation-delay: 0.1s;
}
.lm ul > li.ad:nth-child(4) {
  animation-delay: 0.15s;
}
.lm ul > li.ad:nth-child(5) {
  animation-delay: 0.2s;
}
.lm ul > li.ad:nth-child(6) {
  animation-delay: 0.25s;
}
.lm ul > li.ad:nth-child(7) {
  animation-delay: 0.3s;
}
.lm ul > li.ad:nth-child(8) {
  animation-delay: 0.35s;
}
.lm ul > li.ad:nth-child(9) {
  animation-delay: 0.4s;
}
.lm ul > li.ad:nth-child(10) {
  animation-delay: 0.45s;
}
.lm ul > li:hover {
  color: #ffffff;
}
.lm ul > li:hover .icon {
  opacity: 0.9;
}
.lm ul > li:hover > a {
  color: #ffffff;
}
.lm ul > li.active {
  color: #ffffff;
}
.lm ul > li.active .icon {
  opacity: 1;
}
.lm ul > li.active > a {
  color: #ffffff;
}
.lm ul > li > a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.lm ul > li > a:hover,
.lm ul > li > a:active {
  color: #ffffff;
}
.lm ul > li .icon {
  width: 16px;
  height: 16px;
  float: left;
  opacity: 0.5;
  margin: 0 6px 0 0;
  background-position: center;
  background-repeat: no-repeat;
}
.lm ul > li.open {
  background-color: rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin: 15px 0;
}
.lm ul > li#dashboard > .icon {
  background-image: url(img/icons/dashboard.svg);
}
.lm ul > li#dashboard.active > .icon {
  background-image: url(img/icons/dashboard-active.svg);
}
.lm ul > li#createContent > .icon {
  background-image: url(img/icons/createContent.svg);
}
.lm ul > li#createContent.active > .icon {
  background-image: url(img/icons/createContent-active.svg);
}
.lm ul > li#files > .icon {
  background-image: url(img/icons/assets.svg);
}
.lm ul > li#files.active > .icon {
  background-image: url(img/icons/assets-active.svg);
}
.lm ul > li#widgets > .icon {
  background-image: url(img/icons/manageWidget.svg);
}
.lm ul > li#widgets.active > .icon {
  background-image: url(img/icons/manageWidget-active.svg);
}
.lm ul > li#config > .icon {
  background-image: url(img/icons/config.svg);
}
.lm ul > li#config.active > .icon {
  background-image: url(img/icons/config-active.svg);
}
.lm ul > li ul {
  padding: 0;
  display: none;
  max-height: 0;
  transition: 0.4s ease-out;
}
.lm ul > li ul.open {
  display: block;
  padding: 0 0 0 8px;
  margin: 10px 0 0 0;
  max-height: 100%;
}
.lm ul > li ul.open li {
  margin: 20px 0;
  padding: 0 0 0 15px;
  transition: 0.2s ease-out;
  animation: place-left;
  animation-duration: 0.15s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
}
.lm ul > li ul.open li:hover {
  color: #ffffff;
}
.lm ul > li ul.open li:hover > a {
  color: #ffffff;
}
.lm ul > li ul.open li.active {
  color: #ffffff;
}
.lm ul > li ul.open li.active > a {
  color: #ffffff;
}
.lm ul > li ul.open li .icon {
  display: none;
}
.lm ul > li ul.open li.ad:nth-child(1) {
  animation-delay: 0s;
}
.lm ul > li ul.open li.ad:nth-child(2) {
  animation-delay: 0.05s;
}
.lm ul > li ul.open li.ad:nth-child(3) {
  animation-delay: 0.1s;
}
.lm ul > li ul.open li.ad:nth-child(4) {
  animation-delay: 0.15s;
}
.lm ul > li ul.open li.ad:nth-child(5) {
  animation-delay: 0.2s;
}
.lm ul > li ul.open li.ad:nth-child(6) {
  animation-delay: 0.25s;
}
@media (max-width: 992px) {
  .lm {
    display: none;
  }
  .lm.open {
    display: block;
    position: fixed;
    z-index: 40;
    left: 0;
    top: 0;
    width: 200px;
    bottom: 0;
    cursor: default;
    opacity: 1;
    background-color: #3c3c3e;
    box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.3);
    animation: slide-in-left 0.4s ease-out;
  }
  .lm.open .close {
    position: absolute;
    width: 16px;
    height: 15px;
    right: 17px;
    top: 22px;
    background-image: url(img/icons/closeModal-w.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    transition: 0.3s ease-out;
  }
  .lm.open .close:hover {
    opacity: 1;
  }
  .lm.open .logo {
    animation-name: fade-in;
  }
  .lm.open li {
    animation-name: fade-in;
  }
  .lm.open li ul.open li {
    animation-name: fade-in;
  }
  .lm.open ~ .ct {
    opacity: 0.5;
  }
}
@media (max-width: 500px) {
  .lm {
    display: none;
  }
  .lm.open {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(100% - 60px);
    z-index: 50;
    cursor: default;
    opacity: 1;
    background-color: #3c3c3e;
    box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 10px 0 rgba(0, 0, 0, 0.3);
    animation: slide-in-left 0.4s ease-out;
  }
  .lm.open .logo {
    display: none;
  }
  .lm.open ul {
    padding: 2em 0;
  }
  .lm.open ul li {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    padding: 1em 1.5em;
  }
  .lm.open ul li .icon {
    width: 18px;
    height: 18px;
    margin: 2px 8px 0 0;
    background-size: contain;
  }
  .lm.open ul li ul {
    font-size: 18px;
    font-weight: 300;
    padding: 0;
  }
  .lm.open ul li ul li {
    padding: 0.4em 1.5em;
    margin: 0;
  }
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(30, 30, 32, 0.94);
  overflow-y: scroll;
  animation-name: modal-fade-in;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
}
.modal > .close {
  position: fixed;
  z-index: 50;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
  background-image: url(img/icons/closeModal-w.svg);
  opacity: 0.5;
  transition: 0.3 ease-out;
}
.modal > .close:hover {
  opacity: 0.7;
}
.modal > .close:active {
  opacity: 1;
}
.modal > .controls {
  position: fixed;
  z-index: 50;
  bottom: 0;
  left: 0;
  height: 50px;
  width: calc(100% - 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(40, 40, 42, 0.95);
  padding: 15px 30px 0 30px;
  animation-name: slide-in-down;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-delay: 0.3s;
}
.modal.willClose {
  animation-name: modal-fade-out;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
}
.modal.willClose > .controls {
  animation-name: slide-out-down;
  animation-duration: 0.2s;
  animation-delay: 0s;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
}
.modal .file .file-img {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.9);
}
.modal .file .file-img:hover {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.6), 0 0 30px 0 rgba(0, 0, 0, 0.5);
}
.modal .file.selected .file-img {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.9), 0 0 15px 0 rgba(0, 0, 0, 0.9), inset 0 0 0 2px #FF6700;
}
.modal .file .file-title {
  color: rgba(255, 255, 255, 0.9);
}
.modal .file .file-info {
  color: rgba(255, 255, 255, 0.5);
}

.pr {
  display: flex;
  align-items: center;
}
.pr.modal {
  animation-delay: 0s;
}
@media (max-width: 768px) {
  .pr {
    flex-wrap: wrap;
  }
}
.pr .preview {
  position: absolute;
  width: calc(100% - 300px);
  height: calc(100% - 70px);
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  animation: zoom-in 0.4s ease-out;
  transition: 0.2s ease-out;
}
.pr .preview .img {
  position: relative;
  z-index: 0;
  flex-grow: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pr .preview .img img {
  position: relative;
  box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.9), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  max-width: 90%;
  max-height: 90%;
}
.pr .preview .img .focalPoint {
  display: none;
}
.pr .preview .videoPlay {
  display: none;
}
.pr .preview .img-only {
  display: block;
}
.pr .preview .purposes {
  display: none;
}
.pr .preview.focal .focalPoint {
  position: absolute;
  z-index: 100;
  display: block;
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(img/icons/focal.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  /*transition: 0.2s ease-out;*/
}
.pr .preview.focal .focalPoint:hover {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-out;
}
.pr .preview.focal .focalPoint:active {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.pr .preview.focal .purposes {
  flex-grow: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 20px 0 0 0;
  animation: slide-in-down 0.2s ease-out;
}
.pr .preview.focal .purposes .purpose {
  position: relative;
  flex-grow: 1;
  flex-basis: content;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 100%;
}
.pr .preview.focal .purposes .purpose-img {
  background-image: url(img/11.jpg);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  width: 100%;
  max-height: 100%!important;
}
.pr .preview.focal .purposes .purpose-title {
  margin: 0.5em auto 0 auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.pr .preview.focal .purposes .purpose-info {
  margin: 0.1em auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 200;
}
@media (max-width: 768px) {
  .pr .preview {
    width: 100%;
    height: auto;
    position: relative;
    padding: 0;
  }
  .pr .preview img {
    margin: 40px;
    padding: 0;
    width: 90%;
  }
}
.pr.willClose .preview {
  animation: fade-out 0.2s ease-out;
  -webkit-animation-fill-mode: forwards;
}
.pr.willClose .img {
  animation: zoom-out 0.3s ease-out 0.05s;
  -webkit-animation-fill-mode: forwards;
}
.pr .ip {
  width: 300px;
  height: 100%;
  overflow-y: scroll;
  animation: slide-in-left 0.5s ease-out 0.3s;
  -webkit-animation-fill-mode: backwards;
}
.pr .ip .group {
  position: relative;
  margin: 20px 30px;
  animation: slide-in-left 0.3s ease-out 0.2s;
  -webkit-animation-fill-mode: backwards;
}
.pr .ip .group:first-child {
  margin-top: 40px;
}
.pr .ip .group:last-child {
  margin-bottom: 40px;
}
.pr .ip .group .group-title {
  display: none;
}
.pr .ip .group label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 16px;
}
.pr .ip .group .requiered {
  color: rgba(255, 255, 255, 0.8);
}
.pr .ip .group .requiered::after {
  content: ' *';
  color: #FF6714;
  padding-left: 2px;
}
@media (max-width: 768px) {
  .pr .ip {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .pr .ip .group {
    margin: 20px 40px;
  }
}
.pr.willClose .ip {
  animation: slide-out-left 0.2s ease-out;
  -webkit-animation-fill-mode: forwards;
}
.pr.video {
  /*#altText {
			display: none;
			
			& ~ label, & ~ required {
				display: none!important;
			}
		}
		#resolution {
			display: none;
			
			& ~ label {
				display: none;
			}
		}*/
}
.pr.video #focalPointToggle {
  display: none;
}
.pr.video #cropPreview {
  display: none;
}
.pr.video .focalPoint {
  display: none;
}
.pr.video .purposes {
  display: none;
}
.pr.video .img .videoPlay {
  position: absolute;
  display: block;
  width: 120px;
  height: 120px;
  z-index: 50;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(img/icons/playback.svg);
  background-repeat: no-repeat;
  background-position: 60% 50%;
  border-radius: 50%;
  transition: 0.2s ease-out;
}
.pr.video .img .videoPlay:hover {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.pr.video .img .videoPlay:active {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.pr.video .img-only {
  display: none;
}
.pr.bulk .preview .img {
  display: none;
}
.pr.bulk .preview .purposes {
  display: none;
}
.pr.bulk .preview .files {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  position: relative;
  width: 90%;
  height: 90%;
  overflow: scroll;
}
.pr.bulk .preview .files .file {
  width: calc((100% - 60px)/3);;
}
.pr.bulk #focalPointToggle {
  display: none;
}

.pp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pp .header {
  position: relative;
  margin: 40px 0 20px 0;
  z-index: 30;
  width: 40%;
  min-width: 250px;
  animation: slide-in-up 0.3s ease-out 0.1s;
  -webkit-animation-fill-mode: backwards;
}
.pp.willClose .header {
  animation: slide-out-up 0.3s ease-out 0.1s;
  -webkit-animation-fill-mode: backwards;
}
.pp .purposes {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  width: 70%;
}
.pp .purposes .purpose {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc((100% - 160px)/4);
}
.pp .purposes .purpose .purpose-img {
  background-image: url(img/11.jpg);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  width: 100%;
}
.pp .purposes .purpose .purpose-title {
  margin: 5px auto 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.pp .purposes .purpose .purpose-info {
  margin: -3px auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 200;
}
.pp.modal .purpose {
  animation-name: zoom-in;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-duration: 0.4s;
  animation-delay: 0.05s;
}
.pp.willClose .purpose {
  animation-name: fade-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.pr-1 {
  /*width: 230px;
    height: 160px;*/
  padding-top: 69.5%;
  background-size: cover;
}
.pr-2 {
  /*width: 240px;
    height: 140px;*/
  padding-top: 58.3%;
  background-size: cover;
}
.pr-3 {
  /*width: 250px;
    height: 120px;*/
  padding-top: 48%;
  background-size: cover;
}
.pr-4 {
  /*width: 400px;
    height: 280px;*/
  padding-top: 70%;
  background-size: cover;
}
.pr-5 {
  /*width: 360px;
    height: 360px;*/
  padding-top: 100%;
  background-size: cover;
}
.pr-6 {
  /*width: 360px;
    height: 360px;*/
  width: 70%;
  padding-top: 120%;
  background-size: cover;
}

