@charset 'UTF-8';
@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,600");

/*
	Prologue by Pixelarity
	pixelarity.com @pixelarity
	License: pixelarity.com/license
*/

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

:root {
    --primary-color: #7160E8;
}


body {
    background: #fff;
}

    body.is-loading * {
        -moz-transition: none !important;
        -webkit-transition: none !important;
        -o-transition: none !important;
        -ms-transition: none !important;
        transition: none !important;
        -moz-animation: none !important;
        -webkit-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

body, input, textarea, select {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19pt;
    font-weight: 300;
    line-height: 1.75em;
    color: #888;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #666;
    line-height: 1.5em;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
        text-decoration: none;
    }

    h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
        color: #333;
    }

h2 {
    font-size: 2em;
    letter-spacing: -1px;
}

    h2.alt {
        color: #888;
    }

        h2.alt strong {
            color: #666;
        }

h3 {
    font-size: 1.5em;
}

header {
    margin: 0 0 2em 0;
}

    header > p {
        margin: 1em 0 0 0;
    }

footer {
    margin: 2em 0 0 0;
}

strong, b {
    font-weight: 300;
    color: #666;
}

em, i {
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    border-bottom: dotted 1px rgba(128,128,128,0.5);
    -moz-transition: color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
    -webkit-transition: color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
    -o-transition: color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
    -ms-transition: color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
    outline: 0;
}

    a:hover {
        color: #69c6e5;
        border-bottom-color: rgba(255,255,255,0);
    }

sub {
    position: relative;
    top: 0.5em;
    font-size: 0.8em;
}

sup {
    position: relative;
    top: -0.5em;
    font-size: 0.8em;
}

hr {
    border: 0;
    border-top: solid 1px #ddd;
}

blockquote {
    border-left: solid 0.5em #ddd;
    padding: 1em 0 1em 2em;
    font-style: italic;
}

p, ul, ol, dl, table {
    margin-bottom: 2em;
}

br.clear {
    clear: both;
}

/* Sections/Article */

section,
article {
    margin-bottom: 3em;
}

    section > :last-child,
    article > :last-child,
    section > .container > :last-child,
    article > .container > :last-child {
        margin-bottom: 0;
    }

    section:last-child,
    article:last-child {
        margin-bottom: 0;
    }

.row > section,
.row > article {
    margin-bottom: 0;
}

/* Image */

.image {
    display: inline-block;
    border: 0;
}

    .image img {
        display: block;
        width: 100%;
    }

    .image.avatar48 {
        width: 48px;
        height: 48px;
        background: #f00;
    }

        .image.avatar48 img {
            width: 48px;
            height: 48px;
        }

    .image.fit {
        display: block;
        width: 100%;
    }

    .image.featured {
        display: block;
        width: 100%;
        margin: 0 0 2em 0;
    }

    .image.left {
        float: left;
        margin: 0 2em 2em 0;
    }

    .image.centered {
        display: block;
        margin: 0 0 2em 0;
    }

        .image.centered img {
            margin: 0 auto;
            width: auto;
        }

/* List */

ul {
}

    ul.default {
        list-style: disc;
        padding-left: 1em;
    }

        ul.default li {
            padding-left: 0.5em;
        }

    ul.icons {
        cursor: default;
    }

        ul.icons li {
            display: inline-block;
        }

        ul.icons a {
            display: inline-block;
            width: 2em;
            height: 2em;
            line-height: 2em;
            text-align: center;
            border: 0;
        }

ol {
}

    ol.default {
        list-style: decimal;
        padding-left: 1.25em;
    }

        ol.default li {
            padding-left: 0.25em;
        }

/* Form */

form {
}

    form label {
        display: block;
        text-align: left;
        margin-bottom: 0.5em;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="password"],
    form select,
    form textarea {
        position: relative;
        -webkit-appearance: none;
        display: block;
        border: 0;
        outline: 0;
        background: #fff;
        background: rgba(255,255,255,0.75);
        width: 100%;
        border-radius: 0.35em;
        padding: 0.75em 1em 0.75em 1em;
        box-shadow: inset 0 0.1em 0.1em 0 rgba(0,0,0,0.05);
        border: solid 1px rgba(0,0,0,0.15);
        -moz-transition: all 0.35s ease-in-out;
        -webkit-transition: all 0.35s ease-in-out;
        -o-transition: all 0.35s ease-in-out;
        -ms-transition: all 0.35s ease-in-out;
        transition: all 0.35s ease-in-out;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="password"],
    form select {
        line-height: 1.25em;
    }

        form input[type="text"]:focus,
        form input[type="email"]:focus,
        form input[type="password"]:focus,
        form select:focus,
        form textarea:focus {
            box-shadow: 0 0 2px 1px #cc6371;
            background: #fff;
        }

    form textarea {
        min-height: 14em;
    }

    form .formerize-placeholder {
        color: #555 !important;
    }

    form ::-webkit-input-placeholder {
        color: #555 !important;
    }

    form :-moz-placeholder {
        color: #555 !important;
    }

    form ::-moz-placeholder {
        color: #555 !important;
    }

    form :-ms-input-placeholder {
        color: #555 !important;
    }

    form ::-moz-focus-inner {
        border: 0;
    }

/* Table */

table {
    width: 100%;
}

    table.default {
        width: 100%;
        text-align: left;
    }

        table.default tbody tr:nth-child(2n+2) {
            background: #f4f4f4;
        }

        table.default td {
            padding: 0.5em 1em 0.5em 1em;
        }

        table.default th {
            text-align: left;
            padding: 0.5em 1em 0.5em 1em;
            color: #fff;
            background: #222729 url('images/overlay.png');
        }

        table.default thead {
            background: #444;
            color: #fff;
        }

        table.default tfoot {
            background: #eee;
        }

        table.default tbody {
        }

