@charset "UTF-8";
@font-face {
  font-family: "Aleo";
  font-style: normal;
  font-weight: 400;
  src: local("Aleo"), local("Aleo"), url(fonts/Aleo-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: local("Lato"), local("Lato"), url(fonts/Lato-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Lato Semibold";
  font-style: normal;
  font-weight: 600;
  src: local("Lato Bold"), local("Lato-Bold"), url(fonts/Lato-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Lato Black";
  font-style: normal;
  font-weight: 800;
  src: local("Lato Black"), local("Lato-Black"), url(fonts/Lato-Black.ttf) format("truetype");
}

@font-face {
  font-family: "Montserrat Regular";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat"), local("Montserrat-Regular"), url(fonts/Montserrat-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans Regular"), local("OpenSans"), local("Open-Sans"), local("OpenSans-Regular"), url(fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@keyframes flashborder {
  0% {
    border: 2px solid #93cfff;
    box-shadow: inset 0 0 9px #93cfff;
  }
  50% {
    border: 2px solid #38c;
    box-shadow: inset 0 0 9px #38c;
  }
  100% {
    border: 2px solid #93cfff;
    box-shadow: inset 0 0 9px #93cfff;
  }
}

@keyframes flashbackground {
  0% {
    background-color: #75ab35;
  }
  50% {
    background-color: #38c;
  }
  100% {
    background-color: #75ab35;
  }
}

html {
  height: 100%;
  box-sizing: border-box;
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 18px;
  color: #222222;
  height: 100%;
  box-sizing: border-box;
  font-family: Arial, "Segoe UI", Verdana, Helvetica, sans-serif;
  background-color: white;
  display: flex;
  -ms-flex: none;
  flex-direction: column;
}

.body {
  background: #f3f6f7;
}

a {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  color: #38c;
  text-decoration: none;
}

a:link, a:visited {
  color: #38c;
  text-decoration: none;
}

h1 {
  font-size: 2.1em !important;
  margin: 0;
  font-weight: bold !important;
  color: #64666d;
}

h2 {
  font-size: 26px !important;
  margin: 0;
  font-weight: bold !important;
  color: #5b9943 !important;
}

h3 {
  font-size: 20px !important;
  margin: 0 0 10px 0 !important;
  font-weight: bold !important;
  color: #64666d;
}

h4 {
  font-size: 15px;
  margin: 12px 0 12px 0;
  font-weight: bold;
  color: #64666d;
}

hr {
  border-color: #dadada !important;
}

table th {
  padding: 2px 3px 2px 3px;
  word-wrap: break-word;
}

table td {
  padding: 1px 3px 1px 3px;
}

table th input,
table td input,
table th button {
  padding: 5px 3px 5px 5px !important;
}

table th a {
  font-weight: bold !important;
}

table .ui-checkbox {
  min-width: 30px;
}

header,
footer,
nav,
section {
  display: block;
}

textarea {
  min-height: 75px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.hidden {
  display: none !important;
}

.visible {
  display: normal;
}

.widthAuto {
  width: auto;
}

.widthFull,
.width100 {
  width: 100%;
}

.overflowAuto {
  overflow: auto;
}

.overflowHidden {
  overflow: hidden;
}

.floatRight,
.float_right,
pull-right {
  float: right;
}

.floatLeft,
.float_left,
pull-left {
  float: left;
}

textarea.limited {
  resize: vertical;
  max-height: 300px;
  min-height: 75px;
}

textarea.form-control {
  height: 120px;
}

tbody.striped tr:nth-child(odd) {
  background-color: #f5f9fa;
}

.row-spacing {
  margin-bottom: 14px;
  clear: both;
}

.row-spacing:after {
  display: table;
  content: "";
  clear: both;
}

.row-spacing > .row-spacing:last-child {
  margin-bottom: 0;
}

.clearfix {
  clear: both;
}

.clearfix:after {
  display: table;
  content: "";
  clear: both;
}

.clear-both {
  clear: both;
}

.space-after {
  margin-bottom: 15px;
}

.space-before {
  margin-top: 15px;
}

.space-before-after {
  margin-top: 15px;
  margin-bottom: 15px;
}

.green {
  color: #5b9943;
}

.red {
  color: #d79128;
}

.preventPointer {
  pointer-events: none;
}

.ui-checkbox [type="checkbox"]:not(:checked),
.ui-checkbox [type="checkbox"]:checked,
.ui-radio [type="radio"]:not(:checked),
.ui-radio [type="radio"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.open .caret {
  transform: rotate(90deg);
}

.glyphicon {
  padding-right: 4px;
}

.glyphicon-flip-y {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
  padding-right: 0;
  padding-left: 4px;
}

.glyphicon-noPadding {
  padding-left: 0;
  padding-right: 0;
}

.tooltippi .glyphicon {
  padding-right: 0;
}

.btn-success {
  background-color: #5b9943;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  height: 20px;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-spacebetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.flex-row-a-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-child {
  flex: 1 auto;
}

.flex-child-small {
  width: 40px;
  flex: 0 0 40px;
}

.flex-child-tiny {
  width: 40px;
  flex: 0 0 40px;
  height: 25px;
}

.flex-half {
  flex: 1 1 50%;
}

.inputSizeBtn {
  height: 30px !important;
  width: auto;
  border: 0 !important;
  padding: 5px !important;
  min-width: 60px;
  text-align: center !important;
}

.autoRight {
  float: right !important;
  width: auto !important;
}

.autoLeft {
  float: left !important;
  width: auto !important;
}

.maxwidth-half {
  max-width: 50%;
}

.emphasis-wrapper {
  border-radius: 0.6rem;
  border: 0.1rem solid #5b9943;
  background-color: rgba(91, 153, 67, 0.03);
  padding: 1.2rem;
  clear: both;
}

.emphasis-wrapper:after {
  display: table;
  content: "";
  clear: both;
}

.validation-msg-wrapper {
  display: none;
  color: #a94442;
  background-color: #efaaaa;
  font-weight: bold;
  word-wrap: initial;
  hyphens: none;
  border-radius: 0.6rem;
  min-height: 1.5rem;
  padding: 0.8rem;
}

.validation-msg-wrapper:not(:empty) {
  display: block;
}

.line-thin {
  border-bottom: 1px solid #dadada;
  width: 100%;
  display: block;
  margin-bottom: 14px;
}

.line-thin.nomargin {
  margin-bottom: 0;
}

.line-thin.themed {
  border-color: #6eb068;
}

.line-thin.light {
  opacity: 0.5;
}

.line-thin-green {
  border-bottom: 1px solid #6eb068;
}

input[type="range"].themerange {
  width: 100%;
  margin: -1px 0;
  background-color: transparent;
  -webkit-appearance: none;
}

input[type="range"].themerange:focus {
  outline: none;
}

input[type="range"].themerange::-webkit-slider-runnable-track {
  background: #edf5f7;
  border: 0;
  border-radius: 25px;
  width: 100%;
  height: 24px;
  cursor: pointer;
}

input[type="range"].themerange::-webkit-slider-thumb {
  margin-top: 1px;
  width: 22px;
  height: 22px;
  background: #a7cfd5;
  border: 2.9px solid #93b5ba;
  border-radius: 100%;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type="range"].themerange:focus::-webkit-slider-runnable-track {
  background: #713d47;
}

input[type="range"].themerange::-moz-range-track {
  background: #edf5f7;
  border: 0;
  border-radius: 25px;
  width: 100%;
  height: 24px;
  cursor: pointer;
}

input[type="range"].themerange::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #a7cfd5;
  border: 2.9px solid #93b5ba;
  border-radius: 100%;
  cursor: pointer;
}

input[type="range"].themerange::-ms-track {
  background: transparent;
  border-color: transparent;
  border-radius: 25px;
  border-width: 0.8px 0;
  color: transparent;
  width: 100%;
  height: 24px;
  cursor: pointer;
}

input[type="range"].themerange::-ms-fill-lower {
  background: #1b0f11;
  border: 0;
  border-radius: 50px;
}

input[type="range"].themerange::-ms-fill-upper {
  background: #edf5f7;
  border: 0;
  border-radius: 50px;
}

input[type="range"].themerange::-ms-thumb {
  width: 22px;
  height: 22px;
  background: #a7cfd5;
  border: 2.9px solid #93b5ba;
  border-radius: 100%;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type="range"].themerange:focus::-ms-fill-lower {
  background: #edf5f7;
}

input[type="range"].themerange:focus::-ms-fill-upper {
  background: #713d47;
}

@supports (-ms-ime-align: auto) {
  input[type="range"].themerange {
    margin: 0;
  }
}

.star-rating {
  font-family: "Font Awesome 5 Free";
}

.star-rating .star-rating__low-description {
  margin-right: 0.5rem;
  display: inline-block;
  color: gray;
  font-size: 0.9rem;
}

.star-rating .star-rating__high-description {
  margin-right: 0.5rem;
  display: inline-block;
  color: gray;
  font-size: 0.9rem;
}

.star-rating > fieldset.star-rating__radios {
  border: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.star-rating > fieldset.star-rating__radios:not(:checked) > input {
  position: absolute;
  visibility: hidden;
  clip: rect(0, 0, 0, 0);
}

.star-rating > fieldset.star-rating__radios:not(:checked) > label {
  float: right;
  width: auto;
  padding: 0 0.05em;
  overflow: visible;
  white-space: nowrap;
  cursor: pointer;
  font-size: 170%;
  color: #a7cfd5;
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios:not(:checked) > label:hover ~ label {
  color: #d3e7ea;
  text-shadow: 0 0 3px #d3e7ea;
}

.star-rating > fieldset.star-rating__radios > label:active {
  position: relative;
  top: 2px;
}

.star-rating > fieldset.star-rating__radios.showpoints input + label {
  position: relative;
  width: 2.7rem;
}

.star-rating > fieldset.star-rating__radios.showpoints input + label::after {
  position: absolute;
  content: attr(data-points);
  /*border: 1px solid black;*/
  font-size: 0.8rem;
  color: gray !important;
  top: 1.9rem;
  left: 0;
  text-shadow: none !important;
}

.star-rating > fieldset.star-rating__radios:not(:checked) > label:before {
  content: "";
  font-weight: 400;
}

.star-rating > fieldset.star-rating__radios:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios:not(:checked) > label:hover ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios > input:checked ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--thumbs:not(:checked) > label:before {
  content: "";
  font-weight: 400;
}

.star-rating > fieldset.star-rating__radios.style--thumbs:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios.style--thumbs:not(:checked) > label:hover ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--thumbs > input:checked ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--hearts:not(:checked) > label:before {
  content: "";
  font-weight: 400;
}

.star-rating > fieldset.star-rating__radios.style--hearts:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios.style--hearts:not(:checked) > label:hover ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--hearts > input:checked ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--balls:not(:checked) > label:before {
  content: "";
  font-weight: 400;
}

.star-rating > fieldset.star-rating__radios.style--balls:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios.style--balls:not(:checked) > label:hover ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--balls > input:checked ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--jquerymobile > input ~ label::before {
  content: "" !important;
  width: 34px;
  height: 26px;
  display: block;
}

.star-rating > fieldset.star-rating__radios.style--jquerymobile:not(:checked) > label:before {
  background: url("./images/radio_feedback_bg.png") no-repeat left;
}

.star-rating > fieldset.star-rating__radios.style--jquerymobile > input:checked + label:before {
  background: url("./images/radio_feedback_image.png") no-repeat left;
}

.star-rating > fieldset.star-rating__radios.style--default > input {
  position: static;
  visibility: visible;
  clip: unset;
  min-width: 2.2rem;
}

.star-rating > fieldset.star-rating__radios.style--default:not(:checked) > label:before {
  content: "";
  font-weight: 400;
}

.star-rating > fieldset.star-rating__radios.style--default:not(:checked) > label:hover,
.star-rating > fieldset.star-rating__radios.style--default:not(:checked) > label:hover ~ label:before {
  content: "";
  font-weight: 900;
}

.star-rating > fieldset.star-rating__radios.style--default > input:checked ~ label:before {
  content: "";
  font-weight: 900;
}

.tablediv tbody tr:hover {
  background-color: rgba(40, 150, 40, 0.2);
}

.tablediv tbody tr:hover a.btn_link,
.tablediv tbody tr:hover td,
.tablediv tbody tr:hover td label,
.tablediv tbody tr:hover td span {
  background: transparent;
}

.noHover tbody tr:hover {
  background: transparent;
}

.current_tr a:focus,
.current_tr a:active {
  background: transparent !important;
}

/*#customer-information-table tr {
    background-color: #fff;
    border: 1px solid $alternateRowBG;
}*/
.ui-mobile-viewport .ui-page-active {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.ui-tooltip {
  color: #222222;
  background: #fff !important;
}

.cb-label {
  padding-left: 40px !important;
}

.dropdown-tooltip {
  background: transparent !important;
}

.dropdown-tooltip:hover .dropdown-menu {
  display: block;
}

.dropdown-tooltip:focus i,
.dropdown-tooltip:hover i,
.open .dropdown-tooltip i {
  color: #75ab35;
}

.pagination .selected {
  background-color: #eaf2f4;
}

/* CustomerCard: Formin taitto. Käyttöä muualla ei suositella    */
/* Author: Riikka Rantonen                                      */
.customercard-heading-border {
  border-bottom: 1px solid;
  margin: 1.5rem 0rem 1.5rem 0.5rem;
}

.customerCard-subheading {
  display: block;
  border-bottom: 1px solid #dadada;
  padding-bottom: 0.5rem;
  margin: 1rem 0 0.5rem 0;
}

.customercard-basic-togglegrearwrapper {
  position: absolute;
  right: 0;
  z-index: 90;
}

.customer-flex-row {
  padding: 0.3rem 0rem;
  display: flex;
  flex-direction: row;
}

.customer-flex-row.with-margins {
  margin: 0.5rem 0 0.75rem;
}

.customer-flex-row .col-xs-7 {
  padding: 0;
  margin: 0;
  float: none !important;
}

.customer-flex-row .asiakas_nrot {
  display: flex;
}

.customer-flex-row .column-1 {
  flex: 0 0 33.3%;
}

.customer-flex-row .column-1 .checkbox_label span {
  min-width: unset;
}

.customer-flex-row .column-2 {
  flex: 0 0 66.66666%;
  display: flex;
}

.customer-flex-row .column-2 #selected-boss,
.customer-flex-row .column-2 #username,
.customer-flex-row .column-2 #Email,
.customer-flex-row .column-2 #username {
  width: 100% !important;
  float: unset !important;
}

.customer-flex-row .column-2 #selected-boss .label_not_editable,
.customer-flex-row .column-2 #username .label_not_editable,
.customer-flex-row .column-2 #Email .label_not_editable,
.customer-flex-row .column-2 #username .label_not_editable {
  float: unset !important;
}

.customer-flex-row .column-2 .column-2__tooltip {
  flex: 0 0 5%;
}

.customer-flex-row .column-2 .column-2__field {
  flex: 0 0 95%;
}

.customer-flex-row .column-2-select {
  flex: 0 0 61.66%;
}

.customerCard .row-spacing {
  display: flex;
  flex: 1 1 auto;
}

.customerCard .row-spacing .flex-row-a-center {
  flex: 0 0 66.6666%;
  display: flex;
}

.customerCard .row-spacing .flex-row-a-center .nowhitespace {
  flex: 0 0 95%;
}

.customerCard .row-spacing .flex-row-a-center .tooltippi {
  flex: 0 0 5%;
  padding-left: 0.3rem;
}

.customerCard .row-spacing .label-wrap {
  flex: 33.3%;
}

.customerCard .row-spacing .desc-label {
  flex: 33.3%;
}

@media only screen and (max-width: 800px) {
  .customerCard .row-spacing {
    display: block;
  }
}

.customerCard .row {
  padding: 0.3rem 0;
  margin: 0;
  display: flex;
  flex-direction: row;
}

.customerCard .row .col-xs-4 {
  flex: 0 0 33.3%;
  margin: 0;
  padding: 0;
}

.customerCard .row .col-xs-8 {
  flex: 0 0 61.6%;
  margin: 0;
  padding: 0;
}

.customerCard .row .col-xs-8 > div {
  width: 100% !important;
  float: none !important;
}

@media only screen and (max-width: 800px) {
  .customerCard .row {
    display: block;
  }
}

@media only screen and (max-width: 800px) {
  .customer-flex-row {
    display: block;
  }
}

.eventhome-flex {
  display: flex;
  flex-direction: row;
}

.eventhome-flex .eventhome-flex-item__registrationLinks__link {
  flex: 1 1 auto;
}

.eventhome-flex .eventhome-flex-item__registrationLinks__date {
  flex: 0 0 10rem;
}

@media only screen and (max-width: 800px) {
  .eventhome-flex .eventhome-flex-item__registrationLinks__date {
    display: none;
  }
}

.eventhome-flex .eventhome-flex-item__registrationLinks__button {
  flex: 0 0 5rem;
  display: flex;
  justify-content: center;
}

.eventhome-flex .eventhome-flex-item__registrationLinks__button .glyphicon {
  padding-right: 0;
}

.eventhome-flex .header {
  border-bottom: 1px solid #dadada;
  border-top: 1px solid #dadada;
  padding-top: 0.5rem;
  min-height: 2rem;
  margin-bottom: 0.25rem;
}

.eventhome__registrationLinks-wrapper {
  margin-bottom: 1rem;
  border-bottom: 1px solid #dadada;
}

.eventhome__acceptrance-dates--wrapper {
  display: flex;
  flex-direction: row;
}

.eventhome__acceptrance-dates--wrapper .date-item {
  flex: 1 1 auto;
}

.eventhome__acceptrance-dates--wrapper .button-item {
  flex: 0 0 5rem;
}

.eventhome__acceptrance-dates--wrapper .button-item .button--wrapper {
  display: flex;
  justify-content: space-around;
}

.product #productInPartRowField {
  display: flex;
  flex-direction: column;
}

.product .product-flex-row_multiple-element-wrapper {
  display: flex;
  flex-direction: column;
}

.product .product-flex-row {
  padding: 0.3rem 0rem;
  display: flex;
  flex-direction: row;
}

.product .product-flex-row .column-2 {
  flex: 0 0 66.66666%;
  display: flex;
  justify-content: space-between;
}

.product .product-flex-row .column-2 .column-2__tooltip {
  flex: 0 0 5%;
}

.product .product-flex-row .column-2 .column-2__field {
  flex: 0 0 95%;
}

.product .product-flex-row .column-1 {
  flex: 0 0 33.3333%;
  display: flex;
}

@media only screen and (max-width: 800px) {
  .product .product-flex-row {
    display: block;
  }
}

.product .product-custom-row {
  display: flex;
  flex: 1 1 auto;
}

.product .product-custom-row .row-spacing {
  display: flex;
  flex: 1 1 auto;
}

.product .product-custom-row .row-spacing .label-wrap {
  flex: 33.333%;
}

.product .product-custom-row .row-spacing .flex-row-a-center {
  flex: 66.666%;
}

@media only screen and (max-width: 800px) {
  .product .product-custom-row .row-spacing {
    display: block;
  }
}

.ilmo-kirjaus-details {
  margin: 0 15px;
  max-width: 83%;
}

.ilmo-kirjaus-details .line-thin {
  margin: 12px 0;
}

.dropdown-menu > li > a {
  padding: 3px 15px;
}

ul.dropdown-menu li ul.dropdown-menu li a {
  width: 100%;
  text-align: left;
}

.multiselect-container .input-group-btn {
  font-size: 11px;
}

#productSearch-result .current_tr td a:hover {
  background-color: transparent;
}

.ilmotable-tieto {
  width: 150px;
}

.tooltip description {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext description {
  visibility: hidden;
  width: 120px;
  background-color: #222222;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext description {
  visibility: visible;
}

.ui-checkbox .labelin_tooltip span label .dropdown-tooltip {
  background: none !important;
}

.modal_tooltip_div .tooltippi {
  width: 50px;
}

.modal_tooltip_div .ui-checkbox {
  width: 180px;
}

#customer .modal-dialog .tablediv .caret {
  float: none;
  margin-top: 7px;
}

.numberField {
  text-align: right;
}

.field-validation-valid {
  display: none;
}

.input-validation-error {
  border: #a94442 solid 2px;
  background-color: #efaaaa !important;
}

.field-validation-error {
  color: #a94442;
  font-weight: bold;
  word-wrap: initial;
  hyphens: none;
}

.validation-summary-errors {
  font-weight: bold;
  color: #a94442;
}

.validation-summary-ok {
  font-weight: bold;
  color: #16a30e;
}

.validation-summary-valid {
  display: none;
}

.postoffice-no-modal {
  width: 95%;
  margin: 0 auto;
}

.postoffice-no-modal .content-1 {
  margin-top: 20px;
}

#postoffice-grapes-editor-divi {
  border: 1px solid gray;
}

#postoffice-grapes-editor-divi #gjs-rte-toolbar .gjs-rte-btn,
#postoffice-grapes-editor-divi .gjs-btn-prim,
#postoffice-grapes-editor-divi .gjs-btnt,
#postoffice-grapes-editor-divi .gjs-clm-tags .gjs-sm-composite.gjs-clm-field,
#postoffice-grapes-editor-divi .gjs-clm-tags .gjs-sm-field.gjs-sm-composite,
#postoffice-grapes-editor-divi .gjs-clm-tags .gjs-sm-stack #gjs-sm-add,
#postoffice-grapes-editor-divi .gjs-color-main,
#postoffice-grapes-editor-divi .gjs-mdl-dialog,
#postoffice-grapes-editor-divi .gjs-off-prv,
#postoffice-grapes-editor-divi .gjs-pn-btn,
#postoffice-grapes-editor-divi .gjs-pn-panel,
#postoffice-grapes-editor-divi .gjs-sm-sector .gjs-sm-composite.gjs-clm-field,
#postoffice-grapes-editor-divi .gjs-sm-sector .gjs-sm-field.gjs-sm-composite,
#postoffice-grapes-editor-divi .gjs-sm-sector .gjs-sm-stack #gjs-sm-add {
  color: #8dc8d7;
}

#postoffice-grapes-editor-divi #gjs-rte-toolbar,
#postoffice-grapes-editor-divi .gjs-bg-main,
#postoffice-grapes-editor-divi .gjs-clm-select option,
#postoffice-grapes-editor-divi .gjs-clm-tags .gjs-sm-colorp-c,
#postoffice-grapes-editor-divi .gjs-editor,
#postoffice-grapes-editor-divi .gjs-mdl-dialog,
#postoffice-grapes-editor-divi .gjs-nv-item .gjs-nv-title-c,
#postoffice-grapes-editor-divi .gjs-off-prv,
#postoffice-grapes-editor-divi .gjs-pn-panel,
#postoffice-grapes-editor-divi .gjs-block,
#postoffice-grapes-editor-divi .gjs-select option,
#postoffice-grapes-editor-divi .gjs-sm-sector .gjs-sm-colorp-c,
#postoffice-grapes-editor-divi .gjs-sm-select option,
#postoffice-grapes-editor-divi .gjs-sm-unit option,
#postoffice-grapes-editor-divi .sp-container {
  background-color: #595757;
}

#postoffice-grapes-editor-divi .gjs-pn-btn,
#postoffice-grapes-editor-divi .gjs-btnt {
  font-size: 23px;
  line-height: 25px;
  height: 35px;
  width: 35px;
}

