*{
    padding: 0;
    box-sizing: border-box;

}

html {
    height: 100%;
}

body{
    margin: 0px;
    padding: 0px;
    font-family: 'Lexend', sans-serif;

}

.content-container {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    position: relative;
}

.content {
    margin: 10px;
    padding: 10px 30px 50px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    border-top: rgba(49, 48, 48, 0.3) solid 1px;
    display: flex;
    justify-content: center;
}

.footer ul {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-items: center;

}

.footer ul li{
    font-size: 12px;
    text-decoration: none;
    padding: 0px 30px;
}

.footer ul li a{
    color: #313030;
    text-decoration: none;

}

.legal-text {
    margin: 10px 20px;
    padding: 10px;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    height: 70px;
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;

}

.nav .logo {
    padding-left: 20px;
}

.nav img {
    max-width: 250px;
}

.nav-links{
    margin-right: 10px;
}

.nav-links .nav-links-web{
    display: flex;

}

.nav-links li{
    display: flex;
    justify-content: space-around;
    list-style: none;
    align-items: center;
    position: relative;
}

.nav-links li a{
    text-decoration: none;
    color: #313030;
    padding: 10px;
    font-size: 20px;
}

.nav-links .nav-links-mobile {
    display: none;
}

.fa-exclamation-circle {
    color: #e01b14;
    font-size: 25px;
    position: absolute;
    top: -4%;
    right: -8%;
}

.fa-users-cog {
    color: #313030;
    font-size: 30px;
}


.toggle-button{
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
}

.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: #313030;
    border-radius: 10px;
}


.dropdown {
    display: none;
    position: absolute;
    top: 95%;
    right: -10%;
    width: 160px;
    background-color: white;
    z-index: 1;

}

.nav-links .nav-links-web li:hover .dropdown{
    display: block;
}

.nav-links .nav-links-web li .dropdown ul {
    display: block;
    padding: 10px 0px;
    justify-items: left;
}

.dropdown ul li {
    border-bottom: rgba(49, 48, 48, 0.46) solid 1px;

}


.hero-text h2 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 4.5rem;
    margin: 30px;
}


.intro-text {
    margin: auto;
      width: 100%;
      overflow: hidden;
      max-width: 100%;
}

.btn-index {
    cursor: pointer;
    border: none;
    background-color: #313030;
    color: white;
    margin: 10px;
    padding: 10px 10px;
    width: 150px;
    height: 60px;
    font-family: 'Lexend', sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    border-radius: 10px;
    /*border: white solid 1px;*/
    text-decoration: none;
}

.btn-index:focus {
    background-color: #5f5c5c;
}

.intro-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;

}

.btn-pulse {

    min-width: 180px;
    min-height: 60px;
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    letter-spacing: 1.3px;
    font-weight: 200;
    color: white;
    background: #313030;
    /*background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);*/
    border: none;
    border-radius: 10px;
    box-shadow: 12px 12px 24px rgba(83, 81, 81, 0.6);
    transition: all 100ms ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
  }

[type='button'].btn-pulse::before {
    content: '';
    border-radius: 10px;
    min-width: calc(200px + 12px);
    min-height: calc(60px + 12px);
    /*border: 1px solid #313030;*/
    /*box-shadow: 0 0 60px rgba(83, 81, 81, 0.6);*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 100ms ease-in-out 0s;
}

[type='button'].btn-pulse:hover, [type='button'].btn-pulse:focus {
    /*color: #313133;*/
    /*background-color: white;*/
    transform: scale(1.1);
}

[type='button'].btn-pulse:hover::before, [type='button'].btn-pulse:focus::before {
    opacity: 1;
}

[type='button'].btn-pulse::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 2px solid #313030;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 3s infinite;
}

[type='button'].btn-pulse:hover::after, [type='button'].btn-pulse:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    border: 1px solid black;
    border-radius: 10px;
    z-index: 1000;
    background-color: white;
    width: 500px;
    max-width: 80%;
    transition: all 0.5s ease;

}


.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;

}

.modal-header{
    padding: 10px 15px;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
}

.modal-body {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 200;
}