/* Button */

input[type="button"],
input[type="submit"],
input[type="reset"],
.button {
    position: relative;
    display: inline-block;
    border-radius: 0.35em;
    color: #fff !important;
    text-decoration: none;
    padding: 0.75em 2.5em 0.75em 2.5em;
    background-color: var(--primary-color);
    border: 0;
    cursor: pointer;
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url('images/overlay.png');
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url('images/overlay.png');
    background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url('images/overlay.png');
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url('images/overlay.png');
    background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url('images/overlay.png');
    -moz-transition: background-color 0.35s ease-in-out;
    -webkit-transition: background-color 0.35s ease-in-out;
    -o-transition: background-color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out;
    transition: background-color 0.35s ease-in-out;
}

    input[type="button"]:hover,
    input[type="submit"]:hover,
    input[type="reset"]:hover,
    .button:hover {
        background-color: #dc7381;
    }

    input[type="button"]:active,
    input[type="submit"]:active,
    input[type="reset"]:active,
    .button:active {
        background-color: #bc5361;
    }

/* Item */

.item {
    box-shadow: 0 0.05em 0.15em 0 rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

    .item header {
        background: #fff;
        margin: 0;
        padding: 1em 0 1em 0;
        font-size: 0.8em;
    }

        .item header h3 {
            font-size: 1em;
        }

/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/

.icon {
    text-decoration: none;
}

    .icon:before {
        display: inline-block;
        font-family: FontAwesome;
        font-size: 1.25em;
        text-decoration: none;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .icon > .label {
        display: none;
    }

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 375px;
    height: 100%;
    color: #fff;
    background: #222629 url('images/overlay.png');
    box-shadow: inset -0.25em 0 0.25em 0 rgba(0,0,0,0.1);
    text-align: right;
}

    #header .top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    #header .bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
    }

    #header .icons {
        font-size: 0.8em;
        margin: 0 0 0em 0;
        text-align: center;
    }

        #header .icons a {
            color: #989898;
            -moz-transition: color 0.35s ease-in-out;
            -webkit-transition: color 0.35s ease-in-out;
            -o-transition: color 0.35s ease-in-out;
            -ms-transition: color 0.35s ease-in-out;
            transition: color 0.35s ease-in-out;
        }

            #header .icons a:hover {
                color: #fff;
            }

/*********************************************************************************/
/* Bootstrap overrides                                                           */
/*********************************************************************************/
.modal-backdrop {
    z-index: 10500 !important;
}

.modal {
    z-index: 10550 !important;
}

#logo {
    position: relative;
    /*margin: 1.75em 1.5em 1.5em 1.5em;*/
    min-height: 48px;
    cursor: default;
    width: 100%;
    height: 150px;
}

    #logo h1 {
        position: relative;
        color: #fff;
        font-weight: 600;
        font-size: 1em;
        line-height: 1em;
    }

    #logo p {
        position: relative;
        display: block;
        font-size: 0.6em;
        color: rgba(255,255,255,0.5);
        line-height: 1.25em;
        margin: 0.5em 0 0 0;
    }

    #logo .image {
        display: inline-block;
        height: 75px;
        width: 75px;
        border-radius: 50px;
        border: solid 3px var(--primary-color) !important;
    }

    #logo .logoImage {
        display: inline-block;
        height: 100px;
        width: 100px;
        border-radius: 50px;
        border: solid 3px var(--primary-color) !important;
    }

    #logo .logoBackground {
        position: relative;
        height: 100%;
        width: 100%;
        background-size: cover;
    }

    #logo .logoContent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }

    #logo .logoTitle {
        line-height: 18px;
        font-weight: bold;
    }



#nav {
}

    #nav .navSeparator {
        width: 90%;
        border-top: solid 1px var(--primary-color);
        margin-left: 5%;
    }

    #nav .backLink {
        font-size: 0.8em;
    }

        #nav .backLink::before {
            margin-right: 5px;
            font-size: 1em !important;
        }

    #nav ul {
    }

        #nav ul li {
        }

            #nav ul li a {
                display: block;
                padding: 0.5em 1.5em 0.5em 1.5em;
                color: rgba(255,255,255,0.5);
                text-decoration: none;
                outline: 0;
                border: 0;
                -moz-transition: none;
                -webkit-transition: none;
                -o-transition: none;
                -ms-transition: none;
                transition: none;
            }

                #nav ul li a span {
                    position: relative;
                    display: block;
                    font-size: 0.8em;
                }

                    #nav ul li a span:before {
                        position: absolute;
                        left: 0;
                        color: #41484c;
                        text-align: center;
                        width: 1.25em;
                        line-height: 1.75em;
                    }

                #nav ul li a.active {
                    background: rgba(0,0,0,0.15);
                    box-shadow: inset 0 0 0.25em 0 rgba(0,0,0,0.125);
                    color: #fff;
                }

                    #nav ul li a.active span {
                    }

                        #nav ul li a.active span:before {
                            color: #7160E8;
                        }

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