#postoffice-grapes-editor-divi .gjs-pn-btn:hover,
#postoffice-grapes-editor-divi .gjs-btnt:hover {
  color: #75ab35;
}

#postoffice-grapes-editor-divi .gjs-pn-btn.gjs-pn-active,
#postoffice-grapes-editor-divi .gjs-btnt.gjs-pn-active {
  color: #75ab35;
}

#postoffice-grapes-editor-divi .gjs-block:hover {
  border-color: #75ab35;
}

#postoffice-grapes-editor-divi .gjs-pn-panel {
  height: 45px;
}

#postoffice-grapes-editor-divi .gjs-cv-canvas {
  padding-top: 45px;
}

#postoffice-grapes-editor-divi .gjs-toolbar-item {
  font-size: 14px;
  padding: 6px 7px;
}

#postoffice-grapes-editor-divi .gjs-block-label {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

#postoffice-grapes-editor-divi .gjs-sm-label,
#postoffice-grapes-editor-divi .gjs-trt-trait {
  font-size: 14px;
}

#postoffice-grapes-editor-divi .gjs-device-label {
  font-size: 16px;
}

#postoffice-grapes-editor-divi .gjs-label {
  font-size: 16px;
}

#postoffice-grapes-editor-divi .gjs-editor {
  font-size: 15px;
}

#postoffice-grapes-editor-divi .gjs-pn-panel#gjs-pn-views-container {
  padding-top: 45px;
}

#postoffice-grapes-editor-divi .gjs-radio-item-label {
  font-size: 16px;
  padding: 8px;
}

#postoffice-grapes-editor-divi .gjs-no-app {
  height: 12px;
}

#postoffice-grapes-editor-divi .gjs-sm-header {
  font-size: 18px;
  font-weight: 700;
  padding: 70px 16px;
  line-height: 25px;
}

#postoffice-grapes-editor-divi .gjs-pn-buttons [title="Open Blocks"] {
  order: -1;
}

.help-page {
  background-color: #eaf2f4;
}

.help-page .instructions img {
  border: 1px solid #dadada;
  margin: 30px auto;
  display: block;
  background-color: #fff;
  padding: 5px;
}

.help-page .instructions p {
  font-size: 15px;
  width: 100%;
  display: block;
  margin: 14px 0;
  line-height: 1.6;
}

.help-page .instructions li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.help-page .instructions .panel-title {
  font-size: 18px;
}

.help-page .instructions .panel-body {
  margin-bottom: 15px;
}

.help-page .instructions .panel-body .panel-body .panel-body {
  border-bottom: 1px solid #dadada;
}

.help-page .instructions .h4_2 {
  color: #38c;
  font-size: 16px;
  margin: 20px 0 12px 0;
}

.dp-element {
  display: flex;
  flex-direction: row;
}

.dp-element .input-group {
  flex: 1 auto;
}

.dp-element span.input-group-addon {
  width: 30px;
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.dp-element span.input-group-addon .glyphicon {
  padding: 0;
}

.dp-element .flex-date {
  flex: 0 0 50px;
}

.dp-element .flex-date:nth-child(2) {
  margin-left: 5px;
}

.dp-element .flex-date:nth-child(2) .form-control {
  border-radius: 5px 0 0 5px;
}

.dp-element .flex-date:nth-child(4) .form-control {
  border-radius: 0 5px 5px 0;
  text-align: left;
}

.dp-element .separator {
  width: 25px;
  height: 30px;
  background-color: #dadada;
  content: ":";
  display: block;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
  border: 1px solid #ccc;
}

.dual-dp-element .input-group {
  flex: 1 0 auto;
}

.dual-dp-element span.input-group-addon {
  width: 30px;
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.dual-dp-element span.input-group-addon .glyphicon {
  padding: 0;
}

.dual-dp-element.flex-column .input-group:nth-child(2) {
  margin-top: 10px;
}

.dual-dp-element.flex-row .input-group:nth-child(2) {
  margin-left: 10px;
}

.cb-css [type="checkbox"]:not(:checked),
.cb-css [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.cb-css [type="checkbox"]:not(:checked):disabled + input + label,
.cb-css [type="checkbox"]:checked:disabled + input + label {
  color: #dadada;
  cursor: default;
}

.cb-css [type="checkbox"]:not(:checked):disabled + input + label:before,
.cb-css [type="checkbox"]:checked:disabled + input + label:before {
  opacity: 0.7;
}

.cb-css [type="checkbox"]:not(:checked):disabled + input + label:after,
.cb-css [type="checkbox"]:checked:disabled + input + label:after {
  filter: grayscale(0.7);
}

.cb-css [type="checkbox"]:not(:checked) + [type="hidden"] + label,
.cb-css [type="checkbox"]:checked + [type="hidden"] + label {
  position: relative;
  padding: 8px 8px 8px 45px;
  cursor: pointer;
  display: block;
  height: auto;
  min-height: 30px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cb-css [type="checkbox"]:not(:checked) + [type="hidden"] + label:hover,
.cb-css [type="checkbox"]:checked + [type="hidden"] + label:hover {
  background-color: #f3f6f7;
  border-radius: 5px;
}

.cb-css [type="checkbox"]:not(:checked) + [type="hidden"] + label:before,
.cb-css [type="checkbox"]:checked + [type="hidden"] + label:before {
  content: url(images/checki.png);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 28px;
  height: 27px;
}

.cb-css [type="checkbox"]:not(:checked) + [type="hidden"] + label:after,
.cb-css [type="checkbox"]:checked + [type="hidden"] + label:after {
  content: url(images/checked.png);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 28px;
  height: 27px;
}

.cb-css [type="checkbox"]:focus + [type="hidden"] + label {
  box-shadow: 0 0 4px #38c;
}

.cb-css [type="checkbox"]:focus:hover + [type="hidden"] + label {
  box-shadow: none;
}

.cb-css [type="checkbox"]:not(:checked) + [type="hidden"] + label:after {
  opacity: 0;
}

.cb-css [type="checkbox"]:checked + [type="hidden"] + label:after {
  opacity: 1;
}

.cb-css-simple [type="checkbox"]:not(:checked),
.cb-css-simple [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

.cb-css-simple [type="checkbox"]:not(:checked):disabled + input + label,
.cb-css-simple [type="checkbox"]:checked:disabled + input + label {
  color: #dadada;
  cursor: default;
}

.cb-css-simple [type="checkbox"]:not(:checked):disabled + input + label:before,
.cb-css-simple [type="checkbox"]:checked:disabled + input + label:before {
  opacity: 0.7;
}

.cb-css-simple [type="checkbox"]:not(:checked):disabled + input + label:after,
.cb-css-simple [type="checkbox"]:checked:disabled + input + label:after {
  filter: grayscale(0.7);
}

.cb-css-simple [type="checkbox"]:not(:checked) + label,
.cb-css-simple [type="checkbox"]:checked + label {
  position: relative;
  padding: 0;
  cursor: pointer;
  display: block;
  height: auto;
  width: 28px;
  height: 27px;
}

.cb-css-simple [type="checkbox"]:not(:checked) + label:hover,
.cb-css-simple [type="checkbox"]:checked + label:hover {
  background-color: #f3f6f7;
  border-radius: 5px;
}

.cb-css-simple [type="checkbox"]:not(:checked) + label:before,
.cb-css-simple [type="checkbox"]:checked + label:before {
  content: url(images/checki.png);
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

.cb-css-simple [type="checkbox"]:not(:checked) + label:after,
.cb-css-simple [type="checkbox"]:checked + label:after {
  content: url(images/checked.png);
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

.cb-css-simple [type="checkbox"]:focus + label {
  box-shadow: 0 0 4px #38c;
  border-radius: 5px;
}

.cb-css-simple [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}

.cb-css-simple [type="checkbox"]:checked + label:after {
  opacity: 1;
}

.radio-css [type="radio"]:not(:checked),
.radio-css [type="radio"]:checked {
  position: absolute;
  left: -9999px;
}

.radio-css [type="radio"]:not(:checked):disabled + label,
.radio-css [type="radio"]:checked:disabled + label {
  color: #dadada;
  cursor: default;
}

.radio-css [type="radio"]:not(:checked):disabled + label:before,
.radio-css [type="radio"]:checked:disabled + label:before {
  opacity: 0.7;
}

.radio-css [type="radio"]:not(:checked):disabled + label:after,
.radio-css [type="radio"]:checked:disabled + label:after {
  filter: grayscale(0.7);
}

.radio-css [type="radio"]:not(:checked) + label,
.radio-css [type="radio"]:checked + label {
  position: relative;
  padding: 8px 8px 8px 45px;
  cursor: pointer;
  display: block;
  height: auto;
  min-height: 30px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.radio-css [type="radio"]:not(:checked) + label:hover,
.radio-css [type="radio"]:checked + label:hover {
  background-color: #f3f6f7;
  border-radius: 5px;
}

.radio-css [type="radio"]:not(:checked) + label:before,
.radio-css [type="radio"]:checked + label:before {
  content: url(images/radio.png);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 28px;
  height: 27px;
}

.radio-css [type="radio"]:not(:checked) + label:after,
.radio-css [type="radio"]:checked + label:after {
  content: url(images/radio-selected.png);
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
  width: 28px;
  height: 27px;
}

.radio-css [type="radio"]:focus + label {
  box-shadow: 0 0 4px #38c;
}

.radio-css [type="radio"]:not(:checked) + label:after {
  opacity: 0;
}

.radio-css [type="radio"]:checked + label:after {
  opacity: 1;
}

.btn-green {
  background-color: #5b9943;
  color: #fff;
  font-size: 12px;
  border: 2px solid transparent;
  font-weight: bold;
  float: left;
  height: 30px;
  width: auto;
  min-width: 120px;
  padding: 7px 10px;
  text-align: center;
  line-height: 15px;
  text-transform: uppercase;
  border-radius: 4px;
}

.btn-green:hover, .btn-green:active {
  background-color: #83c37c;
  color: #fff;
  text-decoration: none;
}

.btn-green:focus {
  box-shadow: 0 0 6px #4696d7;
  border: 2px solid #d8efed;
}

.btn-green:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.btn-green + .btn-green {
  margin-left: 7px;
}

.button_green {
  background-color: #6eb068 !important;
  color: #fff !important;
  font-size: 12px;
  border: 2px solid transparent;
  font-weight: bold !important;
  float: left;
  margin-right: 2%;
  padding: 7px 10px;
  border-radius: 3px !important;
  text-align: center;
  line-height: 20px !important;
  text-transform: uppercase;
}

.button_green:hover, .button_green:active {
  background-color: #83c37c !important;
  border: 2px solid transparent;
  color: #fff !important;
  text-decoration: none !important;
}

.tooltip-parent .tooltiptext {
  display: none;
  opacity: 0;
  width: 26%;
  background-color: #222222;
  color: #dadada;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 101.5%;
  z-index: 1;
}

.tooltip-parent:hover .tooltiptext {
  display: block;
  opacity: 1;
}

.tooltip-parent .tooltip-title {
  font-size: 16px;
  font-weight: 700;
  color: #b8d5b0;
  text-transform: uppercase;
  margin-top: 10px;
}

.tooltip-parent .tooltip-subtitle {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 700;
}

.tooltip-parent .tooltip-body {
  padding: 7px;
}

.tooltip-parent .tooltip-img {
  animation: flashbackground 2.5s;
  animation-iteration-count: infinite;
  width: 100%;
}

.logo-gallery-table {
  width: 80%;
  position: relative;
}

.logo-gallery-table tbody tr:hover {
  background-color: rgba(40, 150, 40, 0.2);
}

.logo-gallery-table .desc {
  padding-left: 15px;
}

.logo-gallery-table .kuvapaikka {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 1px solid #fff;
  background: #b8d5b0 url(images/gallery_bg.png) no-repeat center;
  border-radius: 5px;
}

.logo-gallery-table .kuvapaikka:hover {
  border-color: #75ab35;
}

.logo-gallery-table .kuvapaikka img {
  border-radius: 5px;
}

.logo-gallery-table .kuvapaikka img:hover {
  border-color: #75ab35;
}

.gallery-img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 3px;
  border: 3px solid #ddd;
  border-radius: 4px;
}

.gallery-img-thumbnail.animation-drophere {
  background-color: #75ab35;
}

.gallery-img-thumbnail.dontclickme {
  opacity: 0.5;
  filter: grayscale(70%);
}

.animation-drophere {
  animation: flashborder 1.7s;
  animation-iteration-count: infinite;
}

.animation-flashbackground {
  animation: flashbackground 1.7s;
  animation-iteration-count: infinite;
}

.logo_delete_div a {
  text-align: center !important;
  display: inline !important;
}

.logogalleria {
  clear: both;
  margin: 5px 0;
  overflow: auto;
}

.logogalleria_logo {
  border: 1px solid #eee;
  height: 120px;
  text-align: left;
  width: 120px;
}

.logogalleria_logo .img_link2,
.logogalleria_logo .img_link2 img {
  width: 100% !important;
}

.kuvapaikka_table table td {
  width: 100px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.table_header_logo td {
  font-weight: bold;
  width: 100px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.logotable-heading {
  padding: 10px 0px 14px 5px;
  border-bottom: 1px solid gray;
}

.input-file-custom {
  position: relative;
}

.input-file-custom input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.input-file-custom input:focus + label {
  box-shadow: 0 0 4px #38c;
}

.divider-heading {
  font-size: 16px !important;
  color: #8d8d8d !important;
  text-align: center;
  margin: 10px 0 15px 0;
  border-bottom: 2px solid #aaa;
  padding-bottom: 5px;
  width: 100%;
}

.divider-heading b,
.divider-heading strong {
  color: #444;
  font-weight: 700;
  white-space: nowrap;
}

.modal-title {
  font-size: 18px !important;
  font-weight: bold;
  margin-left: 20px !important;
  color: #ddd !important;
}

.modal-body {
  padding: 20px 30px 5px 30px !important;
  min-height: 100px;
  clear: both;
}

.modal-body:after {
  display: table;
  content: "";
  clear: both;
}

.modal-body label {
  width: 100%;
}

.modal-body .checkboxlist_select label {
  width: auto;
  margin-bottom: 5px;
}

.modal-body .panel-collapse label {
  width: 100%;
  margin-bottom: 5px;
}

.modal-body .dropdown-menu {
  max-height: 300px;
  overflow: auto;
}

.modal-body .col-xs-4,
.modal-body .col-xs-8 {
  width: 100%;
}

.modal-body .modal50 {
  float: none;
}

.modal-body .col-xs-5 {
  width: 40% !important;
}

.modal-body .col-xs-7 {
  width: 60% !important;
}

.modal-body .modal-body {
  float: none;
  width: 100%;
}

.modal-body .modal-body .container-fluid {
  margin-top: 20px;
}

.modal-body .kysymys_otsikko_div {
  float: left;
  width: 180px !important;
}

.modal-body .row .tooltippi .dropdown-menu {
  position: absolute !important;
}

.modal-body .tinymceEditor div {
  width: auto;
}

.modal-footer {
  background-color: #222222;
  padding: 5px;
}

.modal-footer .btn_link {
  color: #fff;
}

#toast-container .toast {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  text-align: left;
  width: 100%;
  min-width: 350px;
  max-width: 500px;
}

#toast-container .toast-warning {
  background-color: #d79128;
}

#toast-container .toast-error {
  background-color: #a94442;
}

#toast-container .toast-info {
  background-color: #38c;
}

#toast-container .toast-success {
  background-color: #75ab35;
}

#toast-container .toast-top-right {
  top: 94px;
}

.hiddenOptions {
  display: none;
  clear: both;
}

.hiddenOptions:after {
  display: table;
  content: "";
  clear: both;
}

.showOptions {
  display: block;
  clear: both;
}

.showOptions:after {
  display: table;
  content: "";
  clear: both;
}

.form-control {
  height: 30px;
  box-shadow: none;
  padding: 6px 8px !important;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-control:hover {
  border: 1px solid #75ab35;
}

.form-control-large {
  width: 100%;
  max-width: 350px;
}

.form-control-medium {
  width: 140px;
}

.form-control-small {
  width: 60px;
}

textarea#InternalInformation {
  height: 221px;
  max-height: 880px;
}

#main_application .table_header th {
  padding-left: 15px !important;
}

.ui-checkbox .form-control {
  height: auto !important;
}

.generatedRadioOrCheckbox {
  width: auto;
  float: left;
}

.role-settings .btn-group {
  min-width: 125px;
}

.kielet_taulu td {
  text-transform: lowercase;
}

.kyselytable tr td label {
  margin-bottom: 0;
}

#main_application .sortable .table_header th {
  padding-left: 15px !important;
}

.modal-datepicker {
  z-index: 1151 !important;
}

.overlay-layer {
  width: 200px;
  height: 40px;
  position: absolute;
  margin-top: -40px;
  opacity: 0.5;
  background-color: #000000;
  z-index: 0;
  font-size: 25px;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
}

.upload_btn {
  position: absolute;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  opacity: 0;
  cursor: pointer !important;
}

table td .btn_link {
  padding: 5px 3px 5px 5px !important;
}

.no_checkbox_margin .ui-checkbox {
  margin-right: 0 !important;
}

.toast {
  width: 20%;
  height: 20px;
  height: auto;
  position: fixed;
  left: 40%;
  top: 40%;
  margin-left: -100px;
  /*bottom:10px;*/
  background-color: #383838;
  color: #f0f0f0;
  font-family: Calibri;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 0px 24px -1px #383838;
  border-radius: 4px;
}

.badge-notify {
  background: #dd2115 !important;
  position: relative;
  top: -10px;
  cursor: pointer;
}

.report_modal {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.report_modal .modal-dialog {
  width: 100%;
}

#fade {
  display: none;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /*for IE*/
  min-height: 100%;
  background-color: black;
  filter: alpha(opacity=0);
  /* IE */
  -moz-opacity: 0;
  /* Mozilla */
  opacity: 0;
  /* CSS3 */
  z-index: 1001;
}

.dialog-overflow {
  height: 300px;
  overflow: auto;
}

.codelinkki {
  max-width: 160px;
  text-overflow: ellipsis;
  overflow: hidden;
}

#modal {
  display: none;
  position: fixed;
  top: 40%;
  left: 45%;
  width: 200px;
  height: 200px;
  padding: 70px 70px 0px;
  background-color: none;
  z-index: 9999;
  text-align: center;
  overflow: auto;
}

