.empty{
    margin-top: 10px;
}

.infosLicenses{
    background: rgb(245, 245, 245);
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
    text-align: center;
    font-size: 17px;
}

.infosHeader{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.mainInfos{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
    height: 50px;
    background: var(--mainBlue);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    font-weight: bold;
    position: sticky;
    top: -10px;
    z-index: 1;
}

.titleinfos{
    font-weight: bold;
}

.otherInfos{
    width: 100%;
    padding: 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    color: gray;
}

/* .itemOtherInfos{
    text-align: left;
} */

.commentaire{
    color: gray;
    margin-top: 10px;
}

#commentaire{
    resize: none; 
    background: white;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Roboto';
}

.addLicense{
    width: 100%;
    text-align: center;
}

.showHiddenLicense{
    text-align: end;
}

.showHiddenLicenseButton{
    display: none;
    text-decoration: underline;
    color: gray;
    cursor: pointer;
    margin: 10px;
}

.addLicenseButton{
    border: none;
    background: var(--mainBlue);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.addingLicense{
    display: none;
    padding: 20px;
}

.blockForm{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

input[name=designation], input[name=designationModif]{
    margin-left: 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
    height: 25px;
    outline: none;
    padding: 5px;
}

.deviceType{
    border-bottom: 1px solid gray;
    margin: 10px 0;
    border-top: 1px solid gray;
    padding: 10px 0;
}

.radio{
    margin: 0 10px;
}

.radioCheck{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.blockRadio{
    text-align: start;
}

.warning::before{
    content: "\f06a";
    font-family: 'fontawesome';
    color: red;
    position: relative;
}

.addNewLicense{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.addNewLicenseButton{
    border: none;
    background: #8aca40;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.listLicenses{
    margin: 10px 10px;
    border-top: 1px solid black;
    padding-bottom: 10px;
}

.listLicenses>.dataTables_wrapper {
    border-radius: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.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: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--mainBlue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--mainBlue);
}

input:checked + .sliderApp {
    background-color: #8aca40;
}

input:focus + .sliderApp {
    box-shadow: 0 0 1px #8aca40;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.android::after{
    content: "\f17b";
    font-family: 'fontawesome';
    font-size: 25px;
    position: relative;
}

.ios::after{
    content: "\f179";
    font-family: 'fontawesome';
    font-size: 25px;
    position: relative;
}

.desktop::after{
    content: "\f109";
    font-family: 'fontawesome';
    font-size: 25px;
    position: relative;
}

.tablet::after{
    content: "\f10a";
    font-family: 'fontawesome';
    font-size: 25px;
    position: relative;
}

.deleteLicense{
    transition: 0.4s;
}

.deleteLicense:hover{
    opacity: 0.5;
}

.deleteLicense::after{
    font-family: 'Material Icons';
    content: "delete";
    color: rgb(175, 13, 13);
    font-size: 25px;
}

.editLicense{
    transition: 0.4s;
}

.editLicense:hover{
    opacity: 0.5;
}

.editLicenseIcon{
    color: orange;
}

.cancel{
    color: red;
}

.infoLicense{
    transition: 0.4s;
}

.infoLicenseIcon{
    color: var(--mainBlue);
}

.infoLicense:hover{
    opacity: 0.5;
}

.editLastLicense{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.applicationTypeModif{
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid lightgray;
}

.deletingLicense{
    display: none;
    border-bottom: 1px solid lightgray;
    margin: 10px 40px;
    padding: 10px;
    color: #af0d0d;
}

.questionDelete{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question{
    margin-bottom: 10px;
}

.deleteLicenseButton{
    border: none;
    background: #af0d0d;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.cancelDeleteLicenseButton{
    border: none;
    background: #888888;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.editingLicense{
    display: none;
    border-bottom: 1px solid gray;
    margin: 10px 40px;
    padding: 10px;
}

.dissociateLicense{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
}

.btnEdit{
    border: none;
    background: orange;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.dissociateLastLicenseButton{
    background: #af480d;
}

.dissociateLastLicenseButton::before{
    font-family: 'Material Icons';
    content: "backspace";
    color: white;
    margin-right: 7px;
}

.editLastLicenseButton::before{
    font-family: 'Material Icons';
    content: "edit";
    color: white;
    margin-right: 7px;
}

.designationLicense{
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
}

.refreshLicense{
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.4s;
}

.refreshLicense:hover{
    opacity: 1;
}

.allInfosLicense{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 10px;
    border-bottom: 1px solid gray;
    margin: 10px 40px;
    border-top: 1px solid gray;
    text-align: left;
}

.serialNumber{
    padding: 10px;
    border-bottom: 1px solid gray;
    margin: 0 40px;
}

.licenseDisabled{
    display: none;
}

.allowedApps{
    display: none;
    background: #e6e7e7 !important;
    cursor: default;
}

.appList{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
    margin: 10px 40px;
}

.app{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5px 50px;
    margin: 10px 40px;
}

.status::before{
    font-family: 'Material Icons';
    content: "check_circle";
    color: #8aca40;
    font-size: 20px;
}

.appName{
    margin-left: 10px;
}