#footer {
    margin-left: 375px;
    text-align: center;
    background-color: #dce3e2;
    padding: 3em 0 4em 0;
    box-shadow: inset 0 1px 0 0 rgba(0,0,0,0.05), inset 0 0.1em 0.1em 0 rgba(0,0,0,0.025);
    font-size: 0.8em;
}

    #footer .copyright {
        cursor: default;
        margin: 0;
    }

        #footer .copyright li {
            display: inline-block;
            line-height: 1em;
            border-left: solid 1px rgba(128,128,128,0.35);
            padding: 0 0 0 0.5em;
            margin: 0 0 0 0.5em;
        }

            #footer .copyright li:first-child {
                border-left: 0;
                padding-left: 0;
                margin-left: 0;
            }

/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/

#main {
    margin-left: 375px;
}

    #main > section {
        margin: 0;
        overflow: hidden;
        padding: 4em 0;
        box-shadow: inset 0 1px 0 0 rgba(0,0,0,0.05), inset 0 0.1em 0.1em 0 rgba(0,0,0,0.025);
        text-align: center;
        background-image: url('images/overlay.png');
    }

        #main > section.dark {
            color: #ddd;
            color: rgba(255,255,255,0.75);
        }

            #main > section.dark h2,
            #main > section.dark h3,
            #main > section.dark h4,
            #main > section.dark h5,
            #main > section.dark h6 {
                color: inherit;
            }

            #main > section.dark strong,
            #main > section.dark a {
                color: #fff;
                border-color: inherit;
            }

                #main > section.dark a:hover {
                    border-bottom-color: rgba(255,255,255,0);
                }

        #main > section.cover {
            padding: 6em 0;
            background-size: cover;
            background-position: center center;
        }

        #main > section.one {
            background-color: #81918E;
            background-image: url('../images/banner.jpg');
        }

        #main > section.two {
            background-color: #f5fafa;
        }

        #main > section.three {
            background-color: #ecf1f1;
        }

        #main > section.four {
            background-color: #e8edec;
        }


















body {
    padding-top: 0px;
    padding-bottom: 0px;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #777;
    border-color: #fff
}

a {
    text-decoration: none !important;
}

label {
    margin: 1rem 0 0 0 !important;
}


.checkbox {
    margin-top: 5px !important;
}

    .checkbox label {
        display: inline !important;
        margin-top: 0px !important;
    }

    .checkbox input {
        display: inline !important;
        margin: 6px 5px 0px 0px !important;
        appearance: auto !important;
        opacity: 1 !important;
    }

.dropotron form {
    margin: 0px !important;
}

.btn:hover {
    color: var(--bs-btn-hover-color) !important;
    background-color: var(--bs-btn-hover-bg) !important;
    border-color: var(--bs-btn-hover-border-color) !important;
}

.layoutLiteViewWrapper h2 {
    padding-top: 10px;
    margin-left: 20px;
    margin-bottom: 0;
}

.layoutLiteViewWrapper {
    margin-top: 5px;
}

    .layoutLiteViewWrapper > .container > .row:nth-of-type(1) {
        position: relative;
        height: 485px;
        margin-right: -30px;
        padding-right: 35px;
        padding-bottom: 30px;
    }

    .layoutLiteViewWrapper .row:nth-child(2) {
        margin-right: -30px;
        padding-right: 20px;
        background-color: #A7814A;
        border-top: solid 8px #502f0b !important;
        border-bottom: none;
    }

.homeHighlight {
    padding:0px !important;
    height:35em;
}

.homeHighlightWrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 67%;
    margin-top: 0px !important;
    overflow: hidden;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    /*transition: background-image 0.35s ease-in-out;*/
}

.homeHighlightDiv {
    position: relative;
    margin-top: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 5px solid #009791 !important;
    /*background: #240035;*/
}

