﻿.mainContainer {
    background-color: #E8E8E8;
    justify-content: space-evenly;
    margin-left: 40px;
    margin-right: 40px;
}


.licenceContainer {
    padding: 10px;
}

h1, .activeStatus {
    user-select: none;
}

    .licenceContainer h1 strong {
        user-select: all;
    }
form:first-of-type {
     margin-bottom: 0; 
}

form {
     margin-top: 0; 
}
.container {
    width: 100%;
    padding: 10px;
    display: flex;
}

.subContainer {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 50%;
}
.activateBody {
    width: 50%;
    justify-content: center;
    display: flex;
}
.barTitle {
    background-color: var(--main-bg-color);
    width: 100%;
    color: white;
    padding: 10px;
    box-sizing: border-box;
}

#licenceKeyInput {
    width: 100%;
    margin-top: 11px;
}

.barTitle > h1 {
}

.con1 {
    display: flex; /* or inline-flex */
    align-items: center;
}
.hide {
    display: none;
}

.status {
    display: flex;
}

.Active {
    color: green;
}

.Expired, .Invalid, .NotLicenced{
    color:red;
}
    .status > text {
        font-weight: bold;
        padding-top: 2px;
    }

.request {
    display: flex;
    align-content: baseline;
    height: 45px;
}

    .request > h1 {
        white-space: nowrap;
    }

.con1 > h1 {
    width: 140px;
}
#myDIV {
    display: flex;
    align-items: center;
    width: calc(100% - 141px);
}

    #myDIV > .far {
        font-size: 20px;
        color: black;
        margin-left: 10px;
    }

.licence {
    display: flex;
    align-content: baseline;
    height: 63px;

}
    .subContainer > h1 {
        padding-right: 17px;
        width: 120px;
    }
.licenceKeyBody {
    width: calc(100% - 159px);
}
.activate {
    display: flex;
    justify-content: space-evenly;
    padding-right: 18px;
}

button {
    color: white;
    border: none;
    background-color: var(--main-bg-color);
    padding: 8px;
    font-size: 16px;
    width: 120px;
}

    button:hover {
        cursor: pointer;
        opacity: 0.9;
    }
/* Tooltip container */
.tooltip {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 7px;
    border-bottom: 0px dotted black;
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 161px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        font-size: 16px;
        position: absolute;
        z-index: 1;
        bottom: 90%;
        left: 50%;
        margin-left: -81px;
        opacity: 1;
        transition: opacity 0.3s;
    }

        /* Tooltip arrow */
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent;
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.newTask, .topbarLeft {
    visibility: hidden;
}


.verticalLine {
    border-left: 3px solid lightgray;
    margin: 15px 0;
}

input {
    background-color: white;
    color: black;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid lightgray;
    margin-bottom: 10px;
}