.ui-icon-loading {
  display: none;
}

.sorting th.header {
  background-repeat: no-repeat;
  cursor: pointer;
  background-position: right;
}

th.headerSortDown {
  background-image: url(images/asc.gif);
  background-repeat: no-repeat;
}

.nomargin label {
  margin: 0 !important;
}

th.headerSortUp {
  background-image: url(images/desc.gif);
  background-repeat: no-repeat;
}

.table_header th {
  padding-left: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle !important;
}

.header {
  height: 35px;
  padding: 6px 0;
  background: #fff;
}

.col-xs-4_modal {
  width: 30% !important;
  float: left;
}

.chekiboxeja .ui-checkbox {
  width: auto !important;
  float: left;
}

.chekiboxeja .ui-checkbox .checkbox_label,
.chekiboxeja .ui-checkbox .checkbox_label_teksti {
  width: 30px !important;
  color: #fff;
  font-size: 1px;
}

.ui-responsive .yhteensa td {
  /*background: #deedf2;*/
  font-weight: bold;
  color: #434343 !important;
  border-bottom: 2px solid #ddd !important;
}

.ui-responsive .yhteensa_kaikki td {
  background: #deedf2;
  font-weight: bold;
  color: #434343 !important;
  border-bottom: 2px solid #ddd !important;
}

.lajitteleva_otsikko {
  font-weight: bold;
}

.disabledlink,
.row .disabledlink {
  color: #808080 !important;
  cursor: default;
}

.disabledlink:active {
  pointer-events: none;
  color: #808080 !important;
}

.disabledlink:hover,
.row .disabledlink:hover {
  background: #ecf5f9 !important;
  color: grey !important;
  border-radius: 4px;
}

.top_fixed {
  position: fixed;
  top: 0;
  background: #fff;
  width: 100%;
  height: auto;
  z-index: 200;
}

.contio_top {
  display: table;
  height: auto;
  padding-bottom: 8px;
  width: 100%;
}

.systemlogo {
  margin-right: 20px;
}

.systemlogo .contiologo {
  background: url(images/contioevent-logo.png) no-repeat;
  width: 197px;
  height: 27px;
  display: block;
  color: transparent !important;
  margin-top: 7px;
  background-size: contain;
}

.systemlogo .contiologo:focus {
  background: transparent url(images/contioevent-logo.png) no-repeat !important;
  background-size: contain !important;
}

.top_table {
  display: table;
  float: left;
  width: 100%;
}

.top_tr {
  display: table-row;
  float: left;
  margin-top: 10px;
  width: 100%;
}

.top_td {
  display: table-cell;
  vertical-align: center;
  text-align: left;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-top: -5px;
  margin-bottom: 5px;
}

.top_td img {
  vertical-align: initial;
}

#content-event-header .ui-link,
#content-event-header .event_paattynyt,
#content-event-header .event_haettavana,
#content-event-header .event_umpeutunut,
#content-event-header .event_julkaisematon,
#content-event-header .event_kaynnissa,
#content-event-header .event_valittu,
#content-event-header .event_peruutettu,
#content-event-header .event_tuntematon {
  height: 34px !important;
  line-height: 30px;
  min-width: 60px;
}

#content-event-header #EventBasicInformation {
  width: auto;
  max-width: 515px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  line-height: 16px;
  height: 24px !important;
  text-align: left;
}

.tapahtuman_pvm {
  float: left;
  padding-top: 0;
  padding-left: 5px;
  line-height: 14px;
  font-size: 12px;
  color: #64666d;
  clear: both;
  height: 20px !important;
  margin-top: 0;
}

#kayttajadropdown {
  float: right;
  padding-top: 8px;
}

#kayttajadropdown .top-links {
  float: left;
  color: #eee;
  font-size: 13px;
  line-height: 35px;
  margin-right: 3px;
}

#kayttajadropdown .top-links a:link {
  color: #b1d06f;
  font-weight: normal;
  font-size: 13px;
}

#kayttajadropdown .top-links a:hover {
  text-decoration: none;
}

#kayttajadropdown .top-links .dropdown-menu > li > a {
  padding: 6px 5px;
  width: 90%;
  margin: auto;
  white-space: normal;
}

#kayttajadropdown .top-links ul {
  margin-top: -1px;
}

.language a {
  display: inline-block;
  margin-right: 3px;
}

.language img {
  box-shadow: inset 0 0 5px black;
  border-radius: 30px;
  filter: grayscale(0.45);
  border: 1px solid #5b9943;
  height: 29px;
}

.language img:hover {
  filter: grayscale(0);
}

.helppi {
  float: left;
  background: url("images/help.png") no-repeat !important;
  width: 29px;
  height: 29px;
}

.helppi:hover {
  background: url("images/help_hover.png") no-repeat !important;
}

.alert_div {
  margin-right: 10px;
  float: left;
}

.alert_div .badge {
  height: 29px;
  width: auto;
  min-width: 29px;
  border-radius: 15px;
  line-height: 24px;
  background-color: #d79128 !important;
}

.alert_div .dropdown-menu {
  min-width: 270px;
  left: initial;
  transform: translate(-45%);
  border-top: 7px solid #d79128;
  border-bottom: 7px solid #d79128;
  width: 100%;
  top: 15px;
}

.alert_div .dropdown-menu a {
  padding: 6px 5px;
  width: 90%;
  margin: auto;
}

.alert_div .dropdown-menu a::first-line {
  font-weight: 700;
}

.alert_div .dropdown-menu li {
  width: 90%;
  position: relative;
}

.alert_div .dropdown-menu li:last-child {
  display: none;
}

.alert_div .dropdown-menu button {
  width: auto;
  position: absolute;
  top: -5px;
  right: -19px;
  display: block;
  padding: 5px;
}

button#userMenuPrimary {
  outline: none;
  border: none;
  font-weight: 700;
  margin: -3px 0 0 5px;
  position: relative;
  width: 100%;
  color: #38c;
  background: transparent;
}

button#userMenuPrimary:hover {
  background-color: #edf4f7;
  color: #75ab35;
}

button#userMenuPrimary span {
  display: inline;
  position: relative;
  top: -3px;
}

button#userMenuPrimary .caret {
  border-width: 6px;
  float: none;
  margin: -6px 0 0 0;
}

button#userMenuPrimary .glyphicon-user {
  font-size: 20px;
}

.menu-background {
  width: 100%;
  height: 40px;
  clear: both;
  background-color: #2f2e2c;
  box-shadow: 0px 7px 5px -6px #bbb;
}

.menu-background .navbar-brand {
  display: none;
}

.menu-background .navbar-default {
  border: none !important;
}

.menu-background nav {
  background: transparent;
}

.menu-background .active a.mainmenu-mainpage-active {
  background: #5b9943 url(images/mainmenu-mainpage.png) no-repeat center center;
  width: 56px;
  height: 40px;
  float: left;
}

.menu-background .active a.mainmenu-mainpage-active:hover {
  background-color: #75ab35;
}

.menu-background .active a.mainmenu-mainpage-active:focus {
  background-color: #75ab35;
}

.menu-background .currentPage {
  font-weight: 700 !important;
  color: #38c !important;
  font-size: 14px !important;
}

.menu-background .navbar-toggle {
  background: transparent;
  padding: 0;
  border: none;
}

.menu-background .content {
  position: relative;
}

.menu-background .navbar {
  height: 40px;
  min-height: 40px;
  border: none;
}

.menu-background .navbar-nav {
  max-height: 80vh;
}

.menu-background .navbar-nav .nav-header {
  padding: 5px 5px 5px 10px;
  font-weight: bold;
  color: #64666d;
  font-size: 1.1em;
}

.menu-background .navbar-nav .dropdown.disabled a {
  height: 40px;
  line-height: 40px;
  letter-spacing: 2px;
  font-size: 13px;
  padding: 0 10px;
  color: #64666d !important;
  font-weight: 700;
  pointer-events: none;
  cursor: default !important;
}

.menu-background .navbar-nav .dropdown button {
  color: #c1c1c1;
  height: 40px;
  letter-spacing: 2px;
  font-size: 13px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-weight: bold;
}

.menu-background .navbar-nav .dropdown button:focus, .menu-background .navbar-nav .dropdown button:hover {
  background-color: black;
}

.menu-background .navbar-nav .dropdown button .caret {
  float: left !important;
  margin-left: 5px;
  display: inline !important;
  margin-top: 7px !important;
}

.menu-background .navbar-nav .dropdown button .menuspan {
  display: inline !important;
  float: left;
}

.menu-background .navbar-nav .dropdown-menu-large {
  min-width: 600px;
  padding: 10px;
}

.menu-background .navbar-nav .dropdown-menu-large ul {
  list-style: none;
  padding-left: 0;
}

.menu-background .navbar-nav .dropdown-menu-large ul li {
  width: 100%;
  float: left;
}

.menu-background .navbar-nav .list-heading {
  width: 100%;
}

.menu-background .navbar-nav .list-heading .menu-event-name {
  padding: 0px 22px;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  max-width: 570px;
  text-overflow: ellipsis;
  font-size: 18px !important;
}

.menu-background .navbar-nav .dropdown_2 .dropdown-menu {
  padding: 15px;
}

.menu-background .navbar-nav .dropdown_2 .dropdown-menu li {
  width: 100%;
  float: left;
}

.menu-background .navbar-nav .dropdown ul a {
  padding: 3px 3px 3px 10px;
  margin-left: 0;
  color: #38c;
  float: left;
  clear: both;
  letter-spacing: 0;
  height: auto;
  min-width: 120px;
  width: 100%;
  border-radius: 4px;
}

.menu-background .navbar-nav .dropdown ul a:hover {
  background-color: #edf4f7;
}

.menu-background .navbar-nav .dropdown ul a:focus {
  box-shadow: 0 0 5px #38c !important;
}

.caret {
  float: right;
  margin-top: 11px;
  margin-right: 10px;
  transition: 200ms ease;
}

.btn_link .caret {
  margin-top: 7px;
  margin-left: 4px;
}

.ui-btn .caret {
  display: block !important;
}

.multiselect-container,
.btn-group .multiselect-container li {
  width: 100%;
}

.table_ellipsis .btn_link,
.table_ellipsis label {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.modal-col6 .modal-body .col-xs-6,
.modal-col6 .col-xs-6 {
  width: 50%;
}

.modal-col6 .modal-footer {
  clear: both;
}

#modal_new_order .modal-dialog,
#modal_order_edit .modal-dialog,
#modal_edit_order .modal-dialog {
  width: 96%;
  max-width: 1200px;
}

#modal_order .modal-dialog {
  width: 96%;
  max-width: 900px;
}

.customer_email label {
  font-weight: normal;
}

.CollapseMark .no_icon_link {
  background: none !important;
  padding-left: 8px !important;
  padding-top: 2px;
}

.textbox_label {
  padding-top: 8px;
}

.btn-group .multiselect {
  background: transparent linear-gradient(to bottom, #fff 0%, #f4f7f7 100%, #fff 100%, #ccc 100%) repeat scroll 0 0;
  /*padding: 6px 0 3px 10px !important;*/
  padding: 0 !important;
  text-align: left;
  height: 30px;
  border: 1px solid #dee4ed;
  border-bottom: 1px solid #d1d8e2;
  color: #64666d !important;
  display: flex;
}

.info_divi div {
  max-width: 90%;
  float: left;
}

.info_divi_iso div {
  width: 90% !important;
}

.info_divi_iso .tooltippi {
  width: 20px !important;
}

.tooltip_div .tooltippi {
  float: left;
}

.tt_link:hover {
  text-decoration: none;
}

.btn-group .multiselect span {
  padding: 6px 0 3px 10px !important;
}

.kieliselite .btn-group .multiselect {
  height: 30px;
  padding-top: 0 !important;
}

.ui-selectmenu-button,
.ui-selectmenu-button span {
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  background: #88c182 !important;
}

.nav-tabs .dropdown-menu,
.navbar .dropdown-menu {
  margin-top: 0;
}

.ui-select .ui-btn {
  padding: 0 !important;
}

/* END OF HOVER */
.ui-checkbox .ui-btn,
.ui-radio .ui-btn {
  float: left;
}

#customer .ilmonyllapito_asiakas_table .table_header th {
  padding: 5px;
}

.ui-btn span {
  display: none !important;
}

.ui-btn span.input-group-btn, .ui-btn span.input-group-addon {
  display: table-cell !important;
}

#modal-provisioningedit .modal-footer .ui-btn span,
#modal_tuoteryhma .ui-btn span,
#modal_tuoteryhma2 .ui-btn span,
#modal_deactivate-single .ui-btn span,
#modal_delete .ui-btn span {
  display: initial !important;
}

.checkbox_span,
.ui-btn .checkbox_span {
  display: block !important;
  padding-left: 32px;
  padding-top: 2px;
}

.ilmonyllapito_table_checkbox {
  width: 30px;
  margin: auto;
}

#EventBasic .checkbox_span,
.ui-btn .checkbox_span {
  display: block !important;
  padding-left: 32px;
  min-width: 300px;
}

tr td .ui-btn .checkbox_span {
  min-width: 30px !important;
}

.panel-title .checkbox_span,
.ui-btn .checkbox_span {
  padding-top: 0;
}

.ui-datepicker-header {
  background: #222222;
  border: none !important;
  color: #fff !important;
}

.ui-datepicker-prev {
  background: url(images/calendar_left.png) no-repeat center;
}

.ui-datepicker-next {
  background: url(images/calendar_right.png) no-repeat center;
}

.ui-datepicker-calendar a:hover {
  background: #edf4f7 !important;
}

.ui-datepicker-current-day a {
  color: #fff !important;
  background: #5b9943 !important;
  border-radius: 4px;
}

.ui-datepicker-today {
  background: #fbf9ee;
  border: 1px solid #fcefa1;
  color: #222222;
}

.main {
  background: #eaf2f4;
  padding: 15px 0 20px 0;
  width: 100%;
  margin-top: 130px;
  flex: 1 auto;
  -ms-flex: none;
  box-shadow: 0 0 10px inset #bbb;
}

.main .btn {
  border-radius: 4px;
}

.main .content {
  padding-bottom: 30px;
}

.main .link_dropdown .btn-group .multiselect:focus,
.main .link_dropdown .btn-group .multiselect:hover {
  box-shadow: 0 !important;
  border: 0px solid #fff !important;
}

.toimintopainikkeet {
  background: #fff;
  padding: 11px 0 3px 0;
  width: 100%;
  height: 52px;
  box-shadow: 0 8px 6px -6px #bbb;
  position: fixed;
  top: 92px;
  width: 100%;
  z-index: 199;
}

.toimintopainikkeet .container-fluid {
  padding: 0 !important;
}

.toimintopainikkeet .dropdown-menu {
  margin-top: 0;
}

.toimintopainikkeet .nav li .dropdown .btn_link {
  width: 90% !important;
  margin-left: 5%;
  text-align: left !important;
}

.toimintopainikkeet .btn_link {
  margin-right: 0;
}

.toimintopainikkeet .content {
  padding-bottom: 0;
}

.toimintopainikkeet .mobimenu {
  background: transparent;
}

.ui-btn .multiselect-selected-text,
.multiselect-selected-text {
  display: inherit !important;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}

.kieliselite .ui-btn .multiselect-selected-text,
.multiselect-selected-text {
  width: 90%;
}

#existing-mailing-groups .checkboxlist_select .checkbox_label {
  max-width: 100%;
}

.ui-checkbox .checkbox_label {
  float: left;
  width: 100% !important;
  border: none !important;
}

.ui-checkbox .checkbox_label .checkbox_span,
.ui-checkbox .ui-btn {
  float: left;
  width: 100% !important;
  background: url(images/checki.png) no-repeat left !important;
  border: none !important;
  height: 28px;
}

.logo_div {
  background: #fff;
  padding: 8px 10px;
  width: 160px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  margin-right: 20px;
}

.ei_tulostettu {
  background: transparent url(images/ei_tulostettu.png) no-repeat;
  width: 28px;
  height: 28px;
  float: left;
}

.ei_tulostettu:hover {
  background: transparent url(images/ei_tulostettu_hover.png) no-repeat;
}

.tulostettu {
  background: transparent url(images/tulostettu.png) no-repeat;
  width: 28px;
  height: 28px;
  float: left;
}

.tulostettu:hover {
  background: transparent url(images/tulostettu_hover.png) no-repeat;
}

#collapseSettings .checkboxText {
  float: left;
  width: auto;
  padding-top: 6px;
  padding-left: 4px;
}

.tr_paataso td {
  font-size: 14px;
  padding: 4px !important;
}

.tr_paataso2 .taulukko_label_paataso2 {
  padding-top: 4px;
}

.table_nopadding .tr_paataso2 .taulukko_label_paataso2 {
  padding-top: 2px;
}

.tr_paataso_keski td {
  font-size: 13px;
  padding-top: 8px !important;
}

.tr_paataso_keski2 td,
.tr_paataso_alempi td {
  font-size: 13px;
  padding-top: 8px !important;
}

.tr_paataso_keski2 td {
  padding-left: 16px;
}

.tr_paataso_alempi td {
  padding-left: 29px;
}

.tr_paataso_alempi td a {
  font-weight: normal !important;
}

.paataso_tr td {
  border-bottom: none;
  background: #eff5f6;
  font-size: 1.1em;
}

.ui-responsive .paataso_tr {
  background: #eff5f6;
}

.tr_alt,
.ui-responsive .tr_alt,
.tr_alt td {
  background: #f5f9fa !important;
}

.tr_selected,
.ui-responsive .tr_selected {
  background: #cde3e9;
}

.postinro_div .ui-input-text {
  width: 100px !important;
  float: left;
}

.valiviiva {
  float: left;
  margin: 5px 5px 0 5px;
}

/*#common-dialog-found-content {
    min-height: 650px;
}*/
#event-information .btn_link {
  margin-top: -5px;
}