.homeHighlightOverview {
    position: absolute;
    left: 0;
    height: 100%;
    width: 55%;
    padding-top: 70px;
    /*    background: rgba(0,0,0,1);
    background: -moz-linear-gradient(left,rgba(0,0,0,1) 0,rgba(0,0,0,.85) 65%,rgba(0,0,0,0) 100%);
    background: -webkit-gradient(left top,right top,color-stop(0%,rgba(0,0,0,1)),color-stop(65%,rgba(0,0,0,.85)),color-stop(100%,rgba(0,0,0,0)));
    background: -ms-linear-gradient(left,rgba(0,0,0,1) 0,rgba(0,0,0,.85) 65%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(left,rgba(0,0,0,1) 0,rgba(0,0,0,.85) 65%,rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(left,rgba(0,0,0,1) 0,rgba(0,0,0,.85) 65%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right,rgba(0,0,0,1) 0,rgba(0,0,0,.85) 65%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);*/
    background: rgba(113,96,232,1);
    background: -moz-linear-gradient(left,rgba(113,96,232,1) 0,rgba(113,96,232,.85) 65%,rgba(113,96,232,0) 100%);
    background: -webkit-gradient(left top,right top,color-stop(0%,rgba(113,96,232,1)),color-stop(65%,rgba(113,96,232,.85)),color-stop(100%,rgba(113,96,232,0)));
    background: -ms-linear-gradient(left,rgba(113,96,232,1) 0,rgba(113,96,232,.85) 65%,rgba(113,96,232,0) 100%);
    background: -webkit-linear-gradient(left,rgba(113,96,232,1) 0,rgba(113,96,232,.85) 65%,rgba(113,96,232,0) 100%);
    background: -o-linear-gradient(left,rgba(113,96,232,1) 0,rgba(113,96,232,.85) 65%,rgba(113,96,232,0) 100%);
    background: linear-gradient(to right,rgba(113,96,232,1) 0,rgba(113,96,232,.85) 65%,rgba(113,96,232,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7160E8', endColorstr='#7160E8', GradientType=1);
    z-index: 100;
}

.homeHighlight-curved-rectangle {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: 99;
    --c: 85; /* control the curvature (a percentage value without unit bigger than 50%)*/

    aspect-ratio: 2/3;
    background: var(--primary-color);
    mask: radial-gradient(100% calc(var(--c)*1%) at calc(100% + 100%*cos(asin(50/var(--c)))),#0000 calc(100% - 1px),#000);
    clip-path: ellipse(100% calc(var(--c)*1%) at right);
}

.homeHighlightDate {
    text-align: left;
    padding-left: 5%;
    font-size: 11pt;
    font-style: italic;
}

.homeHighlightTitle {
    margin: 0% 0% 0% 5%;
    font-size: 20pt;
    color: #dbdbdb;
    text-align: left;
}

.homeHighlightDescription {
    margin: 2% 35% 0% 5%;
    color: #dbdbdb;
    text-align: left;
    font-size: 12pt;
    line-height: 25px;
}

.homeHighlightDetailsDiv {
    margin-top: 2%;
    margin-left: 5%;
    width: 385px;
    text-align: left;
}

.homeHighlightProfilePhoto {
    height: 50px;
    width: 50px;
    display: inline-table;
    border-radius: 50% !important;
}

.homeHighlightProfileNameDiv {
    display: inline-table;
    margin-left: 5px;
    vertical-align: top;
}

.homeHighlightProfileName {
    color: #dbdbdb;
    margin-right: 5px;
    font-size: 18pt;
    font-weight: bold;
    vertical-align:middle;
}

.homeHighlightLocationDiv {
    display: block;
}

    .homeHighlightLocationDiv span {
        color: #dbdbdb;
        font-style: italic;
        font-size: 10pt;
    }

.homeHighlightMoreDiv {
    margin: 5%;
    text-align: left;
}

.homeHighlightPlayButton {
    color: black !important;
    background-color: #c0c0c0;
    border: none;
    height: 45px;
    width: 115px;
    font-size: 15pt;
}

    .homeHighlightPlayButton span {
        vertical-align: text-bottom;
    }

.homeHighlightPlayIcon {
    font-size: 18pt;
}

.homeHighlightTestimoniesWrapper {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 250px;
    width: 100vw !important;
    margin:0px 0px 10px 0px;
    z-index: 10000;
    /*background-color: white !important;*/
    /*border: solid 2px #7160E8;*/
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.homeHighlightTestimonies {
    height:100%;
    text-align:left;
}

.homeHightlightTestimony {
    display: inline-block;
    height: 100%;
    width: 200px;
    margin-left: 5px;
    border-radius: 5px;
    overflow: hidden;
    background-size: cover;
    background-position:center;
    cursor:pointer;
}

.logoWatermark {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    opacity: .08;
    z-index: 0;
}

.homeHighlightVideoDiv {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 75%;
    max-width: 100%;
    max-height: 100%;
    z-index: 10;
}

    .homeHighlightVideoDiv video {
        height: 100%;
        width: 100%;
        float: right;
        object-fit: cover;
        background-color: #42281b;
    }

.homeHighlightPlayVideoModal {
    width: 98vw !important;
    max-width: 98vw !important;
}

.homeHighlightPlayVideoDiv {
    top: 0px;
    right: 0px;
  /*  height: 262px;*/
    width: 100%;
    max-width: 100%;
    z-index: 10;
}
/*
    .homeHighlightPlayVideoDiv video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        background-color: #42281b;
    }*/

.homeHighlightSoundDiv {
    float: right;
}

.homeHighlightVideoSoundOnButton, .homeHighlightVideoSoundOffButton {
    /*    position: absolute;
    top: 10px;
    right: 10px;*/
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: solid 2px #c0c0c0;
    text-align: center;
    background-color: black;
    cursor: pointer;
    padding: 0px;
}

.homeHighlightVideoSoundOnButton {
    display: none;
    color: #9647ec !important;
}

.homeHighlightVideoSoundOffButton {
    color: #c0c0c0 !important;
}

.homeHighlightSoundButton {
    vertical-align: middle;
    font-size: 20pt;
}






.exploreTestimonyVideoDiv {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    z-index: 10;
}

    .exploreTestimonyVideoDiv video {
        height: 100%;
        width: 100%;
        object-fit: contain;
        background-color: black;
    }

.exploreTestimonyWrapper {
    height: 35em;
    width: 100%;
    margin-top: 0px !important;
    overflow: hidden;
    margin-bottom: 30px;
}

.exploreTestimonyDiv {
    position: relative;
    margin-top: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 5px solid #009791 !important;
    background: #240035;
}

.exploreTestimonyOverview {
}



#mapMobileDiv {
    background-color: transparent !important;
    width: 100vw !important;
    height: 100vh;
    transition: height 1s;
}

.mapMobileDivUp {
    height: calc(100vh - 153px) !important;
}

.mapMobileTestimonialsWrapperDiv {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 178px;
    width: 100vw !important;
}

#mapdiv {
    background-color: transparent !important;
    width: 100% !important;
    height: 100vh;
    transition: height 1s;
}

.mapDivUp {
    height: calc(100vh - 153px) !important;
}

.mapTestimonialsWrapperDiv {
    position: absolute;
    bottom: -153px;
    left: 0px;
    height: 178px;
    width: 100% !important;
    transition: bottom 0.35s ease-in-out;
    /*    height: 190px !important;
   background-color: white !important;
    border: solid 2px #7160E8;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;*/
}

    .mapTestimonialsWrapperDiv.show {
        bottom: 0px;
    }

.mapRetrievingTestimonialsProgressImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 50px;
    width: 50px;
}


.testimonialsWrapperControlsDiv {
    position: relative;
    top: 0px;
    right: 3px;
    height: 25px;
    background: white;
    padding: 5px;
    border-radius: 5px;
    border: solid 2px #7160E8;
    border-bottom: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 38px;
    float: right;
}

.testimonialsWrapperOpenCloseButton {
    /*float: left;*/
    font-size: 28pt;
    vertical-align: top;
    margin: -13px 0px 0px 0px;
    padding: 0px;
    color: #7160E8;
}

.testimonialsOpenCloseButtonDivWhiteBorderDiv {
    position: absolute;
    background: white;
    top: 24px;
    right: 5px;
    width: 34px;
    height: 5px;
}

.testimonialsWrapperOpenCloseDown {
    transform: rotate(180deg);
}

.buttonSeparator {
    height: 20px;
    margin: 7px 10px;
    width: 2px;
    border: solid 1px #c0c0c0;
    float: left;
}

.testimonialsMapRecenterDiv {
    position: absolute;
    top: 2px;
    right: 3px;
    background: rgba(255, 255, 255, 0.5);
    border: solid 2px #7160E8;
    border-radius: 5px;
    padding: 3px;
}

.testimonialsMapRecenterLabel {
    display: inline;
    margin: 5px 0px 0px 0px !important;
    vertical-align: top;
    cursor: pointer;
    color: #7160E8;
}

.testimonialsMapRecenterButton {
    cursor: pointer;
    font-size: 25pt;
    color: #7160E8;
}

.testimonialsAndEmptyMessageDivWrapper {
    position: relative;
    width: 100vw !important;
    height: 153px !important;
    background-color: white !important;
    border: solid 2px #7160E8;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 23px;
    padding: 3px;
}

.testimonialsNoNodeSelectedMessage {
    font-size: 12pt;
    font-weight: bold;
    color: #c0c0c0;
    margin-left: 10px !important;
}

.testimonialsNoNodeSelectedMessageDiv {
    position: absolute;
    top: 45px;
    white-space: nowrap;
    padding: 3px;
}

.testimonialsDiv {
    /*position: relative;
    width: 100vw !important;*/
    height: 100% !important;
    /*    background-color: white !important;
    border: solid 2px #7160E8;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 23px;
    padding: 3px;*/
}

.testimonialDiv {
    position: relative;
    display: inline-block;
    height: 144px;
    width: 250px;
    margin: 0px 0px 0px 0px;
    border-radius: 5px;
    overflow: hidden;
}

.testimonialCoverPhoto {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonialDescriptionBackground {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 50px;
    width: 100%;
    background-color: black;
    opacity: 0.5;
}

.testimonyHeaderDiv {
    position: absolute;
    top: 100px;
    left: 45px;
    font-size: 7pt;
    color: white;
    white-space: nowrap;
}

.testimonyDateCreatedFormatRelativeToRightNow {
    float: left;
    font-style: italic;
}

.testimonialFullName {
    float: left;
    font-weight: bold;
}

.testimonialProfileImage {
    position: absolute;
    bottom: 10px;
    left: 5px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: solid 2px white;
}

.testimonialTitle {
    position: absolute;
    top: 115px;
    left: 50px;
    height: 45px;
    margin: 0px 0px 0px 0px;
    padding: 0px 5px 0px 0px;
    font-size: 7pt;
    color: white;
    text-wrap: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.testimonialNavigatingBackground {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.75;
}

.testimonialNavigatingSpinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    height: 50%;
}

.retrievingTestimonialsGif {
    position: absolute;
    bottom: 25px;
    left: 50px;
    height: 100px;
}


.testimonialVideoIcon {
}

.testimonialCameraIcon {
}


.adminButton {
    height: 35px;
    width: 96%;
    vertical-align: top;
    margin: 2px 2% 0px 2%;
    font-size: 12pt;
    font-weight: bold;
}

.myContentTable {
}

    .myContentTable td {
        font-size: 10pt;
        vertical-align: top;
        border-right: solid 1px #dfdfdf;
    }

.myContentEditTestimonyStatusSelect {
    padding: 0px 4px;
    height: 20px;
    width: 95px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 5px;
    font-size: 10pt;
    outline: none;
    box-shadow: none;
}

.myContentEditTestimonyTag {
    height: 25px;
    vertical-align: top;
    margin: 4px 0px 0px 0px;
    padding: 0px 4px 0px 4px;
    background-color: var(--primary-color);
    font-size: 10pt;
    border: solid 1px black;
    border-radius: 3px;
    display: inline-block;
    color: white;
}

.myContentEditTestimonyRemoveTagButton {
    display: inline-block;
    height: 20px;
    margin-top: 1px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px #c0c0c0;
}

.myContentEditTestimonyRemoveTagButtonIcon {
    font-size: 10pt;
    color: white;
    margin: 3px 4px;
    vertical-align: top;
}

.myContentEditTestimonyTagIcon {
    vertical-align: top;
    margin-top: 5px;
}

.myContentEditTestimonyTagText {
    vertical-align: top;
    line-height: 22px;
}

.myContentEditTestimonyAreaInput {
    font-size: 10pt;
    outline: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: none;
    field-sizing: content;
    padding: 0px 4px;
}

.myContentEditTestimonyArea {
    position: relative;
    border: solid 1px var(--primary-color);
    border-radius: 5px;
    padding: 0px 5px 5px 5px;
    margin: 5px 0px 0px 0px;
    line-height: 20px;
    width: 100%;
}

.myContentEditTestimonyAreaLabel {
    font-size: 8pt;
    color: #9a9a9a;
    font-weight: bold;
    margin-left: 5px;
}

.myContentEditTestimonyProgressDiv {
    display: inline-block;
    margin: 2px 0px 0px 0px;
}

.myContentEditTestimonyProgressImage {
    display: inline;
    height: 25px;
    width: 25px;
    vertical-align: middle;
}

.myContentEditTestimonyInput {
    display: inline;
    width: 185px;
    font-size: 8pt;
}

.myContentValidationMessage {
    color: darkred;
    font-size: 9pt;
    font-weight: bold;
}

.myContentEditTestimonySearchTagsResults {
    display: inline-block; /*contents;*/
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 3px;
    border: solid 1px #c0c0c0;
    border-radius: 5px;
}

.myContentEditTestimonyAddTag {
    text-wrap: nowrap;
    display: inline-block;
    margin: 1px 0px 0px 0px;
    vertical-align: top;
    padding: 0px 4px 2px 4px;
    font-size: 10pt;
    border: solid 1px black;
    border-radius: 3px;
    background-color: #e2e2e2;
    cursor: pointer;
    color: black;
}

.myContentEditTestimonyRemoveTagIcon {
    font-size: 14pt;
    color: white;
    margin: 3px 5px;
}

.myContentEditTestimonyRemoveTag {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 26px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px #c0c0c0;
}

.myContentEditTestimonySetCover {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 5px;
    border: solid 1px #c0c0c0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 5px 0px 0px 5px;
    cursor: pointer;
}

.myContentEditTestimonyAddTagButton {
    background-color: var(--primary-color);
    color: white !important;
    height: 30px;
    padding: 0px 5px;
    border: solid 1px white;
    font-size: 10pt;
    font-style: italic;
    margin: 0px 3px 0px 0px;
}

.myContentEditTestimonyAddTagIcon {
    color: black;
    margin-right: 2px;
}

.myContentEditTestimonyNoResults {
    display: contents;
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    padding: 3px;
    border: solid 1px #c0c0c0;
    border-radius: 5px;
}

.myContentEditTestimonyAddTagButtonWrapper {
    text-align: center;
    margin: 3px 0px;
}

.myContentEditTestimonyAddTagButtonText {
    color: white;
    font-size: 10pt;
    font-style: italic;
}

.myContentEditTestimonyNoResultsMessage {
    text-align: center;
    font-size: 10pt;
    color: white;
}

.myContentCreateTestimonyProgressMessage {
    margin: 10px 20px 0px 20px;
    color: var(--primary-color);
    font-size: 12pt;
    font-weight: bold;
    line-height: 20px;
}

.myContentCreateTestimonyProgressWrapper {
    position: relative;
    height: 30px;
    width: 90%;
    border: solid 2px var(--primary-color);
    border-radius: 5px;
    margin: 0px 5% 0px 5%;
    overflow: hidden;
}

.myContentCreateTestimonyProgressBar {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: var(--primary-color);
}

.myContentCreateTestimonyModalContent {
    text-align: center;
    height: 100%;
    width: 100%;
    text-align: center;
}

.myContentModalTitle {
    display: inline;
    color: var(--primary-color);
}

.myContentModalContentWrapper {
    border: solid 1px #7160E8;
}

.myContentModalHeader {
    display: table;
}

.myContentCreateTestimonyPercentageComplete {
    position: relative;
    display: inline-block;
    height: 100px;
    width: 100px;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
    border: solid 5px var(--primary-color);
}

.myContentCreateTestimonyPercentageCompleteMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--primary-color);
    font-size: 25pt;
    font-weight: bold;
}

