.container {
    padding: 5%;
    width: 40%;
    border: 1px solid rgb(55, 55, 55);
    margin: 20px auto;
    padding: 10px;
    border-radius: 4%;
    background-color: rgb(255, 255, 255);
}
.topContent, .content {
    float: left;
    width: 50%;
    margin: 20px auto;
}
.struct-name {
    font-family: 'Nunito', sans-serif;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.capture-button {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background: rgb(255, 255, 255) url(../images/capture.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.capture-button:hover {
    cursor: pointer;
    transform: scale(1.075);
}
.video {
    margin: auto auto;
    display: block;
    margin-top: 30px;
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    -moz-transform:rotateY(180deg); /* Firefox */
}
.row {
    position: relative;
    text-align: center;
}
.capture {
    padding: 10px;
}
#capture {
    margin: 0px 40px;
}
.switch-camera {
    float: right;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    background: rgb(255, 255, 255) url(../images/switch.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.switch-camera:hover {
    cursor: pointer;
    transform: scale(1.075);
}
/*Selfies*/
.buttonShare{
    width: 100%;
    height: 100px;
}
.upload{
    width: 50%;
    float:left;
    padding-top: 20px;
}
.proceed{
    width: 50%;
    float:right;
    padding-top: 20px;
} 
.selfieImage {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: auto auto;
    display: block;
    margin-top: 30px;
}
.uploadBtn{
    border-radius: 3%;
    border-color: rgb(15, 15, 15);
    color: white;
    width: auto;
    height: 45px;
    background: rgb(15, 15, 15);
}
.uploadBtn:hover{
    border-radius: 3%;
    border-color: rgb(15, 15, 15);
    color: black;
    width: auto;
    height: 45px;
    background: white;
}
.nextBtn{
    border-radius: 3%;
    border-color: rgb(15, 15, 15);
    color: white;
    width: auto;
    height: 45px;
    background: rgb(15, 15, 15);
}
.nextBtn:hover{
    border-radius: 3%;
    border-color: rgb(15, 15, 15);
    color: black;
    width: auto;
    height: 45px;
    background: white;
}
/*Loader*/
.loader {
    display: none;
    position: absolute;
    left: 47%;
    top: 41%;
    z-index: 0;
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}
@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
}
@keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
}
/*Input group*/
.social-group{
    width: 100%;
    height: 70px;
}
.input-group1{
    display: table;
    border-collapse: collapse;
    width:40%;
    margin-left: 40px;
    margin-top: 30px;
    float: left;
}
.input-group1 > div{
    display: table-cell;
    vertical-align: middle;  
}
.input-group2{
    display: table;
    border-collapse: collapse;
    width:40%;
    margin-right: 40px;
    margin-top: 30px;
    float: right;
}
.input-group2 > div{
    display: table-cell;
    vertical-align: middle; 
}
.input-group-icon{
    /*background:#3B5998;*/
    color: #3B5998;
    padding: 0 12px
}
.input-group-icon2{
    color: #55ACEE;
    padding: 0 12px
}
.input-group-area{
    width:100%;
}
.input-group1 input{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    border: 0;
    display: block;
    width: 90%;
    padding: 10px;
    border: 2px solid rgb(225, 225, 225);
}
.input-group2 input{
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    border: 0;
    display: block;
    width: 90%;
    padding: 10px;
    border: 2px solid rgb(225, 225, 225);
}
input:focus {
    outline: 2px solid rgb(253, 207, 61);
}
/*Tooltip*/
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -60px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 60%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}
.info-btn{
    border: 1px solid #000;
    border-radius: 50%;
    width: 30px;
    padding: 5px 0px 5px;
    margin-left: 20px;
    background-color: #000;
    color: #eee;
}
.info-btn:focus{
    outline: 1px solid #fff;
    background-color: rgb(253, 207, 61);
    border: 1px solid rgb(253, 207, 61);
}

/*Captured*/
.capturedContainer{
    padding: 10px;
    margin: 0px auto;
    margin-top: 2%;
}
.contentCollapse{
    margin-top:10px;
    text-align: start;
}
#image img{
    width: 85%;
}
#location img{
    width: 95%;
}
#title{
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
#title img{
    height: 1.2rem;
    margin-left: 5px;
}
.collapsible {
    background-color: rgb(55, 55, 55);
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    /* border-top-left-radius: 5px;
    border-top-right-radius: 5px; */
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}
.collapsible:hover {
    background-color: rgb(105, 105, 105);
}
.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.open:after {
    content: "\2212";
}
.editable {
    background-color: rgb(255, 255, 255);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0px 10px;
    opacity: .9;
    max-height: 0;
    overflow: hidden;
}
@media only screen and (width:1024px) {
    .container {
        width:60%;
    }
}

@media only screen and (max-width: 1000px) {
    html { 
        background: none;
    }
    .container {
        background-color: rgb(255, 255, 255);
        width:100%;
        border-radius:0;
        border:none;
        top:0;
        margin:0;
        padding:0 ;
    }
    #title{
        font-size: 1.4rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .topContent, .content {
        width: 100%;
        margin: 20px auto;
    }
    #image img{
        width: 95%;
    }
    .struct-name {
        margin:5px;
    }
    #capture {
        margin: 0px 120px;
    }
}

@media only screen and (max-width: 700px) {
    .social-group{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        width: 100%;
        height: 150px;
    }
    .input-group2{
        display: table;
        border-collapse: collapse;
        width:80%;
        margin-right: 0px;
        margin-top: 30px;
        text-align: center;
    }
    .input-group1{
        display: table;
        border-collapse: collapse;
        width:80%;
        margin-left: 0px;
        margin-top: 30px;
    }
    .selfieImage{
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: auto auto;
        display: block;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 520px) {
    .loader {
        display: none;
        position: absolute;
        left: 42%;
        top: 41%;
        z-index: 0;
        border: 5px solid #f3f3f3;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
        border-top: 5px solid #555;
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }
    #capture {
        margin: 0px 20px;
    }
}

@media only screen and (max-width: 320px) {
    .loader {
        display: none;
        position: absolute;
        left: 39%;
        top: 37%;
        z-index: 0;
        border: 5px solid #f3f3f3;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
        border-top: 5px solid #555;
        border-radius: 50%;
        width: 50px;
        height: 50px;
    }
    #capture {
        margin: 0px 25px;
    }
}