﻿.expandable {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 4.8em;
    right: 0px;
    background-color: white;
}

    .expandable.expanded {
        height: auto;
        padding-bottom: 115px;
    }

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    background-color: #f2f2f2;
}

    .header:hover {
        background-color: #e2e2e2;
    }


.content {
    padding: 10px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expandable.expanded .content {
    height: auto;
    padding-top: 10px;
}

.active-svg {
    display: none;
}

.circle-container {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.text-f {
  margin-left: 10px;
}

.floating-div {
    display: none;
}

.floating-div.expanded-floating-div {
    display: block;
}

.cursor-top {
    position:absolute;
    width: 20px;
    height: 20px;
    background: #D9D9D9;
    border-radius: 8px;
    z-index:99 !important;
}

/*.cursor {
    position: absolute;
    z-index: 99;
}*/

.cursor {
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 1;
}


/*
#cursorContainer {
    margin: 0 !important;
    padding: 0 !important;
}
*/