.myContentCreateTestimonyPercentageCompleteProgress {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 90px;
    width: 90px;
    opacity: 0.2;
}

.myContentCreateTestimonyPhotoProgressImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 50px;
    width: 50px;
}

.myContentCreateTestimonyPhotoProgressWrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
}

.myContentTestimoniesUnderReviewMessage {
    display: block;
    font-size: 10pt;
    font-style: italic;
}

.myContentTestimoniesUnderReviewTitle {
    font-size: 20pt;
    font-weight: bold;
}

.myContentTestimoniesUnderReviewIcon {
    font-size: 18pt;
    font-weight: bold;
}

.myContentTestimoniesUnderReviewWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 10px 0px;
    text-align: center;
}

.myContentTestimoniesUnderReviewBackdrop {
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
}

.myContentTestimoniesUnderReviewThumb {
    height: 100%;
    width: 100%;
    background-color: white;
    background-size: cover;
}

.myContentTestimoniesPagingArrow {
    height: 25px;
    margin: 0px;
    font-size: 10pt;
    line-height: 12px;
    padding: 0px 7px 0px 7px;
}

.myContentTestimoniesPagingWrapper {
    width: 100%;
    text-align: center;
    font-size: 9pt;
    background-color: #d3d3d3;
    padding: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom: solid 1px #898989;
    border-right: solid 1px #898989;
    border-left: solid 1px #898989;
}