.no-link td {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.kieliselite {
  width: 200px;
  float: right;
}

.ui-checkbox {
  float: left;
  margin-right: 5px;
  width: 100%;
}

.panel-title .ui-checkbox {
  margin-right: 10px;
}

.panel-title__icon {
  position: absolute;
  top: 32%;
  left: 2.25rem;
  width: auto;
  opacity: 0.5;
}

.btn-group,
.btn-group button {
  width: 100%;
}

.btn_link,
.tapahtumalinkki {
  font-weight: normal;
  margin-right: 10px;
  padding: 7px 5px !important;
  color: #38c;
  width: auto;
  border: none;
  text-align: center;
  background: none;
  float: left;
  border: 1px solid transparent;
  border-radius: 4px;
}

.btn_link:hover,
.tapahtumalinkki:hover {
  background: #ecf5f9;
  cursor: pointer;
  text-decoration: none;
}

.btn_link.customer-card_edit-username,
.tapahtumalinkki.customer-card_edit-username {
  padding: 0 !important;
}

.icon_only_btn {
  padding: 0 !important;
  font-size: 1.2em;
  margin-right: 0 !important;
}

.open_width {
  width: 95% !important;
}

.customercard__basic--settings {
  display: flex;
  flex: 0 0 40px;
  justify-content: center;
  height: 40px;
}

.archived {
  background-color: #dddddd !important;
}

.emaildropdown ul.dropdown-menu {
  min-width: 100px !important;
}

.mobimenu .btn_link {
  margin-right: 3px !important;
}

.btn_link_small {
  padding: 3px 5px !important;
}

table .btn_link,
table .tapahtumalinkki {
  text-align: left !important;
  margin: 0;
}

.table-responsive table .btn_autowidth {
  width: auto !important;
}

.sorting th {
  color: #367fba;
}

.sorting th:hover {
  background-color: #edf4f7 !important;
}

.tablesorter th,
.tablesorter td {
  padding-right: 8px;
  padding-left: 5px;
}

.fileinput-button:hover {
  font-weight: normal;
  background: #ecf5f9;
  border-radius: 2px !important;
  cursor: pointer;
  text-decoration: none;
  color: #38c;
  border-color: transparent !important;
}

.tapahtumalinkki2 {
  padding: 5px !important;
  border-radius: 4px;
}

.tapahtumalinkki2:hover {
  background: #edf4f7 !important;
  cursor: pointer;
  text-decoration: none;
}

.taso2 {
  padding-left: 40px !important;
}

.modal-dialog {
  max-height: 90%;
}

.select_button {
  width: 70%;
  float: left;
  margin-right: 10px;
}

.ui-checkbox .ui-btn {
  border: 1px solid #cccccc;
  padding: 0px !important;
  height: 28px;
  margin-left: 5px;
}

.show-on-hover:hover > ul.dropdown-menu {
  display: block;
}

.ui-icon-check::after,
html .ui-btn.ui-checkbox-on.ui-checkbox-on::after,
.ui-checkbox-on {
  background: url(images/checked.png) no-repeat center;
  width: 28px !important;
  height: 28px !important;
  margin-left: -1px;
  margin-top: -14px;
  border-radius: 4px;
}

.tablevaligntop td {
  vertical-align: top;
}

.panel-title a:link {
  width: 100%;
  height: 38px;
  line-height: 25px;
  float: left;
  padding: 7px 10px 10px 15px;
  outline: 0 none;
  color: #64666d;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.95em;
  padding-left: 30px;
  background: #f6fafb url(images/arrow_up.png) no-repeat 1px center;
  border-radius: 4px;
}

.panel-title a:link:hover {
  background-color: #f1f9fb;
}

.panel-title a:link ul li {
  line-height: 18px;
}

.panel-title a:link span {
  font-weight: bold;
}

.select__wrapper {
  flex: 1 0 auto;
}

.vertical_separator {
  height: 25px;
  width: 1px;
  background-color: #c0c0c0;
  align-self: center;
}

.selectAllbtn {
  background: none;
  border: 0;
  color: #38c;
}

.selectAllbtn__wrapper {
  flex: 0 0 35px;
  align-self: center;
  justify-content: center;
}

.panel-title .collapsed:focus,
.panel-title a:focus,
.panel-title .CollapseMark:focus,
.CollapseMark a:focus {
  color: #515151;
  font-weight: bold;
  border: 1px solid #becdd9 !important;
  box-shadow: 0 0 6px #86bfed !important;
  border: 1px solid #becdd9 !important;
  border-radius: 4px;
}

.responsive-tabs-container .tab-pane {
  padding: 15px !important;
}

.responsive-tabs-container a.active {
  padding: 7px 10px 10px 15px;
  outline: 0 none;
  color: #414141;
  border: none !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.95em;
  padding-left: 45px !important;
  background: #f3f7f9 url(images/arrow_up.png) no-repeat left !important;
  border-radius: 4px;
}

.panel-heading,
.panel-group,
.panel-default,
.panel-collapse,
.panel-body,
.panel-title {
  float: left;
  clear: both;
  width: 100%;
}

#organizer_add_popup_content .modal-header {
  font-size: 18px !important;
  font-weight: bold;
  padding-left: 50px !important;
  color: #ddd !important;
}

.postitusluokat .col-xs-6 {
  margin-bottom: 5px;
}

.panel-body {
  padding: 15px 10px !important;
}

.content-50 .div_row_main {
  width: 48%;
  margin-right: 2%;
  float: left;
}

.checkbox_label span {
  line-height: 1.9;
  cursor: pointer;
  float: left;
  min-width: 400px;
}

.checkboxlist_select .checkbox_label {
  float: left;
}

.sub_accordeon_checkbox_label {
  cursor: pointer;
  margin-top: 3px;
  float: left;
}

.table-responsive {
  clear: both;
}

.table {
  width: 98%;
}

.ui-responsive .ui-select {
  margin-top: 4px;
  margin-bottom: 4px;
}

.padding_right {
  padding-right: 50px !important;
}

.settings_divs .panel-default {
  border: none;
}

.checkboxlist_select {
  width: 100%;
  float: left;
  padding: 15px;
  margin-right: 10px;
  border-radius: 4px;
}

.navbar-header2 {
  float: left;
}

.checkboxlist_select label {
  cursor: pointer;
}

#participantqueue .CollapseMark {
  height: 35px;
}

#participantqueue .ui-link {
  padding-top: 6px;
  padding-bottom: 6px;
  height: 30px;
}

#alert-view-admin {
  float: left;
  clear: both;
  width: 100%;
}

.tooltippi {
  width: 20px;
  border: none !important;
  text-align: center;
  float: none;
  display: normal !important;
}

.tooltippi i {
  font-size: 20px;
  color: #b6cdd7;
}

.tooltippi a {
  cursor: default !important;
}

.tooltippi .btn,
.tooltippi .btn-default {
  border: none !important;
  border-color: #fff !important;
  padding: 1px !important;
  margin: 5px 0 0 5px;
  cursor: default !important;
}

.tooltippi .dropdown-menu {
  width: 200px;
  right: 0px !important;
  left: auto;
  hyphens: none;
  text-align: center;
  min-width: 230px;
}

.tooltippi .dropdown-menu li {
  padding: 10px 15px !important;
}

.tooltip_nomargintop .tooltippi .btn {
  margin-top: 0;
}

.checkbox_span_paddingtop,
.panel-title .checkbox_span_paddingtop {
  padding-top: 6px !important;
}

.line .panel-group .panel {
  margin-bottom: 5px !important;
}

.line .panel-group .panel tooltippi .btn {
  margin-top: 15px;
}

.tooltip_div > .form-control,
.tooltip_div .ui-input-text {
  width: 80% !important;
  float: left;
}

.tooltip_div .input_tooltip {
  float: left;
  max-width: 90%;
}

.input_tooltip {
  float: left;
}

.tooltip_div .checkbox_label_teksti {
  max-width: 80% !important;
  float: left;
}

.valittu_checkbox {
  max-width: 150px;
}

.settings_divs .line {
  border-bottom: 1px solid #eee;
  max-width: 900px;
}

.checkbox_label_teksti {
  cursor: pointer;
}

.CollapseMark a:link {
  height: 22px;
  line-height: 20px;
  float: left;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1em;
  padding-left: 20px;
  background: url(images/arrow_up.png) no-repeat left;
}

.CollapseMark div {
  height: 22px;
  line-height: 20px;
  float: left;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1em;
  padding-left: 20px;
  background: url(images/arrow_up.png) no-repeat left bottom;
}

.CollapseMark div h4 {
  margin-top: 0;
}

.CollapseMark .collapsed:link,
.CollapseMark .collapsed {
  background: url(images/arrow_down.png) no-repeat left;
}

.tablelink_auto a {
  width: auto !important;
}

.arrow_right {
  background: url(images/arrow_down.png) no-repeat left;
  width: 20px;
  height: 15px;
  color: transparent !important;
  padding: 8px;
  cursor: pointer;
}

.arrow_up {
  background: url(images/arrow_up.png) no-repeat left;
  width: 20px;
  height: 15px;
  color: transparent !important;
  padding: 8px;
  cursor: pointer;
}

#lectureSerie-name-title-h3 {
  margin-right: 5px !important;
}

.panel-title .collapsed:link,
#headingFive .different_collapse a {
  color: #515151;
  background-color: #f6f6f6;
  background: #ebf0f1 url(images/arrow_down.png) no-repeat 6px center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  text-decoration: none !important;
  font-weight: normal;
  font-size: 0.95em;
  font-weight: bold;
  padding-left: 30px;
  border-radius: 4px;
}

.settings-panel {
  /*background-color: $accordionStrongBG !important;*/
}

#reg-man-form .panel-heading a {
  border: 1px solid #fff;
  padding-top: 6px;
  padding-left: 65px;
}

#reg-man-form .panel-default {
  margin-bottom: 0;
}

#reg-man-form .panel-heading {
  position: relative;
}

#reg-man-form .panel-heading .ui-checkbox,
#reg-man-form .panel-heading img {
  position: absolute;
  top: 3px;
  left: 25px;
  width: auto;
}

#reg-man-form .panel-heading img {
  left: 30px;
}

.multitable_3level .ui-checkbox {
  float: right !important;
  margin-left: 30px !important;
}

.multitable_2level .ui-checkbox {
  float: left !important;
  margin-left: 15px !important;
  background-color: #f5f9fa !important;
}

.multitable_2level_tr td {
  background-color: #f5f9fa !important;
}

.responsive-tabs-container .accordion-link {
  color: #515151;
  background: #ebf0f1 url(images/arrow_down.png) no-repeat left !important;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  text-decoration: none !important;
  font-weight: normal;
  font-size: 0.95em;
  font-weight: bold;
  border: none !important;
  padding-left: 45px !important;
  border-radius: 4px;
}

.panel-title .collapsed:hover,
.panel-title a:hover {
  font-weight: bold;
  color: #515151;
}

.popover {
  max-height: 18rem;
  overflow: auto;
}

.float_right_color {
  float: right;
}

.link_paataso,
.link_paataso:hover {
  font-weight: bold !important;
  font-size: 14px;
}

.table_inner tr {
  background: transparent;
}

.checkmark {
  color: #75ab35 !important;
}

.content-1 {
  float: left;
  width: 100%;
  margin-bottom: 0px;
  word-wrap: break-word;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.content-1 table {
  hyphens: initial;
  word-wrap: initial;
}

.content-1 a {
  text-align: left;
}

.content-1 .searchdivi1 {
  width: 20% !important;
}

.content {
  /*width: 90%;*/
  max-width: 1920px;
  margin: auto;
  padding: 0 2rem;
  clear: both;
}

.sso-content {
  width: 100%;
  max-width: 500px;
  padding: 25px;
  text-align: center;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.sso-content img {
  display: block;
  margin: 15px auto;
}

.sso-content h2 {
  margin-bottom: 15px;
  font-size: 22px !important;
}

.content-50 {
  width: 48%;
  float: left;
  margin-right: 1%;
  margin-bottom: 20px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.content-50-2 {
  width: 50.5%;
  margin-right: 2%;
  margin-right: 0;
  float: right;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.content-50-2 .col-xs-4,
.content-50-2 .col-xs-8 {
  width: 100%;
}

.content--padding {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.economy--view .content-50-2,
.economy--view .content-50 {
  box-shadow: none;
  background: none;
}

.economy--view .panel-heading,
.economy--view .panel-group,
.economy--view .panel-default,
.economy--view .panel-collapse,
.economy--view .panel-body,
.economy--view .panel-title,
.economy--view .panel {
  float: none;
}

.feedback-mainheading-flex {
  display: flex;
  justify-content: space-between;
}

.feedback-mainheading-flex .feedback-mainheading-item {
  display: flex;
}

.feedback-languagedropdown {
  width: 200px;
}

.feedback-heading {
  word-wrap: break-word;
  margin-top: 20px;
  font-size: 2em !important;
}

#eventHome-divi-window .content-1 {
  margin-top: 15px;
}

#eventHome-divi-window .content-1 h2 {
  margin-bottom: 0.25px;
}

#eventHome-divi-window .content-1 .eventhome__header-wrap {
  border-bottom: 1px solid #5b9943;
  display: flex;
  margin-bottom: 14px;
}

#eventHome-divi-window .content-1 .eventhome__header-wrap .first-panel {
  margin-bottom: 0;
}

#eventHome-divi-window .content-1 .event-date {
  padding: 0.5rem 0rem;
  font-size: 1.1rem;
  color: #727272;
  font-weight: bold;
}

#eventHome-divi-window .content-1 .row-spacing {
  margin-bottom: 0.5rem;
}

.clipboard_copy_btn {
  border: 0;
  background: none;
  color: #38c;
}

.clipboard_copy_btn.green_btn {
  background-color: #5b9943;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 1.5rem;
  width: auto;
  min-width: 1rem;
  padding: 4px 6px;
  text-align: center;
  line-height: 15px;
  border-radius: 4px;
}

a.clipboard_copy_btn.green_btn {
  background-color: #5b9943;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  height: 1.5rem;
  width: auto;
  min-width: 1rem;
  padding: 4px 6px;
  text-align: center;
  line-height: 15px;
  border-radius: 4px;
}

a.clipboard_copy_btn.green_btn .glyphicon {
  padding-right: 0;
  padding-top: 1px;
}

a.clipboard_copy_btn {
  color: #fff;
}

.inline-link {
  font-weight: normal;
  margin-right: 10px;
  color: #38c;
  width: auto;
  border: none;
  text-align: left;
  background: none;
  float: left;
  border: 1px solid transparent;
  border-radius: 4px;
}

.roleBlockBtn {
  display: inline-block;
  margin: 0px 4px 10px 4px;
}

.roleBlockBtn.roleBlockBtn--blue .home_henkilomaara {
  border: 1px solid #0d00b1;
  color: #fff;
  background-color: #38c;
}

.roleBlockBtn.roleBlockBtn--blue .home_henkilomaara:hover {
  border-color: #0d00b1;
  background-color: #f1f9fb;
  color: #38c;
}

.roleBlockBtn:focus .home_henkilomaara {
  border-color: #5b9943;
  background-color: #f1f9fb;
  color: #75ab35;
  border-radius: 4px;
}

.roleBlockBtn .home_henkilomaara {
  text-align: center;
  padding: 14px 10px 5px 10px;
  border: 1px solid #5b9943;
  display: inline-block;
  min-width: 80px;
  color: #f1f9fb;
  background-color: #75ab35;
  transition: background-color 0.15s, color 0.15s, border 0.15s;
}

.roleBlockBtn .home_henkilomaara .henkilomaara_nro {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.roleBlockBtn .home_henkilomaara:hover {
  border-color: #5b9943;
  background-color: #f1f9fb;
  color: #75ab35;
  border-radius: 4px;
}

.hakemus .ui-checkbox {
  float: left;
  margin-top: 18px;
  margin-right: 30px;
}

.nav-stacked .active a {
  background: #88c182 !important;
  color: #fff !important;
}

.main_checkbox_style {
  float: left;
  font-size: 1.3em;
  color: #64666d;
}

#customer-information-table-container .sortable td .ui-input-text .form-control,
#customer_IdValuePairViewModelList_36__Value {
  min-width: 200px;
}

.col-md-4 .content-1 {
  overflow: auto;
}

.col-md-4 h2 {
  word-break: break-all;
}

.infoa {
  color: #a6a6a6;
  float: left;
  clear: both;
}

.modal50 .col-xs-6 {
  width: 50% !important;
}

.alert-success,
.alert-danger {
  clear: both;
}

.ui-radio {
  float: left;
  margin-right: 20px;
}

.ui-radio input {
  position: absolute;
  left: 5px;
}

.ui-radio-off {
  background: url(images/radio.png) no-repeat !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 35px !important;
  width: 100%;
  padding-top: 0.6em !important;
}

.ui-radio-off:hover {
  background: url(images/radio-hover.png) no-repeat !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 35px !important;
}

.ui-radio-on {
  background: url(images/radio-selected.png) no-repeat !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 35px !important;
  width: 100%;
  padding-top: 0.6em !important;
}

.ui-radio-on input {
  background: #fff !important;
}

.ui-datepicker {
  background: #fff !important;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0 12px #acacac;
  border: 1px solid #acacac;
  border-radius: 4px;
}

.ryhman3tuote {
  padding-left: 68px;
  width: 30px;
}

.sisennetty {
  padding-left: 60px;
  float: left;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.sisennetty2 {
  padding-left: 100px;
  float: left;
  width: 90%;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

.uusivaihtoehto {
  background: #f7fbfc;
}

.vaihtoehto,
.ui-input-text .vaihtoehto {
  margin-bottom: 5px;
}

.uusivaihtoehto {
  background: #f7fbfc;
}

.modal50 .ui-input-text {
  max-width: 500px;
  clear: both;
}

#participantqueue .tooltippi .dropdown-menu {
  left: 5px;
}

.content-30,
.content-30-asiakaskortti,
.content-30-tapahtumavalinta {
  width: 25%;
  float: left;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.content-30-tapahtumavalinta .button_green,
.content-30-tapahtumavalinta .buttonlink {
  width: auto !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.content-70,
.content-70-asiakaskortti,
.content-70-tapahtumavalinta,
.content-70-tapahtumasuosikit {
  width: 73%;
  overflow: auto;
  margin-left: 18px;
  float: left;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.content-30-tapahtumavalinta .ui-select {
  margin-top: 3px;
}

.hinta_td {
  text-align: right;
  padding-right: 15px;
}

.multiselect-container > li > a > label {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 6px 4px 6px 20px !important;
  color: #000;
}

.link_normal,
.link_normal:hover,
.link_normal:focus {
  color: #666 !important;
  text-decoration: none;
}

.navbar-header2 button {
  margin: 0 !important;
  padding: 0 !important;
  float: left;
}

.sub_accordeon_check {
  float: left;
  margin-right: 5px !important;
}

.footer {
  padding: 20px 0;
  float: left;
  clear: both;
  width: 100%;
  color: #888888;
}

#modal_footer img {
  margin-bottom: 30px;
}

#modal_footer {
  text-align: center;
}

.row {
  margin-bottom: 12px;
}

.row2 {
  margin-bottom: 12px;
  clear: both;
}

*::-moz-placeholder {
  color: #686868;
  font-style: italic;
}

::-webkit-input-placeholder {
  color: #777 !important;
  font-style: italic;
}

:-ms-input-placeholder {
  color: #777 !important;
  font-style: italic;
}

.form-group {
  margin-bottom: 0 !important;
}

.input-group-addon {
  font-size: 10px !important;
}

.logon_paikka {
  border: 1px solid #ccc;
  height: 160px;
  width: 160px;
}

.ilmotable td {
  padding: 0 10px 0 0 !important;
  vertical-align: top;
}

table .ui-link {
  display: block;
}

/*#customer tr {
  background: none !important;
}*/
.table-row-darker-bg {
  background-color: #f5f9fa !important;
}

/*#customer tr:nth-child(odd),
.table_alternative_rows tr:nth-child(odd),
#product .tablesorter tr:nth-child(odd) {
  background: none !important;
  background-color: $alternateRowBG !important;
}*/
#customer .multitable tr:nth-child(odd) {
  background: none !important;
  background-color: transparent !important;
}

#customer .multitable_paataso td,
.multitable_paataso td {
  background-color: #eaf3f5 !important;
}

#customer .tableinside tr:nth-child(odd) {
  background: none !important;
  background-color: #fff !important;
}

.kysymysjarjestys {
  padding-top: 15px;
}

#addfeature_modal_id .modal-body .modal-body,
#modal-customer-dialog-found-content .modal-body .modal-body {
  overflow: auto !important;
}

.table_no_links td {
  padding-top: 7px;
  padding-bottom: 7px;
}

.ticket_onsite_main_div .form-control {
  font-size: 13px;
}

.ticket_onsite_yhteyshlodiv label {
  padding-left: 8px !important;
}

.ticket_onsite_yhteyshlodiv {
  background: #ddedf0 !important;
}

