.std-detail .std-card{
    background-color: white;
    box-shadow: 0px 10px 20px 0px rgb(29 72 88 / 20%); 
    border-radius: 30px;
}
.std-detail .std-card .card-header{
    padding: 15px 15px 0px 15px;
}
.std-detail .std-card .card-header h2{
    margin-bottom: 0px;
}
.std-detail .std-card .information{
    padding-left: 15px;
    padding-right: 15px;
}
.std-detail .std-card .information .field{
    color: rgba(var(--wpb-accent-1), 0.75);
    margin-bottom: 5px;
}
.std-detail .std-card .information iframe{
    border-radius: 20px;
    padding-bottom: 10px;
}
.std-detail .std-card hr{
    opacity: 0.4;
    color: rgb(var(--wpb-accent-1));
    margin: 10px 0px;
}


.std-detail .weather-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px 0px 30px 0px;
    padding-bottom: 10px;
}

.std-detail .weather-card .item {
    flex: 1 0 33%;
    text-align: center;
    border-bottom: 1px solid rgba(var(--wpb-accent-1), 0.2);
}
.std-detail .weather-card .item .body {
    padding: 5px 5px 10px 5px;
}

.std-detail .weather-card .item .header .title {
    font-size: 17px;
    color: rgba(var(--wpb-accent-1), 0.75);
    font-weight: 600;
    padding: 10px 5px 0px 5px;
}
/* .std-detail .weather-card .item .header .undertitle {
    font-size: 17px;
    color: white;
    font-weight: 500;
    padding: 0px 10px 0px 10px;
} */
.std-detail .weather-card .item .header .icon {
    height: 50px;
}
.std-detail .weather-card .item .header .icon img {
    width: 60px;
    height: 60px;
    /* image-rendering: -webkit-optimize-contrast; */
}
.std-detail .weather-card .item:not(:last-child){
    border-right: 1px solid rgba(var(--wpb-accent-1), 0.2);
}
.std-detail .weather-card .item:first-child .body {
    border-radius: 0px 0px 0px 20px;
}
.std-detail .weather-card .item:last-child .body {
    border-radius: 0px 0px 20px 0px;
}
.std-detail .weather-card .item .header .icon img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.std-detail .weather-card .item .body {
    /* height: 90px; */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.std-detail .weather-card .item .body .degrees {
    font-size: 17px;
    color: rgba(var(--wpb-accent-1), 0.75);
    font-weight: 600;
}
.std-detail .weather-card .item .body .kind {
    font-size: 13px;
    color: rgba(var(--wpb-accent-1), 0.75);
    margin-top: 5px;
    line-height: 16px;
    font-weight: 500;
}

.std-detail .weather-card .item:nth-child(3) {
    border-right: none;
}
.std-detail .weather-card .item:nth-child(4) {
    border-bottom: none;
}
.std-detail .weather-card .item:nth-child(5) {
    border-bottom: none;
}
.std-detail .weather-card .item:nth-child(6) {
    border-bottom: none;
}

.std-detail .weather-card .item:nth-child(1) .body {
    border-radius: 0px;
}
.std-detail .weather-card .item:nth-child(3) .header .icon {
    border-style: none;
}
.std-detail .weather-card .item:nth-child(4) .body {
    border-radius: 0px 0px 0px 20px;
}
@media only screen and (max-width: 1250px) {
    .std-detail .weather-card .item{
        flex: 1 0 33%;
    }
    .std-detail .weather-card .item .header .icon img {
        width: auto;
    }
}

.std-card.under-main-card{
    padding: 15px;
}
.std-card.under-main-card iframe{
    border-radius: 20px;
}

.std-card.under-main-card .link{
    align-items: center;
    display: flex;
    margin-bottom: 5px;
}
.std-card.under-main-card .link a{
    color: rgba(var(--wpb-accent-1), 0.75);
    transition: 100ms ease-in-out;
    text-decoration: none;
}
.std-card.under-main-card .link a:hover{
    color: rgba(var(--wpb-accent-1), 1);
}
.std-card.under-main-card .link::before{
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    vertical-align: baseline;
    margin-right: 10px;
    content: "\f0a9";
    color: rgb(var(--wpb-accent-1));
}

.std-faq{
    width: 100%;
}
section.std-faq{
 padding: 48px 0px 20px 0px;
}
.std-faq .faq-item{
    background-color: white;
    box-shadow: 0px 10px 20px 0px rgb(29 72 88 / 20%); 
    margin-top: 16px;
    /* padding: 22px; */
    position: relative;
    border-radius: 20px;
}
.std-faq .faq-item:first-child{
    margin-top: 0px;
}
.std-faq .faq-item .question{
    padding: 16px 20px;
    padding-right: 50px;
    position: relative;
    padding: 22px;
    cursor: pointer;
}
.std-faq .faq-item .question:after{
    display: inline-block;
    content: "";
    transition: 100ms ease-in-out;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    filter: invert(1);
    background-image: url(/wp-content/themes/wux/assets/img/icon_chevron_down_wit.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 12px;
}
.std-faq .faq-item.open .question:after{
    transform: rotate(180deg) translateY(50%);
}
.std-faq .faq-item .question h3{
    margin-bottom: 0;
    margin-top: 0;
    color: rgba(var(--wpb-accent-1));
}
.std-faq .faq-item .answer{
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    /* transition: 200ms ease-in-out; */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 22px;
}
.std-faq .faq-item.open .answer{
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    position: relative;
}
.std-faq .faq-item .answer p{
    color: rgba(var(--wpb-accent-1));
    margin-bottom: 0px;
}