﻿/* Title View Styles*/
#tile-view-parent{
    height: 100%;
    width: 100%;
    margin-top: 10px;
}
#tile-view-parent.hide-tile-view{
    display: none;
}
#tile-view-parent-wrap{
    height: 43%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 13px;
    gap: 15px;
}
.tile-view-wrap{    
    width: calc(33% - 10px);
    height: 100%;
    background: white;
    display: flex;
    flex-direction: row;
    padding: 10px;
    border: 1px solid #d1cbcb;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border-radius: 5px;
}
.image-section{
    /*height: 70%;
    width:63%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-top: 12px;*/
    height: auto;
    width: 74%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-section{
    height: 100%;
    width:50%;
    display: flex;
    flex-direction: column;
}
.content-area{
    height: 80%;
    width: 100%;
    padding: 10px;
    padding-right: 0px;
    padding-top: 0px;
}
.button-area{
    height: 25%;
    width: 100%;
}
#dashboard-1 .image-section{
    background-image: url("../images/dashboard-1.png");
}
#dashboard-2 .image-section{
    background-image: url("../images/dashboard-2.png");
}
#dashboard-3 .image-section{
    background-image: url("../images/dashboard-3.png");
}
#dashboard-4 .image-section{
    background-image: url("../images/dashboard-4.png");
}
/* Sample Dashboards */ 
#dashboard-5 .image-section{
    background-image: url("../images/dashboard-5.png");
}
#dashboard-6 .image-section{
    background-image: url("../images/dashboard-6.png");
}
.content-area .title{
    color: #333333;
    font-weight: bold;
    font-size: 11px;
}
.content-area .description{
    color: #333333;
    font-size: 8px;
    margin-top: 8px;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: 0.4px;
}
#dashboard-button-element{
    height: 35px;
    width: 95%;
    font-size:12px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(to right, #3bacf6 10%, #0078D7);
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 5px;
    margin-left: 10px;
    margin-top: 10px;
}

/* Custom Iframe Dialog */
.e-dlg-container.e-dlg-center-center{
    margin-top: 13% !important;
    margin-left: 33% !important;
}
.dashboard-section #Iframe-Dialog{
    display: none;
}
#Iframe-Dialog {
    border: 1px solid #d9d9d9;
    box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .12);
}
#Iframe-Dialog .e-dlg-header-content {
    padding: 4px 10px 5px 15px;
    border-bottom: 1px solid #e6e6e6;
    background-color: #f9f9f9;
}
#Iframe-Dialog .e-dlg-header-content .e-dlg-header {
    font-size: 13px;
    font-weight: bold;
    color: #333333;
}
#Iframe-Dialog .e-dlg-header-content .e-btn-icon.e-icon-dlg-close {
    font-size: 9px;
}
#Iframe-Dialog .e-dlg-content {
    padding: 10px;
}
#Iframe-Dialog .e-dlg-content #text-description{
    padding-top: 2px;
    padding-bottom: 5px;
}
#Iframe-Dialog .e-dlg-content #embed-code{
    height: 100px;
    max-width: none;
    width: 100% !important;
    border: 1px solid #cecece;
    padding: 5px 8px;
    resize: none;
    border-radius: 5px;
}
#Iframe-Dialog .e-dlg-content #embed-code.e-invalid-input{
    border-color: red;
}
#Iframe-Dialog .e-dlg-content{
    font-size: 11px;
    letter-spacing: .3px;
    line-height: 20px;
    color: #333333;
}
#Iframe-Dialog .e-footer-content{
    border-top: 1px solid #e6e6e6;
    background-color: #f9f9f9;
}
#Iframe-Dialog .e-footer-content .e-control.e-btn{
    padding: 6px 12px;
    background-color: #0f6cbd;
    border-color: #0f6cbd;
    color: #fff;
    text-transform: none;
}
#Iframe-Dialog .e-dlg-closeicon-btn{
    float: right;
}
#Iframe-Dialog .e-dlg-header{
    line-height: 30px;
}
#Iframe-Dialog .e-footer-content{
    height: 42px;
    padding: 6px;
}
#Iframe-Dialog .e-footer-content .e-control.e-btn{
    float: right;
    margin-right: 10px;
    margin-left: 5px;
}
.empty-container{
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.5;
    z-index: 1;
    position: absolute;
    display: none;
}
.empty-container.overlay{
    display: block;
}
#loading-icon{
    display: none;
    position: relative;
    margin-top: 21%;
    left: 44%;
    font-size: 16px;
}
#loading-icon.show-icon{
    display: block;
}