.modal-button {
    padding: 10px 15px;
    display: flex;
    justify-content: center;

}

#overlay {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    z-index: 500;
}

#overlay.active {
    opacity: 1;
    pointer-events: all;
}


.modal-site-pick {
    display: flex;
    flex-direction: column;
}

.modal-site-pick .modal-name-input {
    padding: 40px;
    display: flex;
    justify-content: center;
}

.modal-site-pick #site-first-name {
    height: 40px;
    width: 300px;
    padding: 10px;
    font-size: 16px;
}

.modal-site-pick .modal-emails {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.modal-site-pick .modal-button {
    display: flex;
    justify-content: space-around;
}

.demo-header {
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-header.active {
    opacity: 1;
}

.demo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-image {
    display: flex;
    align-items: center;
    width: 200px;
    padding: 5px;
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-image img {
    width: 100%;
}

.demo-image.active {
    opacity: 1;
}

.demo-button {
    display: flex;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-button.active {
    opacity: 1;
}

.demo-details {
    text-align: center;
    padding: 10px 0px;
    font-size: 1.2rem;
    font-weight: 200;
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-details.active {
    opacity: 1;
}

.demo-signup-module {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-signup-module.active {
    opacity: 1;
}

.demo-top-photos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    max-height: 80%;
}

.demo-top-photo {
    display: flex;
    align-content: center;
    padding: 3px;
    max-width: 250px;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease;
}

.demo-top-photo.active {
    opacity: 1;
}

.demo-top-photo img{
    max-width: 100%;
    align-items: center;

}

.demo-top-photo .demo-photo-rating {
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 22px;
    color: white;
    background-color: rgba(49, 48, 48, 0.62);
    padding: 10px;
    border-radius: 6px;
}


.content-text{
    text-align: center;
    font-weight: 300;
    font-size: 25px;
    margin: 0px;
}


.guide-content-text{
    font-weight: 300;
    font-size: 25px;
    margin: 0px;
    text-align: center;

}

h3{
    margin: 10px;
    padding: 10px;
    font-weight: 300;
    font-size: 38px;
    text-align: center;
}

.index-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px;
}

.index-button {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.index-follow-text {
    display: flex;
    justify-content: center;
    margin: 30px;
}

.index-follow-text h4 {
    margin: 0px;
    font-weight: 300;

}

.intro-illus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    margin: 60px auto;
}

.intro-illus .intro-header {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    padding: 10px;
}


.intro-steps{
    list-style: none;
    flex-wrap: wrap;
    border: #313030 solid 1px;
    border-radius: 15px;
    box-shadow: -5px 5px rgba(49, 48, 48, 0.23);
    width: 80%;
    margin: auto;
}

.intro-steps ul{
    display: flex;
    flex-wrap: wrap;

}


.intro-steps ul li{
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    text-align: center;
}

.intro-steps img{
    height: 120px;
}

.intro-steps ul li h4{
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0px;
}

.whichpik-box{

    display: flex;
    flex-direction: column;
    align-items: center;

}

.user_auth_text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.user_validate_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropdown-contact{
    width: 100%;
    overflow: hidden;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    padding: 8px 3px;
    margin-bottom: 8px;

}

.detail-contact {
    width: 100%;
    height: 200px;
    overflow: hidden;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    padding: 8px 3px;
    margin: 8px 0px;
    resize: none;
}


.alert-error {
    background-color: #ffecec;
    border:1px solid #f5aca6;
    list-style: none;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    margin: 3px;
    padding: 5px;
}

.alert-warning {
    background-color: #fff8c4;
    border:1px solid #f2c779;
    list-style: none;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    margin: 3px;
    padding: 5px;
}

.alert-success {
    background-color: #e9ffd9;
    border:1px solid #a6ca8a;
    list-style: none;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    margin: 3px;
    padding: 5px;

}

.box-lg {
    width: 100%;
    overflow: hidden;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    padding: 8px 3px;
    margin: 8px 0px;
}

.btn-lg {
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    padding: 8px 0px;
    margin: 8px 0px;
    color: white;
    width: 200px;
    font-weight: 300;
    border-radius: 8px;
    background-color: #313030;
    border: none;
    box-shadow: 4px 3px 11px rgb(83 81 81);
    min-height: 42px;
}

.accept-privacy {
    display: flex;
    width: 100%;
    align-items: center;
}

.box-check {
    width: 10%;
    height: 20px;
}

.user-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 50px;
}



.user-summary-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.user-summary-sub-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}



.user-summary img {
    max-height: 150px;
    /*max-width: 25%;*/
    padding: 10px;

}

.user-summary i {
    font-size: 70px;
    color: #3A7734;
    padding: 10px;
}

.user-summary p {
    min-width: 50%;
    padding: 10px;

}

.user-summary a {
    padding: 10px;
    text-decoration: none;

}

.user-summary .user-ext-link {
    width: 100%;
    text-align: center;

}

.user-summary .user-friend-reviews .user-sub-section-button {
    flex-direction: column;
}


.user-summary .user-ext-link p{
    padding: 5px;

}

.user-summary .user-results{
    justify-items: center;
}

.user-validate {
    display: flex;
    flex-direction: column;
}

.user-validate h4 {
    font-weight: 300;
    font-size: 3rem;
}

.user-validate i {
    font-size: 10vw;
    color: #313030;
    padding: 10px;
}

.user-validate .user-sub-section-text {
    font-size: 20px;
}

.user-validate .user-sub-section-button {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.user-validate .user-sub-section-button p {
    margin: 0px;
    font-size: 10px;
}


.btn-user {
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    margin: 8px 0px;
    color: white;
    font-weight: 400;
    text-align: center;
    height: 50px;
    width: 160px;
    border-radius: 5px;
    background-color: #313030;
    border: white solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote-push {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;

}

.upload-photos {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    align-items: center;
    background-color: white;
    width: 70%;
    border-radius: 5px;
    border: #313030 solid 1px;
}

.upload-photos h4 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
}


.upload-form {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 70px;
}


input[type="file"] {
    display: none;
}

.btn-upload {
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    margin: 8px 0px;
    color: white;
    font-weight: 400;
    text-align: center;
    height: 50px;
    width: 150px;
    border-radius: 4px;
    background-color: #313030;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#file-upload {
    text-align: center;
}

#file-list {
    padding-left: 5px;
    display: inline-block;
    width: 30%;
    font-size: 12px;
}

#file-list ul {
    list-style: none;

}

.upload-photo-disclaimer {
    font-family: 'Lexend', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 0px 8px 8px;
    color: #8b3637;
    font-weight: 400;
    text-align: center;
}


.gallery-photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery-image {
    max-width: 280px;
    position: relative;

}


.gallery-image img{
    width: 100%;
    align-items: center;

}

.delete-photo{
    position: absolute;
    cursor: pointer;
    top: -1%;
    right: 2%;
    color: #9C1A1C;
    font-size: 3rem;
    display: none;

}

.gallery-image:hover > .delete-photo {
    display: block;
}

.gallery-photos img[img_cat=pending] {
    opacity: 0.2;
}

.pending-approval-info-photo {
    display: flex;
    flex-direction: column;
    position: absolute;
    cursor: pointer;
    text-align: center;
    font-size: 2rem;
    top: 30%;
    display: none;
    padding: 10px;
    color: #313030;
    z-index: 2;
}

.pending-approval-info-row {
    margin: 0px;
}

.pending-approval-info-row2 {
    margin: 5px;
    font-size: 14px;
}


.pending-approval-info-photo[box_cat=pending]{
    display: block;
}

.vote-remaining-header {
    display: flex;
    justify-content: center;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;

}

.vote-remaining-header.active {
    transform: scale(1);
    opacity: 1;
}

.vote-remaining-header h2{
    font-weight: 300;
}


.vote-photos-web {
    display: flex;
    justify-content: center;
    height: 70vh;
    max-width: 100vw;
    padding: 5px;
    align-items: flex-start;
}


.vote-image-web {
    display: flex;
    justify-content: center;
    max-height: 100%;
    width: 50%;
    padding: 5px;
    cursor: pointer;
}

.vote-image-web img{
    width: 100%;
    object-fit: contain;
}

.vote-photos-media {
    display: none;
}

.guest-handle{
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: 90%;
    /*position: relative;*/
    /*top: 20%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    justify-content: center;
    border: rgba(49, 48, 48, 0.4) solid 1px;
    border-radius: 8px;
    align-items: center;
    margin: auto;

}

.guest-handle h3 {
    margin: 10px;
}


.guest-handle p {
    margin: 0px 10px;
    padding: 10px;
    text-align: center;
}

.guest-handle .btn-notification {
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    margin: 10px 0px;
    padding: 5px;
    color: white;
    font-weight: 400;
    text-align: center;
    height: 50px;
    width: 150px;
    border-radius: 4px;
    background-color: #313030;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.flag {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.flag a{
    text-decoration: none;
}

.btn-flag {
    font-family: 'Lexend', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 0px;
    width: 300px;
    color: #8b3637;
    background-color: rgba(255, 255, 255, 0.84);
    font-weight: 400;
    border-radius: 4px;
    border: #8b3637 solid 1px;
    text-align: center;
    text-decoration: none;
}

.btn-flag i{
    margin-right: 5px;
}



#delete-btns {
    position: absolute;
    top: 43%;
    left: 19%;
    display: none;
    z-index: 10;

}

.btn-photo {
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    padding: 8px 0px;
    margin: 8px 0px;
    color: white;
    width: 80px;
    font-weight: 200;
    border-radius: 4px;
    background-color: #313030;
    border: white solid 1px;
}


.ext-link {
    margin: 10px;
    border: #cccccc solid 1px;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;

}

.ext-link p {
    margin: 20px;
}

.top-photos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    max-height: 80%;
}

.top-photo-output {
    max-width: 300px;
    position: relative;
}


.top-photo-output img{
    max-width: 100%;
    align-items: center;

}

.top-photo-output .top-photo-rating {
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 22px;
    color: white;
    background-color: rgba(49, 48, 48, 0.62);
    padding: 10px;
    border-radius: 6px;
}




.profile-box{
    display: flex;
    flex-direction: column;
    /*width: 50%;*/
    position: relative;
    /*top: 30%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    justify-content: center;
    align-items: center;

}


.whichpik-table {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;

}

.table__row:nth-child(even) {

    background-color: #e5e5e5;
}

.table__header {
    text-align: left;
}

.table__cell {
    text-align: center;
    padding: 8px;
}



/*Admin CSS*/


.admin-drilldown-gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.admin-drilldown-gallery-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.admin-drilldown-gallery-image {
    display: flex;
    max-width: 300px;
    max-height: 300px;
    padding: 2px;
}

.admin-drilldown-gallery-image img {
    max-width: 100%;
    object-fit: contain;
}

.admin-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.admin-gallery-user {
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
}

.admin-gallery-user-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.admin-gallery-user-image-container {
    padding: 10px;
    max-width: 400px;

}

.admin-gallery-user-image {
    display: flex;
    justify-content: center;
    max-width: 100%;

}

.admin-gallery-user-image-boxes {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

.admin-gallery-user-image img {
    max-width: 100%;
    max-height: 200px;
}

.admin-gallery-user-submit-decisions {
    display: flex;
    justify-content: center;
}

.btn-user-submit-decisions {
    font-family: 'Lexend', sans-serif;
    width: 140px;
    height: 40px;
    border-radius: 5px;
}



.admin-gallery-flags {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    border: #313030 solid 1px;
}

.admin-gallery-flags-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: auto;
}

.admin-gallery-flags-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    /*flex-wrap: wrap;*/
}

.admin-gallery-dflags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-gallery-sflags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-gallery-flag-container {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.admin-gallery-flag-images-container {
    display: flex;
    padding: 10px;
    max-width: 400px;

}

.admin-gallery-flag-image {
    display: flex;
    justify-content: center;
    max-width: 100%;

}

.admin-gallery-flag-image-boxes {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

.admin-gallery-flag-image img {
    max-width: 100%;
    max-height: 200px;
}


.admin-gallery-flags-submit-decisions {
    display: flex;
    justify-content: center;
}

.btn-flags-submit-decisions {
    font-family: 'Lexend', sans-serif;
    width: 140px;
    height: 40px;
    border-radius: 5px;
}


@media only screen and (max-width: 720px) {

    .container-index {
        background-position: center 70px;
    }

    .content-container{
        margin-top: 70px;
    }

    h2 {
        font-size: 38px;
    }

    .hero-text h2{
        font-size: 60px;
        margin: 40px 0px;
    }

    .vote-remaining-header h2{
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 0px;
    }

    .toggle-button{
        display: flex;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav .logo {
        height: 100%;
    }

    .nav .logo a{
        height: 100%;
    }
    .nav-links {
        width: 100%;
    }

    .nav-links .nav-links-web{
        display: none;
    }


    .nav-links .nav-links-mobile{
        display: none;
        margin: 0px;
        width: 100%;
        flex-direction: column;
        position: absolute;
    }

    .nav-links .nav-links-mobile li {
        position: relative;
        background-color: white;
        border-bottom: rgba(49, 48, 48, 0.46) solid 1px;
        z-index: 1;
    }

    .nav-links .nav-links-mobile li a {
        padding: .5rem 1rem;
    }

    .nav-links-mobile.active {
        display: flex;
    }

    .demo-image {
        width: 80px;
        padding: 2px;
    }

    .demo-top-photos {
        padding: 10px 0px;
    }

    .demo-top-photo {
        max-width: 150px;
    }

    .demo-top-photo .demo-photo-rating{
        font-size: 16px;
        top: 3%;
    }

    .content {
        padding: 10px;
        padding-bottom: 90px;
    }

    .user_auth_text .text-muted {
        padding: 10px;
    }

    .user-summary {
        padding: 0px;
    }

    .content-text {
        font-size: 20px;
        text-align: center;
    }

    .content-text p{
        margin: 0px;
    }

    .intro-illus {
        width: 100%;
    }

    .intro-steps ul li {
        padding: 10px;
    }


    .intro-btn {
        display: flex;
        justify-content: center;
        padding: 0px;
    }

    .user-summary-section {
        padding: 10px 0px;
    }

    .user-summary-section img{
        max-width: 100px;
        height: auto;
        padding: 0px;
    }

    .user-summary i {
        padding: 10px;
        font-size: 10vw;
    }

    .user-summary .ext-link {
        width: 100%;
    }

    .user-summary .ext-link p {
        margin: 5px;
    }

    .user-validate {
        flex-direction: column;
        text-align: center;
    }

    .user-validate i {
        font-size: 25vw;
    }

    .user-validate .user-summary-sub-section p{
        margin: 0px;
    }


    h3 {
        margin: 0px;
        padding: 0px;
        font-size: 28px;
    }

    .upload-photos {
        width: 100%;
    }

    .vote-photos-web {
        display: none;
    }

    .vote-photos-media {
        display: flex;
        /*justify-content: center;*/
        /*max-width: 100vw;*/
        padding: 20px 0px;
        /*height: 50vh;*/
        /*align-items: flex-start;*/

    }

    .vote-image-media {
        display: flex;
        justify-content: center;
        /*max-height: 100%;*/
        padding: 2px;
        overflow: hidden;
        width: 50%;
        height: 50vh;
        cursor: pointer;
    }

    .vote-image-media img {
        margin: 2px;
        width: 100%;
        object-fit: cover;
        max-height: 300px;
    }

    .ext-link p{
        word-wrap: break-word;
    }

    .top-photo-output {
        max-width: 40vw;
    }

    .top-photo-output .top-photo-rating {
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 14px;
    color: white;
    background-color: rgba(49, 48, 48, 0.62);
    padding: 10px;
    border-radius: 6px;
    }

    .user-table{
        margin: 10px auto;
    }

    .table__header {
        display: none;
    }

    .users-contacts-table .table__row td{
        display: none;
    }

    .users-contacts-table .table__row td:first-child{
        display: block;
    }

    .users-contacts-table .table__row td:first-child::before{
        content: "Ticket ID: ";
    }

    .admin-table .table__header {
        display: contents;
    }



}
