.elevator {
    display: inline-block;
    height: 48px;
    width: 48px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    background-image: none;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

.elevator.elevator-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

.elevator .fa {
    color: white;
    margin: 0;
    padding: 0;
    position: relative;
    left: 14.5px;
    top: 12.5px;
    font-size: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.elevator:hover {
    background: rgba(0, 0, 0, 0.8);
}

.elevator:hover .fa {
    color: white;
    top: 5px;
}

@media (max-width: 768px) {
    .elevator {
        /* only show elevator on desktop screen */
        display: none !important;
    }
}

/* enable absolute positioning */
.inner-addon {
    position: relative;
}

/* style icon */
.inner-addon .fa {
    position: absolute;
    padding: 10px;
    pointer-events: none;
    color: silver;
}

/* align icon */
.left-addon .fa {
    left: 0px;
}

.right-addon .fa {
    right: 0px;
}

/* add padding  */
.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

.publication_select {
    height: 30px;
    width: 140px;
}

.publication_send {
    width: 70px;
    height: 30px;
    background: #90b75d;
    color: white;
    font-weight: bold;
}

#menu a, .right-sidebar a, .left-sidebar a, .slide-col a {
    text-decoration: none !important;
}

/* Shrink wrap strategy 1 */
.easyzoom {
    float: left;
}
.easyzoom img {
    display: block;
}


/* Shrink wrap strategy 2 */
.easyzoom {
    display: inline-block;
}
.easyzoom img {
    vertical-align: bottom;
}
.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
//  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  background-size: 300px;
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}


/* Faqmon */

.faqmon {
    max-width: 500px;
    margin: 20px auto;
}

.faqmon-item {
    margin-bottom: 5px;

    border: 1px solid #dbf0f5;
}

.faqmon-title {
    display: block;
    padding: 10px 15px;
    position: relative;

    color: #000000;
    cursor: pointer;

    transition: background .2s ease-out;
}

.faqmon-title:after {
    content: "";
    display: block;

    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #fff transparent transparent transparent;

    position: absolute;
    top: 50%;
    right: 15px;

    transform: translateY(-50%);
}

.faqmon-title:hover {
    background-color: #dbf0f5;
}

.faqmon-input {
    width: 0;
    height: 0;

    -webkit-appearance: none;
    appearance: none;

    position: absolute;
}

.faqmon-input:checked ~ .faqmon-title {
    background-color: #dbf0f5;
}

.faqmon-input:checked ~ .faqmon-title:after {
    border-style: solid;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #fff transparent;
}

.faqmon-input:checked ~ .faqmon-text {
    display: block;
}

.faqmon-text {
    display: none;
    padding: 10px 15px;

    color: #000000;
    font-size: 14px;
}