/*
    DEMO STYLE
*/

.img-container {
    text-align: center;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    background: #fafafa;
}

th, td {
    padding: 5px;
}

tr.noBorder td {
  border: 0;
}

@font-face {
    font-family: 'MaturaMTScriptCapitals';
    src: url('/static/fonts/MaturaMTScriptCapitals.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.matura-font {
    font-family: 'MaturaMTScriptCapitals', sans-serif;
}
/* p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}
*/
.modal-backdrop {
    display: none;
    z-index: 1040 !important;
}

.modal-content {
    margin: 2px auto;
    z-index: 1100 !important;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

/*a {
    color: cornflowerblue;
}

a:active {
    color: blue;
}

a:visited {
    color: purple;
}

a[tabindex]:focus {
    color:blue;
    outline: none;
} */

/* Plugin cards */
.row {
    display: flex;
    flex-wrap: wrap;
}

.plugin-card {
    position: relative;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plugin-select-button, .plugin-label {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.plugin-select-button.Buy-Now {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.plugin-select-button.Configure {
    background-color: #002245;
    color: white;
    border: none;
    cursor: pointer;
}

.plugin-label.Installed {
    background-color: green;
    color: white;
}

.plugin-label.Coming-Soon {
    background-color: orange;
    color: white;
}


/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #fff;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

/* unvisited link
a:link {
  color: blue;
  text-decoration: underline;
}

a:visited {
  color: purple;
  text-decoration: underline;
} */

.navbar {
    /* padding: 15px 10px; */
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-item {
    border-color: #adb5bd;
    border-radius: 0;
}


.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.nav.navbar-nav.navbar-right li a {
    color: white !important;
}

.nav.navbar-nav li a{
    color: white !important;
} 
/* Modify the background color */
.bg-custom {
    background-color: #002245!important;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #002245 !important;
    box-shadow: none;
    outline: none !important;
    border: none;
}


table.inner {
     margin: 0 auto;
}

#transtable, #transtable td{
  border:none;
  background:transparent;
}

#transtable tr:hover, #transtable td:hover {
  background:transparent;
}
.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: #e4eff7; // Choose your own color here
 }

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #002245;
}
 
/* font colors */
.text-autumn-1 {
    color: #00b4bc;
}

.text-autumn-2 {
    color: #fd545a;
}

.text-autumn-3 {
    color: #002b36;
}

.text-white {
    color: white;
}

.text-red {
    color: red;
}

.text-green {
    color: green;
}

.verticalhorizontal {
    display: table-cell;
    height: 300px;
    text-align: center;
    width: 300px;
    vertical-align: middle;
}
/* ---------------------------------------------------

    SIDEBAR STYLE

----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px;
}

 
#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #002245;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}


#sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg);
}


#sidebar .sidebar-header {
    padding: 8px;
    background: #002245;
    text-align: center;
}

 
#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

 
#sidebar ul p {
    color: #fff;
    padding: 10px;
}

 
#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #002245;
    background: #fff;
}


#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #002245;
}


a[data-toggle="collapse"] {
    position: relative;
}


ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #002245;
}

 
ul.CTAs {
    padding: 20px;
}


ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}


a.download {
    background: #fff;
    color: #002245;
}


a.article, a.article:hover {
    background: #002245 !important;
    color: #fff !important;
}

/* ---------------------------------------------------

    CONTENT STYLE

----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

 
#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    cursor: pointer;
}


#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #555;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}


#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}

#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}

#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}

 
#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}

/* ---------------------------------------------------

    Spinny loader

----------------------------------------------------- */

.loader {
  position: absolute;
  left: 50%;
  top: 70%;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-right: 16px solid green;
  border-bottom: 16px solid red;
  border-left: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}


/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ---------------------------------------------------

    MEDIAQUERIES

----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }
    #sidebar.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }
}