.myContentTestimoniesTitle {
    font-size: 12pt;
    font-weight: bold;
    line-height: 20px;
}

.myContentTestimoniesDate {
    font-style: italic;
    font-weight: bold;
    vertical-align: top;
}

.myContentTestimoniesInfo {
    font-size: 10pt;
    line-height: 14px;
    margin-top: 2px;
}

.myContentTestimoniesStatus {
    display: inline-flex;
    flex-wrap: nowrap;
    margin-left: 5px;
    font-weight: bold;
}

    .myContentTestimoniesStatus span {
        line-height: 14px;
        font-size: 10pt;
    }

.myContentTestimoniesStatusIcon {
    margin-right: 2px;
    margin-left: 5px;
}

.myContentTestimoniesVideo {
    height: 100%;
    width: 100%;
}

.myContentSelectVideoMessage {
    font-size: 16pt;
    color: var(--primary-color);
}

.myContentTestimoniesVideoPreview {
    position: relative;
    height: 300px;
    width: 100%;
    border-radius: 5px;
    border: solid 2px var(--primary-color);
    background-color: black;
    overflow: hidden;
    margin: 0px;
}

.myContentUploadVideoIcon {
    font-size: 50pt;
    color: #7160E8;
}

.myContentUploadVideoButton {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%,-50%);
    cursor: pointer;
    text-align: center;
    padding: 10px;
    border: solid 1px #7160E8;
    border-radius: 5px;
}

