.appdropdown {
    position: relative;
    width: 200px;
    font-family: Arial, sans-serif;
    z-index: 10;
    display: inline-block;
}

.appdropdown .selectedApp {
    /*display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    */

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ffffff57;
    border: 0px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.appdropdown .selectedApp:hover {
    border-color: #999;
}

.appdropdown .options {
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;

    border-radius: 5px;
    color: black;
}

.appdropdown .option {
    display: flex;
    align-items: center;
    padding: 0px;

}

.appdropdown .app {

	cursor:pointer;
}
/*
.option:hover {
    background-color: #f5f5f5;
}
*/

.appdropdown .option input[type="checkbox"] {
    margin-right: 10px;
}

.appdropdown span {
    user-select: none;
}


/* */


/* Hide the browser's default checkbox */
.appdropdown .option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.appdropdown .checkmark {
  /*position: absolute;*/
  top: 0;
  left: 0;
  /*height: 25px;
  width: 25px;*/
  /*background-color: #eee;*/
  /*margin-right: 10px;*/
  padding: 5px;
}

/* On mouse-over, add a grey background color */
.appdropdown .option:hover input ~ .checkmark {
  /*background-color: #ccc;*/
}

/* When the checkbox is checked, add a blue background */
.appdropdown .option input:checked ~ .checkmark {
  /*background-color: #2196F3;*/
}

/* Create the checkmark/indicator (hidden when not checked) * /
.appdropdown .checkmark:after {
  content: "";
  display: none;
}

/* Show the checkmark when checked * /
.appdropdown .option input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator * /
.appdropdown .option .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
*/

#appdropdowncontainer {
    position: absolute;
    right: 5px;
}

/* Add these styles to your existing CSS */
.appdropdown .option input[type="checkbox"] {
    display: none;
}

.appdropdown .option .checkmark::before {
content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 25px;
    color: #d8d8d8;
    cursor: pointer;
    margin: 0px;
    vertical-align: middle;
	padding: 5px;
}

.appdropdown .option .checkmark:hover::before {
    color: #a4c3d1;
	background-color: #eee;
}

.appdropdown .option input[type="checkbox"]:checked + .checkmark::before {
    
	
	color: #03A9F4;
}

.appdropdown .single {
	width: 100%;
    /*background: red;*/
   /* padding: 7px 10px;*/
text-align: left;
}

.appdropdown .appSingle:hover {
	background-color: #e3e2e2;
}

.appdropdown .single img, .appdropdown .singleselected img {
	height: 30px;
    vertical-align: middle;
    margin-right: 10px;
    display: inline;
}

.appdropdown .single img {
    margin: 0px 10px 0px 10px;
}

.appdropdown .singleselected.locked::after {
    content: "\f023";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    /*color: #727272;*/
    color: #ffffffb0;
    
}

/*
.appdropdown .single.locked::after {
    content: "\f023";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    color: #d8d8d8;
    margin-left: 10px;
}
*/


.appdropdown .single.auto::after {
    content: "\e2ca";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    color: #727272;
}


.appdropdown .singleselected::after {
    content: "\e2ca";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    color: #ffffffb0;
}

.appdropdown .optionTitle {
    /*max-width: calc(100% - 65px);*/
    max-width: 93px;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 25%);
}

@media (max-width: 768px) {
    .appdropdown .optionTitle {
        display: none;
    }

    .appdropdown {
        width: 80px;
    }

    .appdropdown .single.locked::after {
        display:none;
    }

    .appdropdown .option .checkmark::before {
        font-size: 17px;
    }
        
}


.mediaMode .selectedApp {
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 0px;
    height: 29px;
}
/*
.singleselected.auto::after {
    content: "\e2ca";
    font-family: "Font Awesome 6 free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    color: #727272;
}
*/