.content .ticket_onsite_header label {
  padding-left: 10px !important;
}

.borderbutton {
  border: 1px solid #38c;
  padding: 5px;
  border-radius: 4px;
}

.borderbutton:hover {
  text-decoration: none !important;
  background: #ecf5f9;
}

.time_div {
  width: 90px;
  float: left;
  margin-right: 5px;
}

.time_div .ui-input-text {
  width: 40px !important;
  float: left;
}

.table .ui-btn,
.table_inner .ui-btn {
  margin: 0;
  width: 100%;
  white-space: normal;
  text-align: left;
}

.modal-header {
  background: #222222;
}

.modal-header .close {
  width: 20px;
  float: right;
  color: #fff !important;
  opacity: 0.9 !important;
}

.label30,
.ui-checkbox .label30 {
  width: 30px !important;
}

.close:focus {
  box-shadow: 0 0 6px #86bfed !important;
}

.navbar-collapse {
  padding-left: 0 !important;
}

#event-information .btn_link {
  padding: 5px !important;
}

.btn-default {
  color: #b6d3da;
}

.div_d {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 3px;
  border: 1px solid #dadada;
  padding: 5px;
  border-radius: 4px;
}

.div_d .tapahtumalinkki {
  width: 100% !important;
  text-align: left;
}

.close span {
  display: block !important;
}

#economyInvoiceComparisonOperators-button {
  min-width: 60px;
}

#postitoimisto_div .modal-dialog,
#add_suoritus .modal-dialog,
#modal_user_rights .modal-dialog,
.modal_laaja {
  width: 90% !important;
  max-width: 1200px;
  width: auto !important;
}

#postitoimisto_div #Excel-dialog .modal-dialog {
  width: 90% !important;
  max-width: 820px;
  width: auto !important;
}

.ui-responsive,
.table {
  border-spacing: 0 10px;
  margin-top: 0;
  /* correct offset on first border spacing if desired */
  width: 100%;
}

.ui-responsive td,
.table td {
  border: solid 1px transparent;
  border-style: solid none;
}

.ui-responsive td:first-child,
.table td:first-child {
  border-left-style: solid;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ui-responsive td:last-child,
.table td:last-child {
  border-right-style: solid;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.ui-responsive {
  border-collapse: collapse;
}

.ui-responsive tr {
  background: #fff;
}

.ui-responsive tr:nth-child(odd) td,
.table_alternative_rows tr:nth-child(odd) td,
.table tr:nth-child(odd) td:not(.archived) {
  background: none !important;
  background-color: #f5f9fa;
}

#customer .ui-responsive .current_tr td,
.current_tr td,
.content .table_alternative_rows .current_tr td,
.table .current_tr td,
.ui-responsive .current_tr td,
.ui-responsive .current_tr:nth-child(odd) td {
  font-weight: bold !important;
  background: #88c182 !important;
  color: #fff !important;
}

.table_with_rows td {
  border-style: solid !important;
}

.suosikit .ui-checkbox .ui-btn,
.suosikki-ei {
  border: none !important;
  background: transparent !important;
  background: url("images/suosikki-ei.png") no-repeat scroll left center !important;
}

.suosikit .ui-checkbox .ui-btn:hover {
  border: none !important;
  background: transparent !important;
  background: url("images/suosikki-ei-hover.png") no-repeat scroll left center !important;
}

.suosikit .ui-icon-check::after,
html .suosikit .ui-btn.ui-checkbox-on.ui-checkbox-on::after {
  background: url("images/suosikki.png") no-repeat scroll left center !important;
  box-shadow: none;
  margin-left: -1px;
}

.suosikit .ui-icon-check:hover::after,
html .suosikit .ui-btn.ui-checkbox-on.ui-checkbox-on:hover::after {
  background: url("images/suosikki-hover.png") no-repeat scroll left center !important;
  box-shadow: none;
}

.ohjekuva img {
  width: 98%;
  max-width: 1000px;
}

.sub_ohje_title {
  padding-left: 4px;
  font-size: 1.1em;
}

.ohje_valiotsikko {
  margin-bottom: 10px;
  margin-top: 14px;
  margin-left: 3px;
}

.info-osio {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 4px;
}

#CustomersForRewards,
#RewardedCustomers {
  float: left;
  clear: both;
  width: 100%;
}

.current_tr2 {
  border-radius: 4px;
}

.checkboxlist_select .current_tr2 {
  cursor: pointer;
}

.panel-title .current_tr2:hover,
.checkboxlist_select .current_tr2:hover,
.current_tr2:hover {
  cursor: pointer;
}

.current_tr2 label {
  font-weight: bold !important;
}

.current_tr a {
  color: #fff !important;
}

.time_clock_div {
  float: left;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 5px;
}

.checkboxlist_select .row {
  padding: 5px 0;
}

.short_label_checkbox .ui-checkbox {
  width: 30px !important;
}

.floatleft {
  float: left;
  margin-right: 20px;
}

.td_label,
.ui-mobile .td_label {
  clear: both;
  width: auto;
  display: inline !important;
  margin-bottom: 0;
}

.pvm_label,
.ui-mobile .pvm_label {
  font-size: 12px;
  clear: both;
  width: auto;
  display: inline !important;
  margin-bottom: 0;
  float: right;
  text-align: right;
  min-width: 80px;
}

.number_right {
  text-align: right;
}

.tulostepohjan_asetukset .ui-input-text {
  max-width: 90px !important;
  width: 90px !important;
}

#QueueSettings .tooltippi .dropdown-menu,
#LectureQueueSettings .tooltippi .dropdown-menu {
  left: 0;
}

.tablelink_lecture_paataso {
  margin-left: 5px;
  padding: 5px;
  font-size: 15px;
  font-weight: bold !important;
}

.tablelink_paataso {
  margin-left: 5px;
  padding: 5px;
  font-size: 15px;
  font-weight: bold !important;
}

.tablelink_lecture {
  margin-left: 5px;
  padding: 5px;
  font-weight: normal !important;
}

.tablelink_lecture:hover,
.tablelink_lecture_paataso:hover,
.tablelink_paataso:hover {
  text-decoration: none;
  color: #1b6ca9 !important;
  background: #ecf5f9;
  border-radius: 4px;
}

.checked_button,
.ui-input-btn .checked_button {
  background: url("images/checked_icon.png") no-repeat scroll left center !important;
  width: 29px;
  height: 29px;
  opacity: 1 !important;
  border: none;
}

.checked_button:hover,
.ui-input-btn .checked_button:hover {
  background: url("images/checked_hover.png") no-repeat scroll left center !important;
  width: 29px;
  height: 29px;
  opacity: 1 !important;
  border: none;
}

.not_checked_button,
.ui-input-btn .not_checked_button {
  background: url("images/not_checked.png") no-repeat scroll left center !important;
  width: 29px;
  height: 29px;
  opacity: 1 !important;
  border: none;
}

.not_checked_button:hover,
.ui-input-btn .not_checked_button:hover {
  background: url("images/not_checked_hover.png") no-repeat scroll left center !important;
  width: 29px;
  height: 29px;
  opacity: 1 !important;
  border: none;
}

#EventSearchResult a {
  font-weight: 400 !important;
}

.panel-title .accordion1 {
  border: none !important;
  background-color: #fff !important;
}

#postitoimisto_div .ui-accordion .ui-accordion-icons {
  padding-left: 0 !important;
}

#participantqueue table {
  width: 100%;
}

.login {
  display: block;
  margin: 15px auto auto;
  text-align: center;
  z-index: 201;
  width: 90%;
  max-width: 700px;
  position: relative;
  top: 20px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.login h1 {
  margin-bottom: 20px;
}

.login input {
  margin-bottom: 20px;
}

.login input[type="submit"] {
  margin-top: 10px;
}

.login img {
  max-width: 90%;
  padding: 15px;
}

.login .line-thin {
  border-color: #6eb068;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.login-forgotPass {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 201;
  width: 90%;
  max-width: 550px;
  position: relative;
  text-align: center;
}

.login-forgotPass h1,
.login-forgotPass h2,
.login-forgotPass p {
  margin: 25px auto;
  max-width: 480px;
}

.login-forgotPass .login_button {
  margin-bottom: 25px;
}

.login-forgotPass .line-thin {
  border-color: #6eb068;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.login-forgotPass img {
  max-width: 90%;
  padding: 15px;
}

.username {
  background: url("images/kayttaja.png") no-repeat scroll left center transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 0 0 50px !important;
  width: 90%;
  font-family: sans-serif;
}

.password {
  background: url("images/salasana.png") no-repeat scroll left center transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 0 0 50px !important;
  width: 90%;
  font-family: sans-serif;
}

.login_button {
  background: #6eb068 !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 5px;
  border-right: medium none;
  color: #fff !important;
  cursor: pointer;
  display: block;
  font-weight: bold !important;
  line-height: 50px;
  margin-right: 0;
  min-height: 50px;
  text-align: center;
  text-decoration: none;
  width: 90%;
  margin: auto;
  text-transform: uppercase;
  font-size: 1.2em;
  transition: background-color 0.15s, color 0.15s, border 0.15s;
}

.login_button:hover {
  background: #83c37c !important;
  text-decoration: none !important;
}

.username:focus,
.password:focus,
.form-control:focus {
  box-shadow: 0 0 3px #86bfed !important;
  border: 1px solid #dddddd !important;
}

.alert-box-loginscreen {
  width: 90%;
  max-width: 700px;
  margin: 30px auto -20px auto;
  text-align: center;
}

.alert {
  font-weight: bold;
  list-style: none;
}

.alert ul {
  font-weight: bold;
  list-style: none;
}

.content-30-tapahtumavalinta .div_row {
  margin-bottom: 10px !important;
}

.main_row_mark {
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  text-align: center;
  width: 25px;
  color: #38c;
}

.main_row_mark:hover {
  color: #fff;
}

.main_row_mark2 {
  padding-top: 5px;
  cursor: pointer;
}

.tablediv {
  width: 100%;
  overflow: hidden;
  /*-ms-overflow-x: auto; /* IE8 */
  overflow-x: auto;
}

.tablediv table {
  width: 99.9%;
  table-layout: auto;
}

#EventSearchResultDiv .tablediv table tr td label,
#EventSearchResultDiv .tablediv table tr th label {
  display: block !important;
}

#EventSearchResultDiv .tablediv table .table_event_name {
  width: 100%;
  max-width: 250px;
  display: block !important;
}

#EventSearchResultDiv .tablediv table .td_label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: auto;
  display: block !important;
  text-align: center;
}

#EventSearchResultDiv .tablediv table .suosikit .ui-checkbox {
  width: auto !important;
  height: auto !important;
  margin-left: 13px;
}

#EventSearchResultDiv .tablediv table .tapahtumalinkki2 {
  white-space: nowrap;
}

.abstract_collapse .underlined_heading {
  font-size: 0.95rem !important;
  border-bottom: 1px solid #dadada;
  margin: 1rem 0 0.5rem 0 !important;
  padding: 0 0 0.5rem 0;
}

.abstract_collapse .multiselect {
  max-width: 100% !important;
}

.abstract_collapse .row {
  margin-bottom: 0.45rem;
}

.abstract_collapse .row--heading {
  background: #eee;
  padding: 0.35rem 0;
  font-weight: 600;
  margin-left: 0;
  margin-right: 0;
}

tr.abstract-list__table__heading td {
  font-weight: bold;
  font-size: 12px;
  padding: 0.5rem;
  border-bottom: 1px solid #dadada;
}

.abstract-list__table__status--1 {
  background-color: #e17575;
}

.abstract-list__table__status-1 {
  background-color: #38c;
}

.abstract-list__table__status-2 {
  background-color: #16a30e;
}

.abstract-list__table__status-0 {
  background-color: #d79128;
}

.abstract-list__table__row .status--box {
  color: white;
  font-size: 12px;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: bold;
}

tr.abstract-list__table__row td {
  padding: 0.25rem 0.5rem;
}

.abstract__abstract-modal__row-heading {
  font-weight: bold;
}

.abstract__abstract-modal__content-table td {
  vertical-align: top;
  min-width: 15rem;
  max-width: 15rem;
  padding: 0.45rem 2rem 0.45rem 0;
}

.abstract__modal__return-btn {
  background: none !important;
}

.abstract__modal__return-btn:hover {
  color: #38c;
}

.mobimenu li button .caret {
  display: inline-block !important;
  /*float: none !important;*/
  /*margin-left: 0 !important;*/
  /*margin-top: 0 !important;*/
  position: relative !important;
}

.mobimenu li a .sms_icon {
  float: left !important;
}

.sms_icon {
  background: url("images/mobile.png") no-repeat left;
  width: 15px;
  height: 18px;
  float: left;
}

.ui-widget-content .ui-icon-closethick {
  margin-left: -20px;
  margin-top: -20px;
}

.popover {
  width: 400px !important;
  max-width: 400px !important;
}

.popover_pieni {
  max-width: 200px !important;
}

.popover_medium {
  max-width: 250px !important;
}

.div_textarea textarea {
  height: 250px !important;
}

.div_textarea2 textarea {
  height: 100px;
}

.tooltippi .popover-title {
  display: none;
}

#div_email_content {
  float: left;
  clear: both;
  width: 100%;
  /* padding: 0 26px 26px 26px; */
}

#div_email_content .email_padding_left {
  padding-left: 15px !important;
}

.content-50 .container_div_margin .col-xs-6,
.content-50-2 .container_div_margin .col-xs-6 {
  margin-right: 1%;
  width: 46%;
}

.email_padding_left {
  padding-left: 0 !important;
}

.taulukko_label {
  font-weight: normal;
}

.taulukko_label_paataso button,
.taulukko_label_paataso button:hover,
.taulukko_label_paataso a,
.taulukko_label_paataso a:hover,
.taulukko_label_paataso {
  font-weight: bold !important;
  text-align: left;
}

.taulukko_label_paataso button {
  width: 100% !important;
}

.taulukko_label_paataso2 button,
.taulukko_label_paataso2 button:hover {
  font-weight: bold !important;
  font-size: 15px;
}

.taulukko_alataso {
  padding-left: 20px !important;
}

.taulukko_alataso_syvempi {
  padding-left: 40px !important;
}

.styled {
  background: green !important;
}

.ui-tooltip,
.arrow:after {
  background: #222222;
  border: none;
}

#search-result-container,
#search-result-existing-container,
#search-result-boss-container {
  overflow: auto;
}

#search-result-container .div_row_table {
  max-height: 1050px;
  overflow-y: visible;
}

#search-result-existing-container {
  width: 100%;
}

#content-event .container_div_margin .col-xs-6 {
  width: 48%;
}

.responsive-tabs-container {
  position: relative;
}

.tabit {
  width: 30%;
}

.valittu_tabi {
  position: absolute;
  top: 0;
  margin-left: 32%;
  width: 65%;
}

#customer #content-admin .table_header th {
  padding-right: 3px;
}

.cb_size {
  height: 24px;
  width: 24px;
}

.table_subheader2 td,
.main .ui-responsive .table_subheader2,
.ui-responsive .table_subheader2:nth-child(2n + 1) td,
.table_alternative_rows .table_subheader2:nth-child(2n + 1) td,
.table .table_subheader2:nth-child(2n + 1) td {
  background: #fff !important;
  border-top: 1px solid #eee !important;
  border-bottom: 1px solid #eee !important;
  font-weight: bold !important;
  font-size: 12px;
}

.ui-responsive td .checkbox_label {
  margin-left: 0;
}

.multitable td {
  border-top: 1px solid #eee !important;
}

.multitable.orders--table {
  padding: 0;
}

.multitable.orders--table tbody tr td {
  padding: 0 !important;
  margin: 0 !important;
}

.multitable.orders--table tbody tr .ui-checkbox {
  margin: 0 !important;
}

.multitable.orders--table tbody tr .indent {
  padding-left: 0.25rem !important;
}

.multitable.orders--table tbody tr .btn_link {
  padding: 0 !important;
}

.table_mainheader2 td {
  border-top: 1px solid #eee !important;
  border-bottom: 1px solid #eee !important;
  font-weight: bold !important;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
}

.portal_table {
  border-collapse: collapse;
  width: 100%;
}

.portal_table_no_border {
  border-collapse: collapse;
  width: 100%;
}

.portal_table td,
.portal_table th {
  border: 1px solid #e8eff0;
  padding: 6px;
}

.portal_table_no_border td {
  padding: 6px;
}

.table_noborder td {
  border: none !important;
}

.taso_viivat {
  background: url(images/tausta_taso2.png) repeat-y !important;
  width: 30px;
}

.badge {
  background-color: #be394a !important;
}

.miinus {
  background: url(images/close_minus.png) no-repeat left;
  height: 34px;
  float: left;
  padding: 9px 9px 9px 30px;
}

.miinus:hover, .miinus:active {
  background: #ecf5f9 url(images/close_minus.png) no-repeat left;
  text-decoration: none;
}

.taso5_td {
  padding-left: 30px;
}

.logo_delete_div {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  float: left;
  clear: both;
}

.logo_delete_div a {
  float: none;
  text-align: center;
}

.link_dropdown {
  float: left;
}

.link_dropdown .btn-group,
.link_dropdown .ui-btn {
  width: auto !important;
}

.link_dropdown .btn-group .multiselect,
.link_dropdown .ui-select {
  background: #fff;
  border: none;
  color: #059 !important;
  height: auto;
  width: auto;
}

#email-postoffice-form .multiselect {
  border-radius: 4px !important;
}

#customerpage_basic_information .checkboxlist_select {
  padding: 10px 0;
}

#copyModalText .multiselect-container {
  position: relative;
}

#copyModalText .multiselect-container .input-group {
  width: 96%;
}

#copyModalText .input-group-btn {
  font-size: 12px;
}

.link_dropdown .ui-btn .multiselect-selected-text,
.link_dropdown .multiselect-selected-text {
  width: auto;
  margin-right: 10px;
}

.link_dropdown .ui-btn {
  float: left;
}

.organisaatio_nuoli {
  float: left;
  padding-top: 7px;
  padding-left: 3px;
}

.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: -16px;
}

#mceu_23 {
  width: 100% !important;
}

.mce-100 #mceu_23 {
  width: 100% !important;
}

#update-content {
  float: left;
  width: 74%;
}

.tulostepohja {
  float: left;
  width: 26%;
  margin-top: 95px;
}

#navfavbutton2top,
#navfavbutton1top {
  margin-top: 0;
}

.td_small {
  font-size: 0.9em;
}

.modal50 .btn_link {
  margin-right: 0;
}

.ui-button-icon-only .ui-icon {
  margin-left: -20px !important;
  margin-top: -20px !important;
}

.tooltip300 .tooltippi .dropdown-menu {
  width: 300px !important;
}

.table_nopadding td {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.modal_divi {
  width: 100%;
  float: left;
  clear: both;
}

.modal_divi_100 {
  margin-bottom: 15px;
  float: left;
  clear: both;
  width: 100%;
}

.arrow.top {
  top: -16px;
  bottom: auto;
}

.arrow.left {
  left: 20%;
}

.arrow:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow.top:after {
  bottom: -20px;
  top: auto;
}

.inner-addon {
  position: relative;
  width: 20px;
  float: left;
}

/*registration-form management - orderable additional questions*/
.individual-question {
  border-bottom: 1px solid #5b9943;
  padding-bottom: 15px;
}

.kysymysdivi {
  padding: 15px;
  border: 1px solid #fff;
  transition: border 0.3s;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
}

.kysymysdivi:hover {
  background: #fafbfc;
  cursor: move;
  border: 1px solid #38c;
}

.kysymysdivi .checkbox_label span,
.kysymysdivi .ui.btn,
.kysymysdivi .checkbox_label {
  cursor: move !important;
}

.kysymysdivi .ui-radio-off {
  background-color: transparent !important;
  padding-top: 0 !important;
}

.kysymysdivi .ui-radio .checkbox_span,
.kysymysdivi .ui-radio .ui-btn .checkbox_span {
  padding-left: 0 !important;
}

.kysymysdivi .ui-input-text input,
.kysymysdivi .ui-input-search input,
.kysymysdivi textarea.ui-input-text {
  max-width: 400px !important;
  cursor: move !important;
}

.kysymysdivi .kysymyksen_linkit {
  display: flex;
  justify-content: flex-start;
}

.kysymysjarjestys {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background-color: #75ab35;
  color: #fff;
  font-weight: 900;
  font-size: 125%;
  border: 4px solid #5b9943;
  border-radius: 15px 0 0 15px;
}

.ui-state-highlight {
  background-color: #eff5f6 !important;
}

/*vain reg-man-form alla koska ui-state-highlight käytössä muualla*/
#reg-man-form .ui-state-highlight {
  float: left;
  height: 7px;
  border-radius: 10px;
  width: 100%;
  border: 2px solid #5b9943;
  background-color: #75ab35 !important;
  margin: 7px 0;
}