.myContentUploadVideoWrapper {
    position: relative;
    height: 300px;
    width: 100%;
    border-radius: 5px;
    border: solid 2px #7160E8;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0px 5px 0px;
}

.myContentRemoveVideoPreviewButton {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 26px;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    cursor: pointer;
    border: solid 1px #c0c0c0;
}

.myContentRemoveVideoPreviewIcon {
    font-size: 14pt;
    color: white;
    margin: 3px 5px;
}

.myContentHeader {
    margin: 10px 10px 0px 10px;
}

.myContentTitle {
    font-size: 20pt;
    font-weight: bold;
}

.myContentWrapper {
    position: relative;
    width: 98%;
    vertical-align: top;
    padding: 0px;
    margin: 5px 1%;
}

.myContentTestimoniesHeader {
    width: 100%;
    background-color: white;
    height: 40px;
    line-height: 20px;
    font-size: 10pt;
    font-weight: bold;
    background-color: #d3d3d3;
    padding: 5px;
    border-top: solid 1px #898989;
    border-right: solid 1px #898989;
    border-left: solid 1px #898989;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.myContentTestimoniesHeaderColOne {
    float: left;
    width: 115px;
    margin-top: 5px;
}

.myContentTestimoniesHeaderColTwo {
    float: left;
    cursor: pointer;
    margin-top: 5px;
}

.myContentTestimoniesHeaderColThree {
    float: left;
    cursor: pointer;
    margin: 5px 0px 0px 20px;
}

.myContentTestimoniesSearch {
    width: 185px;
    font-size: 8pt;
}

.myContentTestimoniesTableWrapper {
    overflow: auto;
    height: calc(100vh - 10rem);
    width: 100%;
    border-right: solid 1px #898989;
    border-left: solid 1px #898989;
}

.myContentTestimoniesTable {
    width: 100%;
    margin: 0px;
}

.myContentTestimoniesThumbCol {
    position: relative;
    width: 110px;
    padding: 5px;
}

.myContentTestimoniesDataCol {
    padding: 5px;
    position: relative;
}

.myContentTestimoniesThumb {
    position: relative;
    height: 50px;
    width: 100px;
    border-radius: 5px;
    border: solid 1px #7160E8;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px 0px 0px 5px;
}

.myContentTestimoniesThumbDuration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background-color: rgba(0,0,0,0.85);
    font-size: 9pt;
    opacity: 0.8;
    border-radius: 5px;
    color: #ececec;
    padding: 0px 4px;
    line-height: 15px;
    font-weight: bold;
}

.myContentCreateTestimonyButton {
    float: right;
    margin: 0px 10px 5px 0px;
}

.myContentCreateTestimonyButtonText {
    margin-left: 5px;
    font-weight: bold;
}

.myContentCreateTestimonyPlusIcon {
    position: absolute;
    left: 0px;
    font-size: 14pt;
    color: #7160E8;
    margin: 4px 0px 0px 2px;
}

.myContentCreateTestimonyVideoIcon {
    font-size: 20pt;
    color: #ffffff;
}

.myContentCreateTestimonyIconWrapper {
    position: relative;
    float: left;
    height: 25px;
}

.myContentEditTestimonyLocationResults {
    display: inline-block; /*contents;*/
    margin-top: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 3px;
    border: solid 1px #c0c0c0;
    border-radius: 5px;
}

.myContentEditTestimonyLocationResult {
    text-wrap: nowrap;
    display: inline;
    margin: 2px 1px 0px 0px;
    vertical-align: top;
    padding: 0px 4px 2px 4px;
    font-size: 10pt;
    border: solid 1px black;
    border-radius: 3px;
    background-color: #e2e2e2;
    cursor: pointer;
}

.myContentEditTestimonyLocationIcon {
    color: black;
    margin-right: 2px;
}

.myContentEditTestimonyButtonsWrapper {
    width: 100%;
    text-align: center;
    margin: 10px 0px;
}

.myContentEditTestimonyCoverPhotoBanner {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    font-size: 9pt;
    font-weight: bold;
    background-color: rgba(0,0,0,0.5);
    height: 20px;
    text-align: center;
    color: lime;
}

.modalCloseButton {
    float: right;
    background: none;
    border: none;
    font-size: 20pt;
    color: #c3c2c0;
    cursor: pointer;
    text-decoration: none;
}

.myContentIsBusyOverlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
}

.myContentIsBusyOverlayImage {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100px;
    width: 100px;
    margin: auto;
    transform: translate(-50%,-50%);
}

