﻿body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin: 20px 10px 10px 20px;
    /*para glassmorphism*/
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    /*display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f0f0;*/
}

.title {
    font-size: 16pt;
    font-weight: bold;
    color: black;
}

.subtitle {
    font-size: 14pt;
    color: slategray;
}

.sectiontitle {
    font-size: 14pt;
    font-weight: bold;
    color: black;
}

.carousel {
    height: 690px;
    width: 1200px;
    align-content: center;
}

.carousel-item {
    height: 690px;
    width: 1200px;
    align-content: center;
}


* {
    font-family: "Montserrat", serif;
}

.content_wrapper {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    margin: 0 auto;
}


.card_bg {
    background: url(https://i.ibb.co/M9LB3Kq/Glassmorphism-Background.png);
    width: 100%;
    height: 100%;
    background-color: #eee;
    padding: 0;
    margin: 0;
}

.card {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    height: 105px;
    border-radius: 30px;
    margin: 15px 0;
    background: rgba( 255, 255, 255, 0.05 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 16.5px );
    -webkit-backdrop-filter: blur( 16.5px );
    border-radius: 30px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.location {
    /*font-family: Montserrat;*/
    box-sizing: content-box;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 33px;
    /* identical to box height */
    text-transform: capitalize;
    color: #000;
}

.degree {
    font-size: 28px;
    line-height: 10px;
    /* identical to box height */
    text-transform: capitalize;
    color: #23226B;
    /*font-family: 'Montserrat',sans-serif;*/
}

.weather-status {
    font-family: 'Montserrat',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #ffad1c;
    margin: 5px 0px 0px 0px;
}

.card-image img {
    width: 100px;
    height: 100px;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 95%;
}

    .styled-table th:not(:first-child),
    .styled-table td:not(:first-child) {
        text-align: right;
    }

    .styled-table tr > td:only-child,
    .styled-table tr > th:only-child {
        text-align: center;
    }

    .styled-table thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left !important;
        font-weight: bold;
    }

    .styled-table th,
    .styled-table td {
        padding: 12px 15px;
    }

    .styled-table tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .styled-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }

.styled-table-custom {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 95%;
}

    .styled-table-custom th:first-child,
    .styled-table-custom td:first-child {
        text-align: left;
    }

    .styled-table-custom td:nth-child(2) {
        text-align: left;
    }

    .styled-table-custom td:nth-child(3),
    .styled-table-custom td:nth-child(4),
    .styled-table-custom td:nth-child(5) {
        text-align: right;
    }

    .styled-table-custom thead tr {
        background-color: #009879;
        color: #ffffff;
        text-align: left !important;
        font-weight: bold;
    }

    .styled-table-custom th,
    .styled-table-custom td {
        padding: 12px 15px;
    }

    .styled-table-custom tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .styled-table-custom tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }

        .styled-table-custom tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }

.box {
    position: relative;
    max-width: 600px;
    width: 90%;
    height: 400px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}

/* common */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

    .ribbon::before,
    .ribbon::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 5px solid #2980b9;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 225px;
        padding: 15px 0;
        background-color: #3498db;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        color: #fff;
        font: 700 18px/1 'Lato', sans-serif;
        text-shadow: 0 1px 1px rgba(0,0,0,.2);
        text-transform: uppercase;
        text-align: center;
    }

/* top left*/
.ribbon-top-left {
    top: -10px;
    left: -10px;
}

    .ribbon-top-left::before,
    .ribbon-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-top-left::before {
        top: 0;
        right: 0;
    }

    .ribbon-top-left::after {
        bottom: 0;
        left: 0;
    }

    .ribbon-top-left span {
        right: -25px;
        top: 30px;
        transform: rotate(-45deg);
    }

/* top right*/
.ribbon-top-right {
    top: -10px;
    right: -10px;
}

    .ribbon-top-right::before,
    .ribbon-top-right::after {
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-top-right::before {
        top: 0;
        left: 0;
    }

    .ribbon-top-right::after {
        bottom: 0;
        right: 0;
    }

    .ribbon-top-right span {
        left: -25px;
        top: 30px;
        transform: rotate(45deg);
    }

/* bottom left*/
.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}

    .ribbon-bottom-left::before,
    .ribbon-bottom-left::after {
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-bottom-left::before {
        bottom: 0;
        right: 0;
    }

    .ribbon-bottom-left::after {
        top: 0;
        left: 0;
    }

    .ribbon-bottom-left span {
        right: -25px;
        bottom: 30px;
        transform: rotate(225deg);
    }

/* bottom right*/
.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

    .ribbon-bottom-right::before,
    .ribbon-bottom-right::after {
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-bottom-right::before {
        bottom: 0;
        left: 0;
    }

    .ribbon-bottom-right::after {
        top: 0;
        right: 0;
    }

    .ribbon-bottom-right span {
        left: -25px;
        bottom: 30px;
        transform: rotate(-225deg);
    }

.ribbonbtn {
    width: 60px;
    font-size: 14px;
    padding: 4px;
    position: absolute;
    right: -25px;
    top: -12px;
    text-align: center;
    border-radius: 20px;
    transform: rotate(20deg);
    background-color: #ff0000;
    color: white;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mud-table-cell-custom-group {
    font-weight: 500;
}

.mud-table-cell-custom-group-footer {
    padding-bottom: 50px;
    text-align: right;
}