.ui-sortable-helper {
  border: none;
}

.kyselytable .ui-sortable-handle:hover {
  background-color: #f5f8fa !important;
}

.ui-sortable {
  overflow: auto;
}

.ui-sortable-handle {
  cursor: move;
}

/* style icon */
.inner-addon .glyphicon {
  position: absolute;
  padding: 5px;
  pointer-events: none;
}

/* align icon */
.left-addon .glyphicon {
  left: 0px;
}

.right-addon .glyphicon {
  right: 0px;
}

/* add padding  */
.left-addon input {
  padding-left: 30px;
}

.right-addon input {
  padding-right: 30px;
}

.toimintolinkki_marginright span {
  margin-right: 4px;
}

.tooltip_link {
  width: 25px;
  height: 25px;
  padding: 5px;
  background-color: transparent;
  box-shadow: none;
  border-color: transparent;
}

.valittu_tapahtuma_div,
.valittu_tapahtuma_div_pvm {
  width: auto;
  float: left;
  margin-left: 10px;
  font-size: 13px;
}

.valittu_tapahtuma_div_link {
  width: auto;
  float: left;
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
}

.mainmenu-link {
  color: #efefef !important;
  text-decoration: none;
  font-size: 16px;
  float: left;
  line-height: 40px;
  padding: 0 18px;
}

.eventlogo_div {
  float: left;
  margin-right: 20px;
  max-width: 90%;
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
}

.eventlogo_div2 {
  float: left;
  margin-right: 20px;
  max-width: 200px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.eventlogo_poista {
  float: left;
}

.img-thumbnail {
  border: none !important;
}

.col-xs-3 {
  height: 100%;
  /*margin-bottom: 15px;*/
}

.img_link {
  border: 2px solid #eee;
  height: 115px;
  width: 115px;
  float: left;
  border-radius: 4px;
}

.ui-radio .btn-default {
  color: #64666d !important;
}

.img_link2 {
  width: 150px;
  float: left;
  border-radius: 4px;
}

.img_link2_no_image {
  border: 1px solid #eee;
  /*background: #eee;*/
  height: 150px;
  width: 150px;
  float: left;
  text-align: center;
  padding-top: 20px;
  border-radius: 4px;
}

.img_link2_no_image:hover {
  border: 1px solid #e5eef1;
  background: #edf4f7;
  text-decoration: none;
}

.img_link_selected,
.img_link_selected:hover {
  border: 2px solid #d3edd0;
  height: 115px;
  width: 115px;
  float: left;
  border-radius: 4px;
}

.input-group span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.only_mobile {
  display: none !important;
}

.kopioi_kaikki {
  width: 94%;
}

.modal-dialog {
  z-index: 3000;
  position: relative;
}

.ui-input-text input,
.ui-input-search input,
textarea.ui-input-text,
.c_date input {
  box-shadow: none;
  border: 1px solid #ddd;
  height: 30px;
  padding: 0.4em;
}

.ui-select .ui-btn span {
  text-align: left;
}

.inner-addon .ui-btn {
  background-color: transparent !important;
  border: none !important;
}

.menu-mobiili {
  display: none;
}

#navpriorizationreadybuttontop {
  padding-top: 7px;
}

a #navpriorizationreadybuttontop {
  margin-top: -7px;
}

.valittu_asiakas td {
  background: #dbf0c4;
}

#questionOrSubHeadingChoice .col-xs-3 .ui-checkbox {
  min-width: 30px;
}

.asiakas_otsikko {
  width: auto;
  float: left;
  margin-right: 14px;
  color: #777;
  font-size: 18px;
  clear: both;
}

.div_row,
.div_row_not_mobile {
  width: 100%;
  max-width: 550px;
  float: left;
  clear: both;
  margin-bottom: 8px;
}

.div_row_vali {
  width: 100%;
  max-width: 500px;
  float: left;
  clear: both;
  margin-bottom: 14px;
}

.div_row_vali_12 {
  width: 100%;
  max-width: 500px;
  float: left;
  clear: both;
  margin-bottom: 12px;
}

.div_row_table {
  width: 100%;
  margin-bottom: 5px;
  /*overflow: auto;*/
  -ms-overflow-y: auto;
  /* IE8 */
  overflow-y: auto;
  max-height: 40rem;
}

.div_row_table table {
  width: 98%;
}

.div_label {
  width: 30%;
  float: left;
  line-height: 20px;
}

.div_input {
  float: left;
  width: 70%;
}

/*Taulukoiden td leveydet*/
.table_event_tunniste {
  width: auto;
  overflow: hidden;
  max-width: 150px;
}

.table_event_tunniste a {
  min-width: 60px;
  padding: 3px;
}

.table_event_name {
  width: auto;
  overflow: hidden;
  max-width: 340px;
}

.table_event_tila {
  width: auto;
  overflow: hidden;
  max-width: 70px;
  text-align: center;
}

.lisaa,
.poista {
  font-family: arial;
  font-size: 13px;
}

.textbox {
  width: 100%;
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #d7d7d7;
  font-weight: 400;
  padding: 2px 3px 2px 6px;
  text-shadow: 1px 1px 0 white;
  border-radius: 4px;
}

.textbox_big {
  width: 100%;
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #d7d7d7;
  height: 100px;
  font-weight: 400;
  padding: 2px 3px 2px 6px;
  text-shadow: 1px 1px 0 white;
  border-radius: 4px;
}

.label_not_editable {
  background: #eee;
  padding: 4px 3px 4px 6px;
  width: 100%;
  border-radius: 2px !important;
  font-weight: normal;
  margin-bottom: 0;
  float: left;
  border: 1px solid #ccc;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #555;
  display: block;
  height: 30px;
  line-height: 1.42857;
  cursor: not-allowed;
}

.tableinside_event {
  vertical-align: middle !important;
}

.textbox:hover {
  border: 2px solid #c6c6c6;
  color: #414848;
  outline: 0 none;
}

.textbox:focus {
  border: 2px solid #a2cd47;
  color: #414848;
  outline: 0 none;
}

.sisennys_tr {
  padding-left: 20px;
}

#trainingnetworks-table .tr_paataso {
  border-top: 1px solid #e8eff0 !important;
}

.tab {
  float: left;
}

.main_tab_div {
  border-right: 1px solid #434240;
}

.main_tr,
.main #customer .tableinside .main_tr {
  /*background: #e4eff2 !important;*/
  font-weight: bold;
  background: #f0f5f7 !important;
  cursor: pointer;
  border-bottom: 4px solid #fff;
}

#customer .tableinside .main_tr:hover {
  background: #fafbfb !important;
}

.dropdown-select {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #eaeaea #eaeaea #cccccc;
  border-image: none;
  border-style: solid;
  border-width: 1px;
  float: left;
  margin-right: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  border-radius: 4px;
}

.dropdown-select select {
  background: url("images/dropdown-arrow.png") no-repeat scroll right center #f8f8f8;
  border: medium none;
  cursor: pointer;
  height: 30px;
  line-height: 30px;
  padding: 6px 5px 4px 10px;
  width: 110%;
  font-family: arial;
  border-radius: 4px;
}

.table_header,
.ui-responsive .table_header,
.table_header:hover,
.table_header td,
#customer .ui-responsive .table_header {
  color: #434343 !important;
  font-weight: bold !important;
  /*border-top: 1px solid #DADADA;*/
  border-bottom: 1px solid #dadada;
  height: 35px !important;
  background: #fff !important;
  vertical-align: middle !important;
}

.table_header th {
  border-bottom: 1px solid #dadada;
}

.table_header2 {
  color: #434343 !important;
  font-weight: bold !important;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  height: 35px !important;
  vertical-align: middle !important;
}

.table_header3 {
  color: #434343 !important;
  font-weight: bold !important;
  height: 35px !important;
  vertical-align: middle !important;
}

.table_header3 td {
  padding-top: 10px !important;
}

.table_header3 th {
  height: 30px;
  padding: 5px 5px !important;
}

.table_header3 th label {
  padding: 5px 5px !important;
  display: block;
  margin-bottom: 0;
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#WaitingApplicationsDiv,
#DisapprovedApplicationsDiv {
  margin-top: 25px;
}

.textarea300 {
  height: 300px !important;
}

.table_subheader {
  font-weight: bold !important;
  font-size: 12px;
  /*border-top: 1px solid #eee !important;*/
  color: #666;
}

.table_subheader th {
  background: #fff;
  border-bottom: 1px solid #e8eff0 !important;
}

.listabox {
  height: auto;
  max-height: 200px;
  overflow: auto;
  border: 1px solid #ccc;
  max-width: 200px !important;
}

.ticketcode_not_editable_button {
  background: transparent;
  border: none !important;
  clear: both;
  margin: 5px 0;
}

.table_taso3 td {
  font-size: 13px;
}

.bold a,
.bold a:hover {
  font-weight: bold !important;
}

.table_header th {
  font-weight: bold !important;
  /*padding: 3px 3px 3px 5px;*/
  background-color: #fff !important;
}

#customer .table_header tr {
  background: #fff !important;
}

#customer .table_header th {
  font-weight: bold !important;
  padding: 3px 15px 3px 5px;
}

#customer .table_header td {
  font-weight: bold !important;
  padding: 3px 5px 3px 3px;
}

.alt {
  background: #f2f2f2;
}

.tab span {
  color: #fafafa;
  font-size: 15px;
}

.tapahtuman_tietoa {
  float: left;
  line-height: 14px;
  height: 16px;
  padding-top: 5px;
  padding-bottom: 0;
}

.table-responsive table .ui-checkbox,
.content-70-asiakaskortti table .btn_link,
.content-70-tapahtumavalinta table .btn_link {
  margin-top: 2px;
  float: left;
}

.nav-tabs > li a {
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px !important;
}

.menu_sub {
  clear: both;
  float: left;
  top: 40px !important;
  width: auto !important;
  position: absolute;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  z-index: 300;
  list-style: outside none none;
  border-radius: 4px;
}

.menu_sub_palsta {
  float: left;
  width: 200px;
  border-right: 1px solid #eee !important;
}

.menu_sub_palsta_otsikko {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 16px;
  float: left;
  clear: both;
}

.menu_sub_palsta_row {
  float: left;
  clear: both;
  width: 100%;
  border: none !important;
}

.menu_sub_palsta_row a {
  width: 100%;
  float: left;
  padding: 6px 6px 6px 20px;
  font-weight: regular;
}

.menu_sub_palsta_row a:hover {
  background: #f5f5f5;
  color: #262626;
  text-decoration: none;
}

.dropdown input {
  width: auto !important;
}

.toimintopainike_div .ui-btn {
  width: 100px !important;
}

.toimintopainike_div_icon {
  float: left;
  margin-top: 5px;
  margin-right: 2px;
}

.dropdown-menu a:link {
  color: #1b6ca9;
}

.table td {
  padding: 1px 6px;
  line-height: 18px;
  color: #656565;
  vertical-align: middle !important;
}

.table td .tapahtumalinkki {
  float: left;
  width: 100%;
}

.table_header td {
  padding: 6px 5px;
  font-weight: normal;
}

.table {
  width: 98%;
}

.container_div_margin .col-xs-6 {
  margin-right: 2%;
  width: 46%;
}

.container_div_no_margin .col-xs-6 {
  margin-right: 0 !important;
  width: 50% !important;
}

.container_div_margin .col-md-4 {
  padding-right: 2%;
  padding-bottom: 2%;
}

.event_haettavana_color {
  color: #75ba5c;
}

.event_umpeutunut_color {
  color: #ebad42;
}

.event_tuntematon_color {
  color: #b8b8b8;
}

.event_julkaisematon_color {
  color: #b8b8b8;
}

.event_kaynnissa_color {
  color: #a2ca56;
}

.event_valittu_color {
  color: #dbd23a;
}

.event_peruutettu_color {
  color: #e17575;
}

.event_paattynyt_color {
  color: #679bcf;
}

.event_omatila_color {
  color: #c488d8;
}

.event_haettavana {
  background: #75ba5c;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_haettavana:hover,
.event_haettavana:focus {
  background-color: #87cb6f !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

#content-event-header .event_haettavana:focus {
  background-color: #87cb6f !important;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 0 6px #86bfed !important;
  border: 1px solid #becdd9 !important;
  border-radius: 20px !important;
}

.event_umpeutunut {
  background: #ebad42;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_umpeutunut:hover,
.event_umpeutunut:focus {
  background-color: #f7bb52 !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_julkaisematon {
  background: #b8b8b8;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_julkaisematon:hover,
.event_julkaisematon:focus {
  background-color: #c5c5c5 !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_tuntematon {
  background: #b8b8b8;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_tuntematon:hover,
.event_tuntematon:focus {
  background-color: #c5c5c5 !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_kaynnissa {
  background: #a2ca56;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_kaynnissa:hover,
.event_kaynnissa:focus {
  background-color: #b7df6b !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_valittu {
  background: #dbd23a;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_valittu:hover,
.event_valittu:focus {
  background-color: #ebe24b !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_peruutettu {
  background: #e17575;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_peruutettu:hover,
.event_peruutettu:focus {
  background-color: #eb7b7b !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_paattynyt {
  background: #679bcf;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_paattynyt:hover,
.event_paattynyt:focus {
  background-color: #72afee !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.event_omatila {
  background: #c488d8;
  color: #000 !important;
  border-radius: 20px;
  width: auto;
  font-size: 11px !important;
  padding: 3px 6px;
  text-align: center;
  margin: 3px 0;
  float: left;
}

.event_omatila:hover,
.event_omatila:focus {
  background-color: #d69cea !important;
  text-decoration: none !important;
  cursor: pointer;
  border-radius: 20px;
}

.number_active:hover {
  background: #63a44b;
  text-decoration: none !important;
  cursor: pointer;
}

.multiselect,
.multiselect-container,
.text-box,
.label_not_editable {
  max-width: 550px !important;
}

.multiselect-container {
  max-height: 400px;
  overflow: auto;
}

fieldset .ui-input-text {
  width: auto !important;
}

.content-50-2 .col-xs-6 {
  width: 100% !important;
}

#customer .content-50-2 .col-xs-6,
#lecture-Edit .content-50-2 .col-xs-6,
#product .content-50-2 .col-xs-6 {
  width: 50% !important;
}

/*///////////////ID MYTABLE - Jäädytetty taulukko alkaa/////////////////////*/
#myTable {
  padding: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 2.5rem;
}

#myTable > .tableDate {
  text-align: center;
}

#myTable > .wrapper > table {
  text-align: left;
}

#myTable tr,
#myTable th,
#myTable .last-td1,
#myTable .last-td2,
#myTable .last-td3,
#myTable .last-td4,
#myTable .last-td5 {
  border-top: 1px solid #e8eff0 !important;
}

.table_header3 .last-td2 .ui-checkbox {
  margin-top: -3px;
}

#myTable td,
#myTable th {
  vertical-align: top;
  padding: 10px;
  min-width: 45px;
  padding-top: 7px;
}

#myTable td {
  padding: 0;
  padding-top: 5px;
  padding-bottom: 10px;
}

#myTable th {
  position: absolute;
  left: 0;
  width: 200px;
}

#myTable .largerFont {
  font-size: 14px;
}

#myTable .last-td1 {
  position: absolute;
  right: 360px;
  width: 80px;
  border-right: none;
  background: #fff;
  padding-left: 10px;
}

#myTable .last-td2 {
  position: absolute;
  right: 310px;
  width: 55px;
  border-right: none;
  background: #fff;
}

#myTable .last-td3 {
  position: absolute;
  right: 190px;
  width: 125px;
  border-right: none;
  background: #fff;
}

#myTable .last-td4 {
  position: absolute;
  right: 105px;
  width: 80px;
  border-right: none;
  background: #fff;
}

#myTable .last-td5 {
  position: absolute;
  right: 0;
  width: 100px;
  border-right: none;
  background: #fff;
}

#myTable > .wrapper {
  overflow-x: scroll;
  overflow-y: visible;
  max-width: 83%;
  min-width: 40%;
  margin-left: 200px;
  margin-right: 360px;
}

#myTable > div > table > tbody > tr:nth-child(1) > td {
  font-weight: bold;
  border-top: none;
}

#myTable tr:first-child th {
  border-top: none;
}

#myTable .green {
  height: 30px;
  width: 30px;
  background-color: #c4ecc0;
  padding-bottom: 0px;
}

#myTable .green:after {
  content: "green";
  font-size: 10px;
  color: #008300;
  vertical-align: text-bottom;
  padding-bottom: 0px;
}

#myTable .red {
  height: 30px;
  width: 30px;
  background-color: #f8bdbe;
  padding-bottom: 0px;
}

#myTable .red:after {
  content: "red";
  font-size: 10px;
  color: #c70000;
  vertical-align: text-bottom;
  padding-bottom: 0px;
}

#myTable .neg {
  color: #c70000;
}

#myTable .pos {
  color: #008300;
}

/*/////////////////////ID MYTABLE - Jäädytetty taulukko päättyy/////////////////////*/
/*////////////////////Styles for onsite start://////////////////////////////////////*/
.searc_icon_div .button_green {
  background: #6eb068 url("images/search_icon.png") no-repeat scroll center center !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  float: left;
  height: 36px;
  line-height: 30px;
  width: 42px !important;
}

.searc_icon_div .button_green:hover {
  background: #83c37c url("images/search_icon.png") no-repeat scroll center center !important;
}

.ticket_onsite_main_div .col-xs-6 {
  width: 50% !important;
}

.ticket_onsite_header {
  border-top: 1px solid #ddd !important;
  background: #fff !important;
}

.ticket_onsite_yhteyshlo {
  background: #fafafa !important;
}

.ticket_onsite_main_div .col-xs-3,
.ticket_onsite_header .col-xs-3,
.ticket_onsite_main_div .col-xs-2,
.ticket_onsite_header .col-xs-2,
.ticket_onsite_main_div .col-xs-1,
.ticket_onsite_header .col-xs-1,
.ticket_onsite_main_div .col-xs-6 .col-xs-6 .col-xs-6,
.ticket_onsite_header .col-xs-6 .col-xs-6 .col-xs-6,
.ticket_onsite_main_div .col-xs-6 .col-xs-4,
.ticket_onsite_header .col-xs-6 .col-xs-4,
.ticket_onsite_main_div .col-xs-6 .col-xs-5,
.ticket_onsite_header .col-xs-6 .col-xs-5,
.ticket_onsite_main_div .col-xs-6 .col-xs-10,
.ticket_onsite_header .col-xs-6 .col-xs-10 {
  padding: 0 3px;
}

.ticket_onsite_main_div .col-xs-6 .col-xs-6 {
  padding: 0;
}

.ticket_onsite_main_div .col-xs-6,
.ticket_onsite_header .col-xs-6 {
  padding: 0;
}

.ticket_onsite_main_div .col-xs-6 .col-xs-6 div label,
.ticket_onsite_main_div .col-xs-6 .col-xs-4 .col-xs-10 label {
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inherit;
  white-space: nowrap;
  margin-bottom: 0;
  padding-top: 7px;
}

.onsite_searchresult {
  border: 1px solid #e7c4b2 !important;
}

.ticket_onsite_main_div {
  /*border: 1px solid #eee !important;*/
  clear: both;
  width: 100%;
  background: #eff5f6 none repeat scroll 0 0;
  border-radius: 1px !important;
  padding: 5px 1% 5px 5px !important;
}

.ticket_onsite_header {
  font-size: 13px;
  font-weight: bold !important;
  padding: 0.5% 0.5% 0.5% 5px !important;
  width: 100% !important;
  color: #4a4a4a;
}

