/* Orima_Wordmark logo dimensions: w=400, h=103*/



/* smallscreen layout*/
@media (max-width: 669px) {
    div.logo-bar {
        height: 90px;
    }
    div.logo-bar #left-logo {
        top: 10px;
        left: 0;
        width: 300px;
        height: 85px;
        background-image: url('../images/client-logo.png');
    }
    div.logo-bar #right-logo {
        display:none;
    }
    #page-top div.title-bar {
        width:98%;
    }
    .banner{
        width: 100%;
    }
    .banner > p{
        font-size: larger;
    }
    .banner  > img{
        width: 280px;
        position: absolute;
        top: -48px;
        right: 0;
        display: none;
    }
    .pr350{
        padding: 0;
    }
}

/* smallscreen layout*/
@media (min-width: 670px) {
    div.logo-bar {
        height: 90px;
    }
    div.logo-bar #left-logo {
        top: 10px;
        left: 10px;
        width: 300px;
        height: 86px;
        background-image: url('../images/client-logo.png');
    }
    div.logo-bar #right-logo {
        top: 30px;
        right: 0;
        width: 200px;
        height: 52px;
        background-image: url('/_resources/images/Orima_Logo.png'); /*  dimensions of logo = 400 x 103  */
    }
    .banner{
        width: 100%;
    }
    .banner > p{
        font-size: larger;
    }
    .banner  > img{
        width: 280px;
        position: absolute;
        top: -48px;
        right: 0;
        display: none;
    }
    .pr350{
        padding: 0;
    }
}

/* desktop layout  */
@media (min-width: 800px) {
    div.logo-bar {
        height: 100px;              /* set height to accommodate size of logos */
    }
    div.logo-bar #left-logo {
        top: 29px;
        left: 20px;
        width: 294px;
        height: 77px;
        background-image: url('../images/client-logo.png');  /* 400 x 86   */
    }
    div.logo-bar #right-logo {
        top: 40px;                  /* set top to balance against client logo */
        right: 20px;
        width: 250px;
        height: 64px;
        background-image: url('/_resources/images/Orima_Logo.png'); /*  dimensions of logo = 400 x 103  */
    }
    .banner{
        width: 50%;
    }
    .banner > p{
        font-size: larger;
    }
    .banner  > img{
        width: 280px;
        position: absolute;
        top: -48px;
        right: 0;
        display: revert;
    }
    .pr350{
        padding-right: 350px ;
    }

}

#page-top div.title-bar {
    width:100%;
}

table.ecec {
    width:700px;
    border:none;
    border-collapse: collapse;
    margin:24px auto;
}

table.ecec td {
    border-top:1px solid #666;
    border-bottom:1px solid #666;
    padding:9px;
}
table.ecec td.actions {
    border-right:1px solid #666;
    width:100px;
    text-align:center;
}
table.ecec td.grey {
    width:150px;
    background-color:#ccc;
    border:1px solid #666;
}
table.ecec label {
    font-weight:normal;
}
table.ecec div.update {
    background-color:#0b4ea1;
    color:#ffffff;
    padding:6px;
    border-radius:4px;
    text-align:center;
    cursor:pointer;
}
table.ecec div.update:hover {
    background-color: #07254f;
}
table.ecec input {
    background-color: rgba(204, 204, 204, 0.57);
    width:300px;
    padding:3px;
    margin:12px 0;
}
ol li {
    padding-left:16px;
}
.accordion-header {
    background-color: rgba(238, 238, 238, 0.62);
    color: #444;
    cursor: pointer;
    padding: 15px;
    padding-top: 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-top: 10px;
    border-left: #0A3F47 2px solid;
}
.accordion-header > h3{
    margin-top: 10px;
}
.accordion-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-header.active {
    background-color: #ccc;
    color: #000;
}


.arrow-icon {
    /* Initial state of the arrow (pointing right) */
    font-size: 26px; /* Adjust this value to make it bigger or smaller */
    font-weight: bold; /* Make it a bit thicker to look more like an arrow */
    transform: rotate(90deg);
    transition: transform 0.4s ease; /* For smooth animation */
}

 /*State when the accordion is open*/
