
/*ContextMenu*/
.context-menu {
    z-index: 10001;
    max-height: 50vh;
    float: left;
    min-width: 10rem;
    background-color: #fff;
    border: 0.07rem solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    overflow: auto;
}

.context-menu-item {
    padding: 0.25rem 1.5rem;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: row;
    max-width: 35rem;
    overflow: hidden;
}

.context-menu-item:hover {
    background-color: #eee;
}

.context-menu-icon {
    float: left;
    width: 2.14rem;
    height: 2.14rem;
}

.context-menu-label {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.background-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    left: 0;
    top: 0;
}

/*IconMenu*/
.navbar-icon {
    font-size: 2.8rem;
    cursor: pointer;
}

.icon-menu-icon-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.context-menu-item * {
    text-decoration: none !important;
}

/*CustomIcon*/
.custom-icon-enabled-icon {
    cursor: pointer;
}

.custom-icon-disabled-icon {
    opacity: 0.3;
}

.custom-icon-hidden-icon {
    opacity: 0;
}

/*InputContainer*/

.input-container {
    width: 100%;
    min-height: 1.2rem;
    display: flex;
    flex-direction: row;
    margin: 0;
}


.input-container-name {
    min-width: 5rem;
    margin: 0;
    width: 40%;
}


.input-container-content {
    margin: 0;
    width: 100%;
}

/*Generate Email Form*/
.email-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    height: 100%;
    width: 100%;
}

.email-child-container {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    width: 100%;
}

.input-email::placeholder {
    font-size: 0.9rem;
}

.email-message-container {
    height: 100%;
}

.email-btn-send {
    background-color: forestgreen;
    border-radius: 0.3rem;
    color: white;
    cursor: pointer;
    padding: 0.4rem;
}

    .email-btn-send:hover {
        opacity: 0.7;
    }

.email-title-champ-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email-error {
    color: red;
    font-size: .7rem;
    font-style: italic;
}

/*Details*/
.details-title-container {
    display: flex;
    flex-direction: row;
    overflow: auto;
    gap: 1rem;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    cursor: pointer;
}

.details-icon {
    font-size: 1.2rem;
    transition: .2s;
}

.details-title {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--font-default-color);
    cursor: pointer;
}

/*info circle*/
.info-circle-default-color{
    color: var(--color-primary);
}

/*text-button*/
.text-button{
    font-size:0.7rem;
    background-color: var(--color-primary);
    color: var(--font-th-color);
    border-radius:0.3rem;
    padding: 0.6rem;
    cursor: pointer;
    user-select: none;
}

.text-button:hover{
    opacity:0.8;
}

/*Loading*/
.loading-container{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background-color: rgb(136, 152, 155);
}

.rotate-animation {
    animation: rotate .8s linear infinite;
}

@-webkit-keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
