@media (min-width: 768px) {
    .row.equal {
        display: flex;
        flex-wrap: wrap;
    }

    .equal > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    .equal.row:after,
    .equal.row:before {
        display: flex;
    }
}

@media only screen and (max-width: 600px) {
    .logoPartner {
        max-width: 75px;
    }
}
img,video {
    max-width: 100%;
    height: auto !important;
}

.form-control {
    border-radius: 0px;
}
.videoWrapper {
    background-color: #333;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.partnerPosterHolder {
    position: absolute;
    left:0; top:0;
    width:100%; height: 100%;
    z-index: 99;
}

.codeInputOverlay {
    position: fixed;
    left:0;top:0;
    width:100vw;
    height: 100vh;
    background-color: #FFF;
    z-index: 100;
    overflow: scroll;
}
#ticketCode {
    text-align: center;
}


#header {
    background-color: #12103A;
    margin:10px;
    padding:10px;
    box-sizing: border-box;
    border-radius: 15px;
}
#partnerContent {
    padding:50px 0;
}
#partnerInfoHolder {
    padding:20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    background-color: #FFF;
}
#partnerInfoHolder h1 {
    margin-top: 0;
    padding-top: 0;
}


/*contactCard*/
.contactCard {
    margin-bottom: 15px;
}
.contactCard .profileImage {
    text-align: center;
}
.contactCard .profileImage img {
    width: 175px; height: 175px;
    display: inline-block;
    margin-bottom: -87px;
}
.contactCard .info {
    padding:25px;
    padding-top: 100px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    color:#777;
    font-size: 12px;
    text-align: center;
    background-color: #FFF;
}
.contactCard .info .title {
    font-size: 28px;
    font-weight: bold;
    color:#333;
}
.contactCard .info .subtitle {
    font-size:  16px;
    font-style: italic;
}
.contactCard .info .phone, .contactCard .info .email {
    display: inline-block;
}
.contactCard .info .email {
    margin-left: 20px;
}

.socialBtn {
    display: block;
    padding:25px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    color:#777;
    font-size: 16px;
    background-color: #FFF;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/*Chat*/
.chatWrapper {
    height: 100%;
    border:1px solid #efefef;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    position: relative;
}
.chatWrapper .newMessageHolder {
    position: absolute;
    bottom:0px;left:0px;
    padding:10px;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 0 0 10px 10px;
}
.newMessageHolder textarea, .newMessageHolder input {
    resize: none;
    border-radius: 10px;
}
.newMessageHolder .downButtonHolder {
    position: absolute;
    left:0; top:0;
    width: 100%;
    text-align: center;
}
.send-btn {
    border-radius: 10px;
    padding:10px;
    margin-left: 5px;
}
.downButtonHolder > span {
    position: absolute;
    left: 0;
    top: -31px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    color:#238AE6;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
}
.downButtonHolder > span.showMe {
    opacity: 1;
}

.downloadCard {
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 20px;
    color:#777;
}
.downloadCard .media-heading {
    margin:0;
    padding:0;
}

@media only screen and (max-width: 600px) {
    .chatWrapper {
        margin-top: 10px;
    }
}


.articleCard {
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    margin-bottom: 15px;
}
.articleCard .info {
    padding: 10px;
    background-color: #FFF;
    border-radius: 0 0 15px 15px;
}
.articleCard img {
    border-radius: 15px 15px 0 0;
}
.articleCard .title {
    font-size: 15px;
}
.articleCard .subtitle {
    font-size: 13px;
}
.articleCard .text {
    font-size: 11px;
}


.videoCard {
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    margin-bottom: 15px;

}
.videoCard .info {
    padding: 10px;
    background-color: #FFF;
    border-radius: 0 0 15px 15px;
}
.videoCard img {
    border-radius: 15px 15px 0 0;
}
.videoCard .title {
    font-size: 15px;
}
.videoCard .subtitle {
    font-size: 13px;
    height: 2em;
}
.videoCard .text {
    font-size: 11px;
    height: 2em;
}


.chatMessages {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: scroll;
}
.message {
    margin:10px;
    padding:10px;
    font-size: 12px;
    max-width: 80%;
    border:1px solid #efefef;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #FFF;
    color:#000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
}

.message .userName {
    font-weight: bold;
}
.message .userName .sentTime {
    font-weight: 300;
}
.message .content {

}
.message.me {
    margin-left: 20%;
}
.message.moderator {
    background-color: #FFF;
    border-color:#FFF;
    width: calc(100% - 20px);
    max-width: 100%;
    margin-left: 0;
    margin: 10px;
    color:#000;
}
.label-warning {
    background-color: #000;
    color:#FFF;
}
.message:last-child {
    margin-bottom: 75px;
}


.whatsappSupport {
    display: none;
    background-color: #1FBEA5;
    color:#FFF;
    padding: 10px;
    margin-top: 10px;
}

#partnerCarousel {
    margin-top: 50px;
}
.otherPartnerLogo {
    max-width:180px;
    height: 70px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}
.otherPartnerLogo img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}