.accordion-header.active .arrow-icon {
    transform: rotate(270deg); /* Rotates to point down */
    transition: transform 0.4s ease; /* For smooth animation */

}
.btn-dark{
    background-color: rgba(32, 40, 93, 0.52);
    -webkit-box-shadow: 0.5px 10.5px 3.5px -1.5px #dddddd;
    -moz-box-shadow: 0.5px 10.5px 3.5px -1.5px #dddddd;
    box-shadow: 0.5px 10.5px 3.5px -1.5px rgba(150, 150, 150, 0.54);
}
.btn-dark:hover{
    /*background-color: #4471c4;*/
    color: whitesmoke;
    transform: translateY(+5px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.4);


}
/* Banner container styling */
.banner-container {
    position: relative;
    width: 100%;
    height: 20rem; /* h-80 */
    background-color: #9383e2;
    /*border-radius: 1.5rem; !* rounded-3xl *!*/
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* p-8 */
    /*margin: 1rem; !* m-4 *!*/
    overflow: hidden;
}

@media (min-width: 768px) {
    .banner-container {
        height: 24rem; /* md:h-96 */
        /*margin: 2rem; !* md:m-8 *!*/
    }
}

@media (min-width: 1024px) {
    .banner-container {
        height: 16rem; /* lg:h-112 */
    }
}

/* Background shape styling */
.bg-shape {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape-circle {
    position: absolute;
    width: 8rem; /* w-32 */
    height: 8rem; /* h-32 */
    background-color: #fde047; /* bg-yellow-300 */
    border-radius: 9999px; /* rounded-full */
    top: 25%; /* top-1/4 */
    left: 0%; /* left-[8%] */
}
@media (min-width: 768px) {
    .shape-circle {
        width: 10rem; /* md:w-40 */
        height: 10rem; /* md:h-40 */
        left: -10%; /* md:left-[10%] */
        top: 5%; /* top-1/4 */
    }
}

.shape-triangle {
    position: absolute;
    width: 7rem; /* w-28 */
    height: 7rem; /* h-28 */
    top: 25%; /* top-1/4 */
    right: 2%; /* right-[2%] */
    color: #2dd4bf; /* text-teal-400 */
    transform: rotate(45deg);
}
@media (min-width: 768px) {
    .shape-triangle {
        transform: rotate(45deg);
        right: 0%;
        top: 0%;
    }
}

.shape-triangle-red {
    position: absolute;
    width: 6rem; /* w-24 */
    height: 6rem; /* h-24 */
    bottom: -10px;
    left: 25%; /* left-1/4 */
    color: #fd4b5d; /* text-red-500 */
    transform: rotate(200deg);

}

.shape-star {
    position: absolute;
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    top: 15%;
    left: 28%;
    color: #ffffff; /* text-white */
}
.shape-star-yellow-1 {
    position: absolute;
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    top: 0%; /* top-1/4 */
    right: 40%; /* right-[8%] */
    color: #fde047; /* text-yellow-300 */
}
.shape-star-yellow-2 {
    position: absolute;
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    bottom: 25%; /* bottom-1/4 */
    right: 40%; /* right-[10%] */
    color: #fde047; /* text-yellow-300 */
}

/* Content area styling */
.content-area {
    z-index: 10;
    text-align: center;
    color: #000000; /* text-black */
    padding: 1rem; /* px-4 */
}

.content-heading {
    color:whitesmoke;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 800; /* font-extrabold */
    margin-bottom: 0.5rem; /* mb-2 */
    line-height: 1.25; /* leading-tight */
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06)); /* drop-shadow-lg */
}
@media (min-width: 768px) {
    .content-heading {
        font-size: 1.875rem; /* md:text-3xl */
    }
}
@media (min-width: 1024px) {
    .content-heading {
        font-size: 2.25rem; /* lg:text-4xl */
    }
}

@media (min-width: 768px) {
    .br-hidden {
        display: none; /* md:hidden */
    }
}

.divider {
    margin-top: 1rem; /* mt-4 */
    height: 0.375rem; /* h-1.5 */
    width: 5rem; /* w-20 */
    background-color: #fde047; /* bg-yellow-300 */
    margin-left: auto;
    margin-right: auto;
    border-radius: 9999px; /* rounded-full */
}
.leftMenu {
    background-color: rgb(240, 236, 247);
    color: #333333;
    font-weight: 600; /* font-semibold */
    font-size: 1rem !important; /* text-base */
    padding: 0.75rem 1rem; /* py-3 px-4 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); /* shadow-sm */
    border-left: 4px solid #6c5ce7;
}


