.kuuki_box {
    background-color: rgba(34, 34, 34, 0.8);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;        
    box-shadow: 0 -3px 5px rgba(0,0,0,0.4);
    padding: 15px;
    overflow-x: scroll;
    max-height: 80vh;
    overscroll-behavior: contain;
}

.kuuki_box p {
    color: white;
    font-size: 15px;
    text-align: justify;
}

.kuuki_gomb, .kuuki_gomb:hover, .kuuki_gomb:focus, .kuuki_gomb:active {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin: 10px auto;
    text-align: center;
	
	 background: #404040;
    color: #fff;
    border: 1px solid #808080;
    text-decoration: none;
	padding: 15px 15px;
}
.kuuki_gomb:hover {
    background: #a47000;
    color: #fff;
    border: 1px solid #808080;

}

.kuuki_kivalasztas_magyarazat {
    font-size: 14px !important;    
    text-align: justify;
    margin-bottom: 10px;
}


/* The container */
.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    line-height: 101%;
    margin: 10px 0 10px 0;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    margin: 0;
}

/* Create a custom checkbox */
.checkbox_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #fff;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
    background-color: #666;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