#saveTestimonyButton {
    width: 100px;
}

.btn-primary-alt {
    --bs-btn-color: #fff;
    --bs-btn-bg: #7160E8;
    --bs-btn-border-color: #7160E8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5442d1;
    --bs-btn-hover-border-color: #5442d1;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7160E8;
    --bs-btn-active-border-color: #7160E8;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #7160E8;
    --bs-btn-disabled-border-color: #7160E8;
}

.loginLink {
    display: inline;
    font-size: 12pt;
    border-bottom: none !important;
    line-height: 25px;
}

.admin-review-areaLabel {
    margin: 5px 0px 0px 2% !important;
    font-size: 10pt;
    font-weight: bold;
    line-height: 18px;
}

.admin-review-getTestimoniesButton {
    display: table;
    height: 35px;
    vertical-align: top;
    margin: 0px 0px 10px 10px;
    font-size: 10pt;
}

.admin-review-testimonyArea {
    vertical-align: top;
    display: inline-grid;
    margin: 0px 2% 10px 2%;
    padding: 5px;
    max-width: 96%;
    background-color: #e2e2e2;
    border-radius: 5px;
    border: solid 5px #c0c0c0;
}

.admin-review-testimonyProfile {
    font-size: 20pt;
    font-weight: bold;
}

.admin-review-testimonyProfileImage {
    vertical-align: middle;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: solid 2px indigo;
}

.admin-review-testimonyProfileName {
    vertical-align: middle;
}

.admin-review-testimonyTitle {
    font-size: 10pt;
    font-weight: bold;
    line-height: 18px;
}

.admin-review-testimonyTitleSpacer {
    margin: 0px 5px 0px 5px;
}

.admin-review-testimonyStatus {
    font-size: 10pt;
    line-height: 18px;
}

.admin-review-testimonyStatusValue {
    color: green;
    font-weight: bold;
}

.admin-review-testimonyPhotos {
    display: table;
}

.admin-review-testimonyPhoto {
    height: 100px;
    float: left;
    margin: 5px 5px 0px 0px;
}

.admin-review-testimonPhotoLink {
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.admin-review-testimonyPhotoLinkImage {
    height: 100%;
}

.admin-review-testimonyVideo {
    height: 100%;
    width: 100%;
    display: table;
}

.admin-review-testimonyVideoEmbed {
    background-color: black;
    margin: 5px 0px 0px 0px;
    width: 100%;
}

.admin-review-testimonyFlagSelect {
    margin: 5px 2% 0px 2% !important;
    height: 35px;
    width: 96%;
    max-width: 96% !important;
    vertical-align: top;
    background-color: #d2d2d2;
    font-size: 10pt;
}

.admin-review-testimonyReviewComments {
    margin: 5px 2% 0px 2% !important;
    font-size: 10pt;
    height: 75px;
    width: 96%;
    max-width: 96% !important;
    vertical-align: top;
    background-color: #d2d2d2;
}

.admin-review-testimonyUserStatus {
    margin: 0px 2% 0px 2% !important;
    max-width: 100% !important;
    height: 35px;
    width: 96%;
    display: inline;
    vertical-align: top;
    background-color: #d2d2d2;
    font-size: 10pt;
}

.admin-review-testimonyReviewSubmitButton {
    float: right;
    height: 35px;
    vertical-align: top;
    margin: 2px 2% 0px 2%;
    font-size: 10pt;
}

.nav-mobile-logoDiv {
    text-align: center;
    margin-bottom: 10px;
}

.nav-mobile-logoImage {
    height: 30px;
    width: 30px;
    display: inline;
    vertical-align: middle;
    opacity: 0.55;
}

.nav-mobile-logoTitle {
    display: inline;
    vertical-align: middle;
    color: #989898;
    font-weight: bold;
    font-size: 12pt;
}

.mycontent-selectedTestimonyWrapper {
    width: auto;
    vertical-align: top;
    padding: 0px 10px 0px 10px;
}

.mycontent-createAsAreaWrapper {
    margin: 0px 0px 10px 0px;
    text-align: center;
}

.mycontent-createAsArea {
    text-align: center;
    cursor: pointer;
    display: inline-block;
    color: #989898;
}

    .mycontent-createAsArea.selected {
        color: var(--primary-color) !important;
    }

    .mycontent-createAsArea span {
        display: table;
    }

.mycontent-createAsAreaSpacer {
    display: inline;
    margin: 0px 10px 0px 10px;
    height: 50px;
    width: 1px;
    border: solid 1px #989898;
}

.mycontent-createAsAreaIcon {
    display: inline-block;
    font-size: 30pt;
    margin: 0px 0px 0px 0px;
}

.mycontent-createAsAreaTitle {
    display: inline-block;
    font-size: 12pt;
    font-weight: bold;
    line-height: 18px;
}

.mycontent-createTestimony-photos {
    margin: 10px 0px 0px 0px;
}

.mycontent-createTestimony-photo {
    position: relative;
    display: inline-block;
    height: 75px;
    width: 75px;
    margin: 5px 0px 0px 5px;
    border-radius: 5px;
    background-size: cover;
    overflow: hidden;
}

.mycontent-createTestimony-photoUploadOverlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.35);
}

.mycontent-createTestimony-photoUploadCompleteProgress {
    position: absolute;
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.mycontent-createTestimony-photoUploadCompleteCheck {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 40pt;
    font-weight: bold;
    color: lime;
}

.mycontent-coverphotoclickmessage {
    font-size: 8pt;
    font-style: italic;
}
