.helpercall {
    cursor: pointer;
}

@media print {
    #helperbody {
        display: none !important;
    }
}

.helper {
    position: fixed;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    height: 0;
    z-index: 1000000;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 100%;
    color: #000;
    opacity: 0;
    margin-top: -100vh;
    -webkit-transition: opacity 100ms ease;
    -moz-transition: opacity 100ms ease;
    -ie-transition: opacity 100ms ease;
    transition: opacity 100ms ease;
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ie-transition-delay: 100ms;
    transition-delay: 100ms;
}

.helper.showed {
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    opacity: 1;
    margin-top: 0;
    height: auto;

}

.helper > div {
    position: relative;
    /*background: #485ca1;*/
    background-color: #fff;
    -moz-box-shadow: 0 15px 10px -14px #000;
    -webkit-box-shadow: 0 15px 10px -14px #000;
    box-shadow: 0 15px 10px -14px #000;
    border-radius: 0.2em;
    max-width: calc(100% - 2em);
}

.helper > div > .close-icon {
    display: block;
    text-align: right;
    cursor: pointer;
    font-size: 1.5em;
    position: absolute;
    right: 0.5em;
    top: 0.48em;
}

.helper > div > .header {
    /*background: #54A9CB;*/
    background-color: #ADD2F2;
    /*color: #F8F8F8;*/
    padding: 1em 3em;
    margin: 0 0;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0.2em 0.2em 0 0;
}

.helper > div > .contentwrapper {
    max-height: calc(100vh - 12em);
    overflow: auto;
}

.helper > div > .contentwrapper > .content {
    padding: 1em 2em;
}

.helper > div > .buttons {
    padding: 1em 2em 0.5em 2em;
    clear: both;
    border-top: 1px solid #dedede;
}

.helper > div > .buttons .button {
    margin-bottom: 0.5em;
}

.helper > div > .buttons .button + .button {
    margin-left: 10px;
}

/*
.helper .content .field {
	margin: 10px 0;
	text-align: left;
}

.helper .content .field input.warning{
	
}
*/

@media screen and (max-width: 480px) {
    .helper {
        width: 100%;
    }

    .helper > div > .contentwrapper {
        max-height: calc(100vh - 20em);
    }
}

@media screen and (max-width: 360px) {
    .helper > div > .buttons {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: stretch;
        -webkit-align-items: stretch;
        -ms-align-items: stretch;
        align-items: stretch;

    }

    .helper > div > .buttons .button {
        /*margin-bottom: 0.55px 0;*/
        width: 100%;
        box-sizing: border-box;
    }

    .helper > div > .buttons .button + .button {
        margin-left: 0;
    }
}

.helper .content .commands {
    margin-top: 20px;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}

.helper .content .commands .buttons {
    width: 100%;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -moz-align-self: flex-start;
    -webkit-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start;
}

.helper .content .commands .buttons .button {
    margin-left: 20px;
}

@media screen and (max-width: 560px) {

    .helper .content .commands .buttons {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: stretch;
        -webkit-align-items: stretch;
        -ms-align-items: stretch;
        align-items: stretch;

    }

    .helper .content .commands .buttons .button {
        margin: 5px 0 5px 20px;
    }

}

@media screen and (max-width: 360px) {
    .helper .content .commands {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .helper .content .commands .buttons {
        margin-top: 10px;
    }

    .helper .content .commands .buttons .button {
        margin: 5px 0;
    }

}

.helper[rel=tunecontent] > * {
    width: 98%;
}

.helper.spinner > .wrapper.style-white {
    background: none;
    box-shadow: none;
    color: #fff;
}

.helper.spinner > div > .contentwrapper > .content {
    padding: 0;
}

.helper.spinner > div > .contentwrapper {
    max-height: unset;
}

.helper.spinner > .wrapper.style-white .icon {
    position: absolute;
    display: inline-block;
    font-size: 5em;
    color: #fff;
    margin-top: -0.5em;
    margin-left: -0.5em;
}

.helper label {
    text-align: left
}

#helperbody .messenger {
    position: fixed;
    text-align: center;
    font-size: 1.1em;

    -moz-transition: -moz-transform 0.5s ease, -moz-background-color 3s 0s ease;
    -webkit-transition: -webkit-transform 0.5s ease, -webkit-background-color 3s 0s ease;
    -ms-transition: -ms-transform 0.5s ease, -ms-background-color 3s 0s ease;
    transition: transform 0.5s ease, background-color 3s 0s ease;

    z-index: 1000001;

    background-color: #f8e6b8;
    color: #222;

    right: 1em;
    bottom: 1em;

    width: auto;
    border-radius: 10px;
    padding: 1em;
    min-width: 100px;

    -moz-transform: translateX(calc(100% + 2em)) translateY(0);
    -webkit-transform: translateX(calc(100% + 2em)) translateY(0);
    -ms-transform: translateX(calc(100% + 2em)) translateY(0);
    transform: translateX(calc(100% + 2em)) translateY(0);

    box-shadow: 8px 8px 15px #aeaeae;
}

#helperbody .messenger a {
    color: #222;
}

#helperbody .messenger.error {
    background-color: rgba(213, 71, 71, 0.82);
    -moz-transition: -moz-transform 0.5s ease, -moz-background-color 0s ease;
    -webkit-transition: -webkit-transform 0.5s ease, -webkit-background-color 0s ease;
    -ms-transition: -ms-transform 0.5s ease, -ms-background-color 0s ease;
    transition: transform 0.5s ease, background-color 0s ease;
}

#helperbody .messenger:hover,
#helperbody .messenger.visible {
    -moz-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    -ms-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);

}




