@media screen and (min-width:768px) {
    .desktop-only {
        display: block;
    }
}

@media screen and (max-width:767px) {
    .desktop-only {
        display: none !important;
    }
}

@media screen and (min-width:768px) {
    .mobile-only {
        display: none !important;
    }
}

@media screen and (max-width:767px) {
    .mobile-only {
        display: block;
        position: relative;
    }
}
/**
html,body{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}**/

.text_note{
	font-family: Calibri;
	font-size:11px;	
	color: #666666;
	font-style:italic;
	margin-top:-2px;
	text-align:right;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #0A664A; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #034B35; 
}