home {
  background-color: transparent;
  border-radius: 20px;
}

:root {
  --bgc: white;
  --headertextcolor : black;
  --buttoncolor : #C7CEE7;
  --buttontextcolor : black;
  --outline: darkmagenta;
  --shadow: lightgrey;
  --bgw: #ffffff;
  --color: black;
  --imagecolor: white;
  color: white;
}

body.dark-theme {
  --bgc:rgb(38, 71, 64) ;
  --headertextcolor : white;
  --buttoncolor : orange;
  --buttontextcolor : black;
  --outline: silver;
  --shadow: transparent;
  --bgw: #ffffff;
  --color: white;
  --imagecolor: white;
  color: black;
}


body {
  background-color: var(--bgc);
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

.colorpick {
  visibility: shown;
}

.chipleft {
    padding: 0 4px;
    height: 120px;
    min-height: 100px;
    font-size: 24px;
    line-height: 90px;
    border-width:4px;
    border-radius: 64px 24px 24px 64px;
    color: var(--buttontextcolor);
    background-color: var(--buttoncolor);
    border-color: var(--outline);
    border-width: 4px;
    border-style: solid;
    font-weight: bold;
    width:100%;
    margin-left: 0px;
    margin-bottom: 8px;
    cursor: pointer;
    box-shadow: 4px 4px var(--shadow);
  }
  
  .chipleft img {
    float: left;
    margin: 15px;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: white;
  }
 
  .chipleft:hover{
    color: white;
    background-color: lightgrey;
  }
  .chipleft:hover img{
    height: 90px;
    width: 90px;
    border-color: #000000;
    border-width: 1px;
    border-style: solid;
  }

  .chipright {
    padding: 0 4px;
    min-height: 100px;
    height: 120px;
    font-size: 24px;
    line-height: 90px;
    border-width:4px;
    border-radius: 24px 64px 64px 24px;
    color: var(--buttontextcolor);
    background-color: var(--buttoncolor);
    border-color: var(--outline);
    border-width: 4px;
    border-style: solid;
    font-weight: bold;
    width:100%;
    text-align: right;
    margin-left: 11px;
    margin-bottom: 8px;
   
   
    cursor: pointer;
    box-shadow: 4px 4px var(--shadow);
  }
  
  .chipright img {
    float: right;
    margin: 12px;
    margin-right: 14px;
    width: 80px;
    border-radius: 50%;
    background-color: white;
  }

  .chipright:hover{
    color: white;
    background-color: lightgrey;
  }
  .chipright:hover img{
    height: 86px;
    width: 86px;
    border-color: #000000;
    border-width: 1px;
    border-style: solid;
  }

  .header {
    display: absolute;
    margin:4px;
    padding: 0px 4px;
    height: 80px;
    font-size: 18px;
    line-height: 80px;
    color: var(--headertextcolor);
    border-width:4px;
    background-color: var(--bgc);
    font-weight: bold;
    font-size: 36px;
    width:100%;
    
  }
  
  .header img {
    float: left;
    height: 120px;
    margin-top: 0px;
    margin-left: 0px;
    border-radius: 50%;
  }  

  .heading {
    position: absolute;
    color:var(--headertextcolor);
    margin:4px;
    left: 120px;
    padding: 0 4px;
    height: 80px;
    line-height: 80px;
    border-width:4px;
    background-color:transparent;
    font-weight: bold;
    font-size: 36px;
    width:100%;
  }

  .subheader {
    position: absolute;
    color:var(--headertextcolor);
    margin:4px;
    left: 120px;
    top: 76px;
    padding: 0 4px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    border-width:4px;
    background-color:transparent;
    font-weight: bold;
    font-size: 18px;
    width:100%;
  }

  .tile {
    padding: 0 4px;
    min-height: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 20px;
    border-width:4px;
    border-radius: 12px;
    background-color: var(--bgc);
    border-color: var(--outline);
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    width:200px;
    text-align: center;
    cursor: pointer;
    margin-top: 6px;
    padding-top: 5px;
    box-shadow: 4px 4px var(--shadow);
  }

.cohright {
  align-items: center;
  font-size: 12px;
  background-color: transparent;
  font-weight: bold;
  color: darkmagenta;
  text-align: center;
  border-radius: 50% 0px 0px 25%;
  cursor: pointer;
  color:white;
  
}

  .cohrightimg {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    margin-right: 1px;
  }

  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 0px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(255, 255, 255, 0.438); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  font-size: 12px;
}

/* Modal Content */
.modal-content {
  background-color: hsla(0, 100%, 100%, 0.90);
  margin: auto;
  padding: 4px;
  border: 1px solid #888;
  width: 80%;
  height: 86%;
  top:13%;
  align-content: flex-start;
  color:black;  
}

/* The Close Button */
.close {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
  width:24px
}

.close:hover,
.close:focus {
  color: rgb(161, 137, 137);
  text-decoration: none;
  cursor: pointer;
}

.editortext
{
  width:100%; 
  height: 20px;
  padding:8px;
  border-radius: 6px; 
  border-width: 1px; 
  border-color: teal; 
  font-size: 12px;
  font-weight: bold;
  text-align: left;
}

.dottext
{
  width:16px; 
  height: 16px;
  border-radius: 50%; 
  border-width: 1px; 
  border-color: teal;
  background-color: cyan;
  color:black; 
  font-size: 10px;
  font-weight: bold;
  text-align: center;
}
.custombutton
{
  border-radius: 8px;
  height: 24px;
  width: 120px;
  margin: 8px;
  color: #000000;
}

.dropdown {
  display: inline-block;
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 200px;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
}
.dropdown-content a:hover {
  color: #FFFFFF;
  background-color: #00A4BD;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.progress-container {
    width: 100%;
    background-color: #dddddd00;
    height: 80px;
    border-radius: 7px;
    margin-top: 0px;
}
.progress-bar {
    height: 100%;
    background-color: #4caf4f8f;
    width: 100%;
    transition: width 1s linear;
    border-radius: 10px;
}

/* Container styles */
.scrolling-text-container {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #eff5ff;
  border-radius: 0px;
  overflow: hidden;
  z-index: -1;
  
}

/* Inner container styles */
.scrolling-text-inner {
  display: flex;
  white-space: nowrap;
  font-size: 16px;
  font-weight: bold;
  padding: 0px 0;
}

/* Text styles */
.scrolling-text {
  display: flex;
}

.scrolling-text-item {
  padding: 0 10px;
}

/* Apply the animation to the text items */
.scrolling-text-inner > div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner > div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
} 