.ticket_onsite_header label,
.ticket_onsite_header .ui-mobile label,
.ticket_onsite_header div.ui-controlgroup-label {
  font-size: 13px;
  font-weight: bold !important;
  padding: 0.5% 0.5% !important;
  width: 100% !important;
  color: #4a4a4a;
}

.onsite_not_cheked {
  background: url("images/onsite_not_checked.png") no-repeat center center;
  width: 34px;
  height: 34px;
  float: right;
}

.onsite_not_cheked:hover {
  background: url("images/onsite_not_checked_hover.png") no-repeat center center;
  width: 34px;
  height: 34px;
  float: right;
}

.onsite_cheked {
  background: url("images/onsite_checked.png") no-repeat center center;
  width: 34px;
  height: 34px;
  float: right;
}

.onsite_cheked:hover {
  background: url("images/onsite_checked_hover.png") no-repeat center center;
  width: 34px;
  height: 34px;
  float: right;
}

.onsite_luettu {
  border: 1px solid #b7d3b4;
}

.portal_logo {
  background: #fff none repeat scroll 0 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  float: left;
  margin-top: -6px;
  max-height: 40px;
  max-width: 200px;
  min-height: 40px;
  padding: 8px;
  text-align: center;
}

.portal_logo img {
  max-width: 80%;
}

.link__row {
  margin-top: .5rem;
  display: flex;
  flex-direction: row;
}

.link__row .link__row__item {
  margin-left: 1rem;
}

.ui-page-theme-a .ui-btn:focus,
html .ui-bar-a .ui-btn:focus,
html .ui-body-a .ui-btn:focus,
html body .ui-group-theme-a .ui-btn:focus,
html head + body .ui-btn.ui-btn-a:focus,
.ui-page-theme-a .ui-focus,
html .ui-bar-a .ui-focus,
html .ui-body-a .ui-focus,
html body .ui-group-theme-a .ui-focus,
html head + body .ui-btn-a.ui-focus,
html head + body .ui-body-a.ui-focus {
  box-shadow: 0 0 6px #86bfed !important;
}

.button_green:focus,
.login_button:focus {
  box-shadow: 0 0 6px #4696d7 !important;
  border: 2px solid #d8efed !important;
}

.btn_link:focus,
.kalenteri_oikea_painikkeet .btn_link:focus {
  border-radius: 2px;
  color: #23527c;
  box-shadow: 0 0 6px #86bfed !important;
  border: 1px solid #90c5ef;
  background: #fff !important;
}

#customer .btn_link:focus,
#search .btn_link:focus,
#lectureserie-search-result .ui-link:focus {
  background-color: transparent !important;
}

/*fokusta*/
.btn-group .multiselect:focus,
.btn-group .multiselect:hover {
  box-shadow: 0 0 6px #86bfed !important;
  border: 1px solid #fff !important;
}

.tooltippi .tapahtumalinkki:focus i,
.tooltippi .tapahtumalinkki:hover i,
.tooltippi .dropdown-tooltip:focus {
  border: 2px solid #becdd9;
  border-radius: 9px;
  border-color: #becdd9 !important;
  box-shadow: 0 0 6px #86bfed !important;
  outline: none;
  height: 24px;
}

.ui-link:focus {
  border-radius: 2px;
  color: #23527c;
  background-color: #ecf5f9 !important;
  box-shadow: 0 0 6px #86bfed !important;
}

#selected-boss,
#mastercustomer-textbox {
  width: 80%;
}

.fade.in {
  -webkit-animation-duration: 225ms;
  -webkit-animation-name: none !important;
  -moz-animation-duration: 225ms;
  -moz-animation-name: none !important;
  animation-duration: 225ms;
  animation-name: none !important;
}

.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.quantity {
  position: relative;
}

.quantity input {
  height: 30px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: left;
  position: relative;
  height: 30px;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #ccc;
  width: 20px !important;
  text-align: center;
  color: #333;
  font-size: 13px;
  line-height: 1.2;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #ccc;
}

.quantity-button.quantity-down {
  position: absolute;
  bottom: 0px;
  height: 50%;
}

.paakorttidiv .ui-checkbox {
  z-index: 3;
}

.RowHighlight {
  background-color: lightblue !important;
}

.selectedPage {
  background-color: ActiveBorder !important;
}

.selectedPage2 {
  background-color: ActiveBorder !important;
}

.selectedPageUnitSearch,
.selectedPageUnitSearch a {
  background-color: ActiveBorder !important;
}

.contactPersonDisabled {
  color: #808080 !important;
}

/*popover hakemukset sivulle*/
.custom-content {
  font-size: 10px;
  color: #808080;
}

.question_row .col-xs-4 img {
  max-width: 80%;
  max-height: 70px;
}

.file-style-right img {
  float: right;
}

.label_tooltip description {
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  width: 50px;
  color: #000 !important;
  text-decoration-color: black HighlightText;
}

.label_tooltip .tooltip {
  color: green !important;
}

.ui-autocomplete li {
  clear: both;
  padding: 5px 10px;
}

.ui-autocomplete {
  background: #fff !important;
  border: 1px solid #ccc !important;
}

.not-active {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
  color: #ccc !important;
  display: inline-block;
}

.disabled-visual {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.btn_disabled {
  padding: 7px 5px !important;
  margin-right: 10px;
  border-radius: 2px;
  color: GrayText;
  width: auto !important;
  border: none;
  text-align: center;
  background: none !important;
  float: left;
  display: block;
  text-align: center;
  font-weight: normal !important;
}

.btn_disabled2 {
  padding: 1px 5px !important;
  margin-right: 10px;
  border-radius: 2px;
  color: GrayText;
  width: auto !important;
  border: none;
  text-align: center;
  background: none !important;
  float: left;
  display: block;
  text-align: center;
  font-weight: normal !important;
}

.registrationmanagement-header-cbx .ui-checkbox {
  width: 30px !important;
}

.registrationmanagement-header-cbx label {
  width: 30px !important;
  min-width: 30px !important;
}

.registrationmanagement-header-cbx span {
  width: 30px !important;
  min-width: 30px !important;
}

.accordion-hasdata {
  color: #38c !important;
  background-color: #e5eef1 !important;
  border: 1px solid #afd2de;
}

.accordion-hasdata:hover {
  background-color: #cee5ec !important;
}

.accordion-nodata {
  background-color: #f6fafb !important;
  color: #757575 !important;
}

.accordion-nodata:hover {
  background-color: #f1f9fb !important;
}

.roletypes-row {
  margin-bottom: 1px !important;
}

.dropdown-menu > li > a {
  color: #38c !important;
}

.multiselect-container > .dropdown-menu > li > a {
  color: #000 !important;
}

.abstract {
  display: flex;
  flex-direction: column;
  max-width: 55rem;
  width: 100%;
}

.abstract-separator {
  width: 100%;
}

.abstract__wrapper {
  display: flex;
  margin-top: 0.6rem;
}

.abstract__wrapper__header {
  display: flex;
  flex: 0 0 20%;
}

.abstract__wrapper__content {
  display: flex;
  flex-direction: column;
  flex: 0 0 80%;
}

.abstract__wrapper__content__element {
  display: flex;
  align-items: center;
}

.abstract__wrapper__content__elementmobile {
  display: flex;
  align-items: center;
}

.abstract__wrapper__content__element--cb {
  display: flex;
  flex: 0 0 45px;
}

.abstract__wrapper__content__element--label {
  display: flex;
  flex: 1 1 auto;
}

.abstract__wrapper__content__element--textbox {
  flex: 0 0 65%;
}

.abstract__wrapper__content__element--textarea {
  width: 65%;
}

.abstract__wrapper__content__element--helper {
  width: 35%;
  font-size: 0.9em;
  justify-content: center;
  padding-left: 0.5rem;
}

.abstract__wrapper__content__element--btn {
  border: 0;
  background: #5b9943;
  border-radius: 2px !important;
  width: 7.5rem !important;
  color: #fff;
  padding: 0.25rem;
}

.abstract__wrapper__content__element--btn:hover {
  background: #3d7721;
}

.abstract__wrapper__content__element__files {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

@media only screen and (max-width: 1000px) {
  .abstract__wrapper__content__elementmobile {
    display: block;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .abstract__wrapper {
    display: flex;
    flex-direction: column;
  }
  .abstract__wrapper__content__element--textbox {
    width: 100%;
  }
  .abstract__wrapper__content__element--textarea {
    width: 100%;
    resize: vertical;
  }
  .abstract__wrapper__content__element--helper {
    width: 100%;
    font-size: 0.9em;
    justify-content: flex-start;
    padding-left: unset;
  }
}

@media only screen and (max-width: 1600px) {
  .asiakas_nrot_ylempi {
    margin-bottom: 12px;
    width: 100%;
  }
}

@media only screen and (max-width: 1560px) {
  #codeSeries #codelist-input-export {
    clear: both;
  }
}

@media only screen and (max-width: 1350px) {
  #codeSeries #codelist-input-export {
    clear: none;
  }
}

@media only screen and (max-height: 800px) {
  .divs_clearboth_mobile .col-xs-5,
  .divs_clearboth_mobile .col-xs-7 {
    width: 100%;
    clear: both;
  }
  .dropdown-menu {
    max-height: 400px;
  }
}

@media only screen and (max-height: 700px) {
  .dropdown-menu {
    max-height: 350px;
  }
}

@media only screen and (max-width: 1600px) {
  .asiakas_nrot {
    width: 100% !important;
    clear: both;
  }
}

@media only screen and (max-width: 1500px) {
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 150px;
  }
  .table_event_tila {
    width: auto;
    overflow: hidden;
    max-width: 70px;
  }
}

@media only screen and (max-width: 1400px) {
  .content-70-asiakaskortti .col-xs-4,
  .content-70-asiakaskortti .col-xs-8 {
    width: 100%;
  }
  .content-70-asiakaskortti {
    margin-left: 0px;
  }
  .content-50 .container_div_margin .col-xs-6,
  .content-50-2 .container_div_margin .col-xs-6 {
    margin-right: 1%;
    width: 99%;
  }
  .ticket_onsite_main_div .col-xs-6 .col-xs-6 div,
  .ticket_onsite_header .col-xs-6 .col-xs-6 div,
  .ticket_onsite_main_div .col-xs-6 .col-xs-6 .col-xs-6,
  .ticket_onsite_header .col-xs-6 .col-xs-6 .col-xs-6 {
    width: 100% !important;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 1350px) {
  .content-70-tapahtumavalinta {
    width: 69%;
  }
  .content-30-tapahtumavalinta {
    width: 29%;
  }
  .postitoimisto .col-xs-3 {
    width: 50%;
  }
  #update-content {
    float: left;
    width: 100%;
  }
  .tulostepohja .row .col-xs-12 {
    width: 32% !important;
  }
  .codelinkki {
    max-width: 320px;
  }
  .user-management-search {
    float: none;
  }
  .role-management-search {
    float: none;
  }
  #customer .content-50,
  #customer .content-50-2,
  .content-50,
  .content-50-2 {
    width: 100%;
  }
  #customer .col-xs-6 {
    width: 48%;
  }
  .content-50-2 .col-xs-6 {
    width: 48% !important;
  }
  .content-50-2 .col-xs-4,
  .content-50-2 .col-xs-8 {
    width: 100% !important;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 110px;
  }
  .table_event_tila {
    width: auto;
    overflow: hidden;
    max-width: 50px;
  }
}

@media only screen and (max-width: 1270px) {
  /*Taulukoiden td leveydet*/
  .table_event_tila {
    width: auto;
    overflow: hidden;
    max-width: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .content-70-tapahtumavalinta,
  .content-30-tapahtumavalinta {
    clear: both;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .content-70-tapahtumavalinta .row,
  .content-30-tapahtumavalinta .row {
    margin-bottom: 0;
  }
  #update-content .main-row {
    width: 100% !important;
  }
  .tulostepohja {
    float: left;
    width: 100%;
    margin-top: 25px;
  }
  .content-30-tapahtumavalinta {
    padding-bottom: 16px;
  }
  .toimintopainikkeet {
    background: #fff;
    box-shadow: none;
    height: auto;
  }
  .tulostepohjan_asetukset .tulostepohjan_asetus1 {
    width: 100%;
    margin-bottom: 20px;
  }
  .tulostepohjan_asetukset .tulostepohjan_asetus2,
  .tulostepohjan_asetukset .tulostepohjan_asetus4 {
    width: 25% !important;
    clear: none !important;
  }
  .tulostepohjan_asetukset .tulostepohjan_asetus3 {
    width: 46% !important;
    clear: none !important;
  }
  .main {
    margin-top: -15px;
  }
  .top_fixed,
  .toimintopainikkeet {
    background: #fff none repeat scroll 0 0;
    height: auto;
    position: relative;
    top: 0;
    width: 100%;
  }
  .col-xs-2 {
    width: 25% !important;
  }
  #content-event-header #EventBasicInformation {
    width: 300px;
    max-width: 300px;
  }
  .modal-col6-iso .col-xs-6 {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .ticket_onsite_main_div .col-xs-6 .col-xs-6,
  .ticket_onsite_header .col-xs-6 .col-xs-6 {
    width: 100% !important;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 340px;
  }
  .col-xs-8,
  .col-xs-4 {
    width: 100% !important;
  }
  .content-1 .searc_icon_div,
  .content-1 .searchdivi2 {
    width: 30% !important;
  }
  .content-1 .searchdivi1 {
    width: 20% !important;
  }
  .original_col .col-xs-4 {
    width: 33% !important;
    clear: none;
  }
  .original_col .col-xs-3 {
    width: 25% !important;
    clear: none;
  }
  .checkboxlist_select .col-xs-6 {
    width: 100% !important;
    clear: both !important;
    margin-bottom: 3px;
  }
  .checkboxlist_select .col-xs-6 .ui-select {
    margin-bottom: 10px;
  }
  #email-content .col-xs-1,
  #email-content .col-xs-8,
  #email-content .col-xs-11,
  .emailtemplate .col-xs-1,
  .emailtemplate .col-xs-8 {
    width: 100%;
  }
  #email-content .label_not_editable {
    margin-bottom: 15px;
  }
  .instructions .col-xs-10 {
    width: 100%;
  }
  .logo-gallery-table {
    width: 100%;
  }
  .logo-gallery-table .tooltip-parent .tooltiptext {
    display: none;
  }
}

@media only screen and (max-width: 1070px) {
  .col-xs-6 {
    width: 100% !important;
    clear: both;
  }
  .valittu_tapahtuma_div {
    max-width: 200px;
    overflow: hidden;
    height: 15px;
  }
  textarea.form-control {
    height: 250px;
  }
  .jHtmlArea {
    width: 100% !important;
  }
  .ilmo_vahvistukset {
    width: 100%;
    float: left;
    clear: both;
  }
  .ilmo_vahvistukset .col-xs-6 {
    width: 100% !important;
    clear: both;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 300px;
  }
  .top_fixed,
  .toimintopainikkeet {
    position: relative;
    top: 0;
    background: #fff;
    width: 100%;
    height: auto;
  }
  .content_otsikko {
    margin-top: 10px;
  }
  .toimintopainikkeet {
    box-shadow: none;
    height: auto;
  }
  .col-xs-8 {
    width: 100% !important;
  }
  .col-xs-4 {
    width: 100% !important;
  }
  .col-xs-6 {
    width: 50% !important;
    clear: none;
  }
  .content-50,
  .content-50-2 {
    width: 100%;
  }
  #content-event-header #EventBasicInformation {
    width: 250px;
    max-width: 250px;
  }
}

@media only screen and (max-width: 1020px) {
  .content-70-asiakaskortti,
  .content-30-asiakaskortti {
    clear: both;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .content-50 .container_div_margin .col-xs-6,
  .content-50-2 .container_div_margin .col-xs-6 {
    width: 46% !important;
    clear: none;
  }
  .div_row_main {
    float: left;
    width: 48%;
    margin-right: 2%;
  }
  .content-1 .searchdivi1 {
    width: 30% !important;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 250px;
  }
  .content-50,
  .content-50-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  #content-event-header #EventBasicInformation {
    width: 200px;
    max-width: 200px;
  }
}

@media only screen and (max-width: 991px) {
  .col-md-4 .content-1 {
    background: #fff;
    width: 100%;
    padding: 30px;
    overflow: auto;
    border-radius: 3px;
  }
  .valittu_tabi {
    margin-left: 0;
    width: 100%;
    position: static;
  }
  .col-xs-2 {
    width: 33% !important;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 200px;
  }
  .modal50 .col-xs-6 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 990px) {
  .contiologo {
    width: 170px;
  }
  .language a {
    margin: 0;
  }
  .alert_div {
    margin-right: 3px;
  }
  .systemlogo {
    margin-right: 3px;
  }
  .col-xs-8 {
    width: 100% !important;
  }
  .col-xs-4 {
    width: 100% !important;
  }
  .original_col .col-xs-4 {
    width: 33% !important;
    clear: none;
  }
  .original_col .col-xs-3 {
    width: 25% !important;
    clear: none;
  }
  .col-xs-6 {
    width: 50% !important;
  }
}

@media only screen and (max-width: 900px) {
  .contiologo {
    width: 150px;
  }
  .codelinkki {
    max-width: 220px;
  }
  .cleardiv6 {
    width: 100% !important;
    clear: both;
  }
  /*Taulukoiden td leveydet*/
  .table_event_name {
    width: auto;
    overflow: hidden;
    max-width: 150px;
  }
  .menu-mobiili {
    display: inherit;
    width: 100%;
    text-align: center;
    float: left;
    clear: both;
    height: 40px;
    background: #222222;
  }
  .col-xs-4,
  .col-xs-8 {
    clear: both;
    width: 100% !important;
  }
  .original_col .col-xs-4 {
    width: 33% !important;
    clear: none;
  }
  .original_col .col-xs-3 {
    width: 25% !important;
    clear: none;
  }
  .content {
    width: 96%;
  }
  .content-30 {
    margin-bottom: 15px;
  }
  .mob-login {
    float: left;
    margin-top: 10px;
    padding-left: 4%;
    z-index: 12;
    right: 90px;
    position: absolute;
  }
  .menu-mobiili #accordion {
    z-index: 10;
    position: absolute;
    width: 100%;
    margin-top: 6px;
    padding: 0 4%;
  }
  .menu-mobiili #accordion div {
    border: 1px solid #bbc7c7;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #f4f5f5;
    width: 100%;
    box-shadow: 0px 2px 2px #888;
  }
  .menu-mobiili #accordion h3 {
    width: 100% !important;
    margin-top: 6px;
  }
  .menu-mobiili #accordion a {
    width: 100%;
    float: left;
    padding: 5px 0;
    text-align: center;
    text-decoration: none !important;
    background-color: #252525;
    border-bottom: 1px solid #575757;
  }
  .menu-mobiili #accordion a:hover {
    background-color: #575757;
  }
  .div_row,
  .div_row_not_mobile {
    width: 100%;
    max-width: 550px;
    float: left;
    clear: both;
    margin-bottom: 8px;
  }
  .div_label {
    width: 100%;
    float: left;
    line-height: 20px;
  }
  .div_input {
    float: left;
    width: 100%;
    clear: both;
  }
  .dropdown-select select {
    width: 107%;
  }
  .content-70,
  .content-30 {
    width: 100%;
    clear: both;
    float: left;
    margin-left: 0px;
  }
}

