


.mystyle {
    width: 300px;
    height: 100px;
    background-color: coral;
    text-align: center;
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
}


 .visible-scrollbar
 {
	display: block;
	width: 10em;
	overflow: auto;
	height: 2em;
}

.frame {
    overflow-y: auto;
    height: 3em;
    width: 10em;
    line-height: 1em;
}

.frame::-webkit-scrollbar {
    -webkit-appearance: none;
}

.frame::-webkit-scrollbar:vertical {
    width: 5px;
}

.frame::-webkit-scrollbar:horizontal {
    height: 0px;
}

.frame::-webkit-scrollbar-thumb {
    border-radius: 5px;
    border: 0px solid white; /* should match background, can't be transparent */
    background-color: rgba(45, 45, 104, 0.60);
}


@keyframes spin2 { 100% { transform:translate(0px,-200px); opacity:0.0} }