.float-help{
	position:fixed;
	width:40px;
	height:40px;
	right:30px;
	background-color:#3366cc;
	color:#FFF;
	border-radius:40px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
        font-size:22px;
        cursor:pointer; 
}

.float-help-pos{
	margin-top:10px;
}

.help-float{
    display: flex;
    align-items: center;
    justify-content: center;
    position:fixed;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    width:100px;
    height:35px;
    overflow: hidden;
    right: -55px;
    background-color:#ccc;
    color:#FFF;
    text-align:center;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
    transition: all 1s;
    animation: right-to-left 2s ease-out;
}

.help-float:hover{
    right: 0px;
}

.help-content{
    position:fixed;
    display: flex;
    flex-direction: column;                
    background-color: #fff;
    box-shadow: 2px 2px 3px 3px #ddd;
    height: 100vh;
    width: 410px;
    top: 0px;
    right: 0px;
    padding: 10px;
    z-index:100;  
    font-size:14px;  
    transform-origin: 100% 50%; 
    visibility: hidden;    
    overflow-y: auto;
}

.help-close{
    margin: 0px 0px 0px 375px;
    color: #ff0000;
    font-size: 20px;
}

.help-close:hover{
    color: #ff8080;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}            

.my-help-icon{
    font-size:24px !important;
    padding-right: 20px !important;
    color:#3366cc;
}

[type=radio] {
    display: none;
}

[type=radio]:checked ~ label ~ .help-content{
    visibility: visible;
    animation: scale-in 2s;    
}

.help-tabs {
    position: relative;   
    height: 100%;
    clear: both;
    margin: 5px 0px 0px 0px;
    width: 100%;
}

.help-tab {
    float: left;
    margin: 5px;
}

.help-tab label {
    background: transparent; 
    padding: 3px; 
    margin-left: -1px; 
    position: relative;
    left: 1px; 
    cursor: pointer;
    color: #858e97;
}

.help-tab [type=radio] {
    display: none;
}

.tab-content {
    position: absolute;
    top: 28px;
    left: 0;
    margin-top: 30px;
    background: white;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.help-iframe {
    height: calc(100% - 50px);
    width: 100%;
    border: none;
}

.help-content [type=radio]:checked ~ label {
    background: white;
    color: #858e97;
    font-weight: bold;
    border-bottom: 3px solid rgb(251, 176, 59);
    z-index: 2;
}

.help-content [type=radio]:checked ~ label ~ .tab-content {
    z-index: 1;
}               

@keyframes right-to-left {
    0%   {right:-200px;}
    50%  {right:-55px;}
}

@keyframes scale-in {
    0%   {right:-400px;}
    50%  {right:0px;}
}