.help-icon {
    -webkit-animation: bounce .3s infinite alternate;
    -moz-animation: bounce .3s infinite alternate;
    animation: bounce .3s infinite alternate;
}
@-webkit-keyframes bounce {
    to { -webkit-transform: scale(1.2); }
}
@-moz-keyframes bounce {
    to { -moz-transform: scale(1.2); }
}
@keyframes bounce {
    to { transform: scale(1.2); }
}
.help-modal {
    position: fixed;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255,255,255,1);
    top: 60px;
    z-index: 9999;
    display: none;
}

.help-close-button {
    position: absolute;
    top: -60px;
    width:75px;
    height:60px;
    background: #fff;
    font-size:30px !important;
    padding: 7px 0;
    text-align: center;
    color: #000 !important;
}
.tutorial-lists-container {
    overflow: auto;
    width:100%;
    height:100%;
    overflow-x:hidden;
    padding:0 20px;
}
.tutorial-lists-container form {
    width: 50%;
    height: 50px;
    background: #F1F3F4;
    margin: 20px auto;
    position: relative;
    border-radius:30px;
    padding: 10px 15px;
}
.tutorial-lists-container form input {
    background: none;
    border: none;
    width:90%;
    font-size:16px
}
.tutorial-lists-container form button {
    font-size:25px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.help-content-container {
    padding: 20px 20%;
    width: 100%;
    height: 100%;
    overflow:auto;
    overflow-x:hidden;
}
.help-content-container .image {
    width:100%;
    height: 400px;
    background-position:center;
    background-size:cover;
    text-align: center;
    padding: 20% 0;
}
.help-content-container .image a {
    width:60px;
    height: 60px;
    background:#000;
    border-radius:100%;
    color: #ffffff !important;
    font-size:30px !important;
    display: block;
    margin: auto;
    padding: 6px 0;
    border:solid 2px #fff;
}
.help-content-container .its-content {
    font-size:13px !important;
}

@media(max-width:800px) {
    .help-content-container {
        width:100%;
        padding: 20px;
    }

    .help-close-button {
        top: 0;
        right: 0;
        width:40px;
        height:40px;
        left: auto;
    }
}