@media screen and (min-width: 768px) {
  .toimintopainikkeet .mobilink {
    display: none !important;
  }
  .toimintopainikkeet .mobimenu {
    display: inherit !important;
    margin-top: 0;
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .mobiletable_margintop {
    width: 300px;
  }
  .mobimenu .dropdown {
    width: auto !important;
    float: left;
  }
  .toiminnot_mobiili .dropdown-menu {
    position: static;
  }
  .toiminnot_mobiili .dropdown-menu .dropdown-menu {
    position: absolute;
  }
  /*only show dropdowns on hover when not in mobile view*/
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  /*change min-width in mobile to prevent navigation scrollbars (has min-width 600px otherwise)*/
  .dropdown-menu-large {
    min-width: 100% !important;
  }
  .dropdown span {
    font-size: 130%;
  }
  .nav .dropdown {
    /*width:100%;*/
  }
  .active {
    padding-left: 15px;
  }
  .navbar-nav .nav-header,
  .menu-background .navbar-nav .dropdown ul li .nav-header {
    display: none;
    font-size: 90%;
    color: #83c37c;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #fff !important;
  }
  .menu-background .navbar-nav .dropdown ul a {
    padding-left: 25px;
  }
  .menu-background .ui-btn .caret,
  .menu-background button .caret {
    margin-top: 10px !important;
  }
  #QueueSettings .tooltippi .dropdown-menu,
  #LectureQueueSettings .tooltippi .dropdown-menu {
    left: auto !important;
  }
  .codelinkki {
    max-width: 120px;
  }
  .body {
    background: #fff;
  }
  .tulostepohjan_asetukset .tulostepohjan_asetus2,
  .tulostepohjan_asetukset .tulostepohjan_asetus4 {
    width: 100% !important;
    clear: none !important;
    margin-bottom: 20px !important;
  }
  .tulostepohjan_asetukset .tulostepohjan_asetus3 {
    width: 100% !important;
    clear: none !important;
    margin-bottom: 10px !important;
  }
  .tulostepohjan_asetukset .ui-radio {
    float: none;
  }
  .tulostepohjan_asetus3 .col-xs-5 {
    width: 150px !important;
    padding-left: 0 !important;
  }
  .tulostepohjan_asetus3 .col-xs-7 {
    width: 100px !important;
    padding-left: 0 !important;
  }
  .tulostepohja .row .col-xs-12 {
    width: 100% !important;
  }
  .alert_div {
    margin-right: 5px;
    margin-top: 5px;
  }
  .navbar-nav li {
    clear: both;
  }
  .toimintopainikkeet .mobimenu {
    background: #fff;
  }
  .menu-background .dropdown .ui-link:focus,
  .menu-background .dropdown .ui-link:hover {
    background-color: #000 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .mobiletable_margintop {
    padding-top: 10px;
    text-align: left;
  }
  .mobiletable_margintop b,
  .mobiletable_margintop_tieto b {
    display: none !important;
  }
  .menu-background {
    width: 100% !important;
  }
  .navbar-brand {
    display: inherit !important;
    max-width: 140px;
    padding-top: 15px !important;
  }
  .toiminnot_mobiili .mobimenu {
    width: 100%;
    top: 40px !important;
  }
  img {
    max-width: 100%;
  }
  .kayttajamenu {
    right: 0 !important;
    left: auto !important;
    top: 45px !important;
  }
  .kayttajamenu li a:link {
    font-size: 16px;
  }
  .toiminnot_mobiili .btn span {
    color: #000;
    font-size: 16px;
    font-weight: bold;
  }
  .toiminnot_mobiili ul .btn .caret {
    color: #38c;
  }
  .toiminnot_mobiili .caret {
    float: right;
    margin-top: 9px;
    margin-right: 10px;
  }
  .toimintopainikkeet .content {
    padding-top: 3px;
  }
  .toimintopainikkeet {
    padding: 0;
  }
  .toiminnot_mobiili .btn {
    background: transparent linear-gradient(to bottom, #fff 0%, #f4f7f7 100%, #fff 100%, #ccc 100%) repeat scroll 0 0;
  }
  .toiminnot_computer {
    display: none;
  }
  .kysymysdivi .btn_link {
    width: auto !important;
  }
  .checkbox_label span {
    min-width: 200px;
  }
  .col-xs-6,
  .container_div_no_margin .col-xs-6 {
    clear: both;
    width: 100% !important;
  }
  .modal50 .btn_link {
    width: auto !important;
    margin-right: 0;
  }
  .email_padding_left {
    padding-left: 15px !important;
  }
  .valittu_tapahtuma_div_link {
    clear: both;
    margin-top: 0px;
  }
  .menu-background {
    background: transparent !important;
  }
  .content-1 .searchdivi1,
  .content-1 .searchdivi2,
  .content-1 .searc_icon_div {
    width: 100% !important;
    margin-bottom: 10px;
  }
  #userMenuPrimary {
    padding: 10px;
  }
  #userMenuPrimary span {
    display: none !important;
  }
  #userMenuPrimary .caret {
    display: none;
  }
  #userMenuPrimary .glyphicon {
    padding: 0;
  }
  #userMenuPrimary .glyphicon-user {
    font-size: 24px;
  }
  .navbar-header {
    background: transparent !important;
    float: left;
    margin-right: 10px;
  }
  .kysymysdivi .kysymyksen_linkit {
    float: left;
    margin-left: -18px;
  }
  .content {
    width: 100%;
  }
  .footer {
    width: 90%;
    margin: auto;
    float: none;
  }
  .systemlogo {
    margin: auto !important;
    float: none !important;
    width: 150px;
    display: inherit;
  }
  .systemlogo a,
  .systemlogo a img {
    max-width: 100%;
  }
  .content-50-2 .col-xs-6,
  #customer .content-50-2 .col-xs-6,
  #lecture-Edit .content-50-2 .col-xs-6,
  #product .content-50-2 .col-xs-6 {
    width: 100% !important;
  }
  .original_col .col-xs-4 {
    width: 100% !important;
    clear: none;
  }
  .original_col .col-xs-3 {
    width: 100% !important;
    clear: none;
  }
  .content-50-2,
  .content-50 {
    padding: 10px 30px;
  }
  textarea.form-control {
    height: 150px;
  }
  #search-external-id {
    width: 80px !important;
  }
  .top_fixed {
    height: 42px !important;
    background: #222222;
    position: fixed;
    z-index: 199;
    top: 0;
  }
  .systemlogo {
    display: none !important;
  }
  .top-links {
    margin-top: -8px;
  }
  .alert_div {
    margin-right: 10px;
  }
  .top_fixed {
    padding: 0 !important;
  }
  #content-event-header .ui-link,
  #content-event-header .event_omatila,
  #content-event-header .event_paattynyt,
  #content-event-header .event_haettavana,
  #content-event-header .event_umpeutunut,
  #content-event-header .event_julkaisematon,
  #content-event-header .event_kaynnissa,
  #content-event-header .event_valittu,
  #content-event-header .event_peruutettu,
  #content-event-header .event_tuntematon {
    height: 22px !important;
    line-height: 20px !important;
  }
  .toimintopainikkeet ul li {
    width: 100% !important;
  }
  .only_mobile {
    display: inherit !important;
  }
  #event-information {
    width: 80px !important;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #b3b3b3;
    font-size: 12px;
    margin-top: 8px !important;
    height: 42px;
    float: right;
    padding-left: 0;
    position: absolute;
    right: 90px;
    top: 0;
    margin-bottom: 0;
  }
  #event-information .btn_link {
    color: #b3b3b3 !important;
    font-size: 13px;
  }
  .toimintopainikkeet {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 6px 4px -6px #bbb;
    height: 40px;
    padding: 3px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 50px;
  }
  .toimintopainikkeet .content,
  .toimintopainikkeet .content .container-fluid {
    margin-top: 0;
  }
  .toimintopainikkeet .kieliselite,
  .kieliselite {
    max-width: 400px;
    float: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #content-event-header .ui-link {
    height: 26px !important;
    line-height: 22px !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .contiologo {
    height: 42px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #fff !important;
    padding: 5px !important;
    background: url(images/contioevent-logo-mob.png) no-repeat center center;
    margin-top: 0;
    width: 160px;
    background-size: contain;
  }
  .ticket_onsite_main_div .col-xs-6,
  .ticket_onsite_header .col-xs-6 {
    width: 100% !important;
  }
  .top_tr {
    margin-top: 0;
    /*background: #2f2e2c;*/
  }
  .navbar-nav .ui-link {
    color: #38c !important;
  }
  .menu-background .content {
    width: 96%;
  }
  .login {
    padding: 30px 10px 10px 10px;
    width: 100%;
  }
  .col-xs-5,
  .col-xs-7 {
    width: 100% !important;
    margin-bottom: 5px !important;
  }
  .contio_top {
    margin-bottom: 0px;
    width: 100%;
    float: left;
  }
  .navbar-nav {
    margin: 0;
  }
  .navbar-header button {
    padding: 20px 10px !important;
    width: 95%;
    background: url(images/mob_menu.png) center no-repeat !important;
    margin: auto !important;
  }
  .menu-background .navbar-nav .dropdown-menu-large {
    width: 100%;
    min-width: 100% !important;
    max-width: 100%;
  }
  .menu-background .navbar-nav .active {
    padding-left: 0;
  }
  .menu-background .navbar-nav a.mainmenu-mainpage-active {
    width: 100%;
  }
  .menu-background .navbar-nav .dropdown-menu-large a,
  .menu-background .navbar-nav .dropdown-menu-large a:focus,
  .menu-background .navbar-nav .dropdown_2 a,
  .menu-background .navbar-nav .dropdown_2 a:focus {
    background-color: #222222 !important;
    line-height: 35px !important;
    width: 100%;
    font-size: 15px;
    padding: 0;
    margin: 0;
  }
  .menu-background .navbar-nav .ui-link,
  .menu-background .navbar-nav .ui-link:focus,
  .menu-background .navbar-nav .dropdown ul a,
  .menu-background .navbar-nav .dropdown ul button {
    color: #c2c2c2 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .menu-background {
    position: absolute;
    top: 1px;
    /*width: 50px !important;*/
    z-index: 1;
    background: #222222 !important;
  }
  .menu-background .navbar-collapse .navbar-nav {
    height: auto;
  }
  .menu-background {
    width: 100%;
    float: left;
    box-shadow: none;
  }
  .menu-background .dropdown-menu {
    position: relative !important;
  }
  .menu-background nav {
    background: #222222;
    border: none;
  }
  .menu-background .navbar {
    height: auto;
    min-height: 50px;
  }
  .menu-background .navbar-toggle {
    width: 40px;
    float: right;
  }
  .menu-background .dropdown-menu li {
    width: 100% !important;
  }
  .menu-background .dropdown-menu {
    width: 100% !important;
    box-shadow: none;
  }
  .menu-background .nav > li > a {
    display: inline !important;
  }
  .table_inner .ui-table-cell-label,
  .display_none {
    display: none !important;
  }
  .valittu_tapahtuma_div_pvm {
    margin-top: 0;
    clear: both;
  }
  .toimintopainikkeet {
    height: auto;
    border-bottom: 1px solid #ddd;
  }
  .toimintopainikkeet div {
    clear: both;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .toimintopainikkeet div .btn_link {
    float: none;
    padding-top: 10px !important;
    padding-bottom: 8px !important;
    display: block;
    margin-bottom: 5px;
    margin-top: 0 !important;
    height: auto;
    min-height: 40px;
    width: 23% !important;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: transparent linear-gradient(to bottom, #fff 0%, #f4f7f7 100%, #fff 100%, #ccc 100%) repeat scroll 0 0 !important;
    border-color: #dee4ed #dee4ed #d1d8e2 !important;
    border-image: none;
    border-style: solid !important;
    border-width: 1px !important;
    height: 35px;
    float: left;
    margin-right: 2%;
  }
  .toimintopainikkeet div ul .btn_link {
    background: #fff !important;
  }
  .toimintopainikkeet div .mobimenu .btn_link {
    border: none !important;
    text-align: left;
    padding-left: 20px !important;
  }
  .toimintopainikkeet .toiminnot_mobiili .btn_link {
    width: 100% !important;
  }
  .toimintopainikkeet .toiminnot_mobiili {
    margin: auto;
    margin-top: 0;
    max-width: 300px;
    width: 100%;
    float: none;
  }
  .top_td {
    text-align: center;
    height: auto;
    line-height: 18px;
  }
  .contio_top {
    padding-bottom: 0;
  }
  .top_td .btn_link2,
  .top_td label {
    padding: 2px;
  }
  .top_td .number_active {
    margin-top: 5px;
    float: none;
    padding-top: 7px !important;
    padding-bottom: 5px !important;
  }
  .top_td img {
    margin-bottom: 14px;
    margin-top: 5px;
  }
  #kayttajadropdown {
    float: right;
    position: absolute;
    right: 0;
    top: 10px;
    margin-bottom: 0;
  }
  #kayttajadropdown button {
    color: #b3b3b3 !important;
    float: right;
  }
  .contio_top {
    z-index: 2;
    position: relative;
    width: 60%;
    float: right;
  }
  .language {
    display: none;
  }
  .main {
    margin-top: 80px;
  }
  .tapahtuman_tietoa {
    display: none;
  }
  .kopioi_kaikki {
    width: 100%;
  }
  .ui-table-reflow.ui-responsive td,
  .ui-table-reflow.ui-responsive th {
    width: 100%;
    box-sizing: border-box;
    float: left;
    clear: left;
  }
  .ui-table-reflow td .ui-table-cell-label,
  .ui-table-reflow th .ui-table-cell-label {
    padding: 0.2em !important;
    min-width: 30%;
    display: inline-block;
    margin: -0.4em 1em -0.4em -0.4em;
    float: left;
  }
  .ui-table-cell-label {
    float: left;
    display: table-cell !important;
  }
  .ui-table-reflow .table_header {
    display: none;
  }
  .ui-table th,
  .ui-table td {
    line-height: 1.5em;
    text-align: left;
    vertical-align: middle !important;
  }
  .content-70-asiakaskortti table .ui-checkbox,
  .content-70-tapahtumavalinta table .ui-checkbox {
    margin-top: 10px;
    margin-bottom: 20px;
    float: left;
  }
  .content-70-asiakaskortti table .ui-radio,
  .content-70-tapahtumavalinta table .ui-radio {
    margin-top: 15px;
    margin-bottom: 10px;
    float: left;
  }
  .taulukko_label,
  .taulukko_label_paataso {
    display: table-cell !important;
  }
  .navbar-collapse {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1px !important;
    border-top: none !important;
    border-radius: 4px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .content-50 .container_div_margin .col-xs-6,
  .content-50-2 .container_div_margin .col-xs-6 {
    width: 100% !important;
    clear: both;
  }
  .mainmenu-mainpage-active {
    width: 100%;
    background-color: transparent;
  }
  .tooltippi .dropdown-menu {
    position: absolute !important;
  }
  .toimintopainikkeet ul li {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
    float: none;
    letter-spacing: 0 !important;
  }
  #content-event-header #EventBasicInformation {
    max-width: 350px;
    display: block;
    text-overflow: ellipsis;
    height: 20px;
    overflow: hidden;
    width: auto !important;
    margin-top: -8px !important;
  }
  #content-event-header a {
    margin: 0 !important;
  }
  .panel-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media screen and (max-width: 640px) {
  h2 {
    font-size: 20px;
  }
  table {
    overflow-x: auto;
  }
  .content-1 .col-xs-3 {
    width: 100% !important;
  }
  .button_green {
    margin-bottom: 10px;
  }
  .content-30-tapahtumavalinta .button_green {
    width: 100% !important;
  }
  .btn_link {
    width: 100% !important;
  }
  .modal-footer .btn_link {
    margin-left: 0;
    margin-right: 0;
  }
  .postitoimisto .col-xs-3 {
    width: 100% !important;
    margin-bottom: 5px !important;
  }
  #content-event-header #EventBasicInformation {
    max-width: 200px;
    width: 200px;
  }
  .toimintopainikkeet div .btn_link {
    width: 30% !important;
  }
  .toimintopainikkeet .container-fluid {
    padding: 0 20px !important;
  }
  .top_td {
    padding-left: 20px;
  }
  .content-1 {
    margin-bottom: 0;
    padding: 20px;
  }
  .col-xs-3 {
    width: 33% !important;
  }
  .col-xs-2 {
    width: 50% !important;
  }
  .button_green,
  .buttonlink,
  .content-50 .button_green,
  .content-50 .buttonlink {
    width: 100% !important;
  }
  tbody {
    width: 100%;
  }
  .div_row_main {
    width: 100%;
  }
  .content-50 .div_row_main {
    width: 100%;
  }
  .div_row_not_mobile {
    display: none;
  }
  .content-30-tapahtumavalinta .div_row_main {
    width: 100%;
    float: left;
    clear: both;
    margin-right: 0%;
  }
  .navbar-header {
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  #content-event-header #EventBasicInformation {
    max-width: 130px;
  }
  .toimintopainikkeet div .btn_link {
    width: 47% !important;
  }
  .helppi {
    display: none;
  }
  .systemlogo {
    margin: inherit !important;
    padding-left: 60px;
    width: 130px;
  }
  #kayttajadropdown button {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  .contiologo {
    width: 100px;
    background-size: contain;
  }
}

@media screen and (max-width: 420px) {
  .alert_div {
    display: none;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 14px !important;
  }
  .col-xs-3 {
    width: 50% !important;
  }
  #event-information {
    width: 60px !important;
  }
  #content-event-header a {
    max-width: 50px;
    font-size: 9px !important;
  }
  .helppi {
    display: none;
  }
  #content-event-header {
    margin-left: 40px !important;
  }
  #content-event-header {
    margin-left: 20px;
  }
  #kayttajadropdown .top-links {
    margin-left: 20px;
  }
  .col-xs-2 {
    width: 100% !important;
  }
  #kayttajadropdown {
    float: left !important;
  }
  #content-event-header #EventBasicInformation {
    max-width: 80px;
  }
  .panel-title .collapsed:hover,
  .panel-title a:hover,
  .panel-title .collapsed:link,
  .panel-title a:link {
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
  }
  .contiologo {
    width: 100px;
    background-size: contain;
  }
  .content-50-2,
  .content-50 {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 340px) {
  .toimintopainikkeet div .btn_link {
    margin-right: 0;
  }
  .systemlogo {
    display: none;
  }
  .navbar-brand {
    display: none !important;
  }
}

@media print {
  .panel-collapse {
    display: block !important;
    height: auto !important;
    font-size: 50px !important;
    line-height: 70px;
  }
  .panel-heading a {
    font-size: 110px !important;
    padding-left: 0 !important;
    margin-bottom: 50px !important;
    margin-top: 30px;
  }
  .h4_2 {
    font-size: 70px !important;
  }
  .content-1,
  .content,
  .main {
    width: 80cm;
  }
  .content {
    margin: 2cm !important;
  }
  .content-1 .panel-body img {
    max-width: 100% !important;
  }
  .content-1 .panel-body img.smallimage {
    max-width: 50% !important;
  }
  .sub_ohje_title {
    font-size: 85px !important;
    padding-left: 0 !important;
    font-weight: bold !important;
    margin-bottom: 50px !important;
  }
  .ohje_valiotsikko {
    font-size: 90px !important;
    margin-bottom: 30px !important;
  }
}

.confirmationModal .flex-wrapper {
  flex-direction: row;
  flex: 1 1 100%;
  margin: 1rem 0;
}

.usermenu__separator {
  width: 95%;
  border-bottom: 1px solid #ccc;
  margin: 2px 0;
}

.usermenu__subheader {
  padding: 13px;
  color: #808080;
  font-size: 1rem;
  font-weight: bold;
}

.usermenu__btn_link {
  font-weight: normal;
  margin-right: 10px;
  padding: 7px 5px !important;
  color: #38c;
  width: auto;
  border: none;
  text-align: center;
  background: none;
  float: left;
  border: 1px solid transparent;
  border-radius: 4px;
}

.memoMouseover {
  display: none;
  position: absolute;
  background: white;
  padding: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  max-width: 25rem;
  z-index: 999;
}

.home_calendar_btn_search {
  /*background: #5b9943 url("images/mainmenu-mainpage.png") no-repeat center;*/
  background: #f7fafc url("images/list_icon_active.png") no-repeat center;
  width: 50px;
  height: 32px;
  border: none;
  -moz-box-shadow: 0 0 5px #ccd9de;
  -webkit-box-shadow: 0 0 5px #ccd9de;
  box-shadow: 0 0 5px #ccd9de;
  border-radius: 3px;
}

.home_calendar_btn_full {
  background: #f7fafc url("images/calendar_icon.png") no-repeat center;
  width: 50px;
  height: 32px;
  border: none;
  border-radius: 3px;
  cursor: default !important;
}

.home_calendar_view {
  float: right;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 50px;
  margin-right: 15px;
}
