.helpercall {
    cursor: pointer;
}

.helper {
    position: fixed;
    -moz-display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    height: 0;
    z-index: 1000000;
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 100%;
    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;
    color:#333;
}

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

.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 {
    /*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: 10px;
    overflow: hidden;
    max-width: 100%;
}

.helper > div > .icon:first-child {
    /*display: block;*/
    /*text-align: right;*/
    /*cursor: pointer;*/
    /*font-size: 1.5em;*/
    /*color:#333;*/
    /*position: absolute;*/
    /*right: 0.5em;*/
    /*top: 11px;*/
}

.helper > div > .header {
    /*background: #54A9CB;*/
    background-color: #dedede;
    color: #333;
    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 - 9em);
    overflow: auto;
}

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

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

.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: 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: 5px 0;
    }

    .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 {
    background-color: rgb(76, 182, 223);
}


