/* Parallax */
.content-parallax {
    position: absolute;
    height: 100%;
    width: 100%;
}

#image-parallax {
    height: 200px;
    width: 200px;
}

body {
    height: 100% !important;
    font-family: "Poppins";

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    /* -webkit-overflow-scrolling: touch!important; */

    overflow-x: hidden;
    /* Hide horizontal scrollbar */
}

#img-background {
    object-fit: cover !important;
    opacity: 0.7 !important;
}

/* Form */
.search-button {
    background-color: var(--secundary-color);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
    width: 100%;
}

a.search-button:hover {
    background-color: var(--secundary-color);
    color: var(--lightBlue-colorPlus);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
}

/* Chat Button */
.reset-button {
    background-color: var(--primary-color);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
    width: 100%;
}

a.reset-button:hover {
    background-color: var(--primary-color);
    color: var(--lightBlue-colorPlus);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
}

.dropdown {
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    height: 54px;

    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;

    /* Icon Dropdown SVG */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24' width='24'><path d='M12 15.125 16.225 10.9H7.775ZM12 22.2Q9.875 22.2 8.012 21.4Q6.15 20.6 4.775 19.225Q3.4 17.85 2.6 15.988Q1.8 14.125 1.8 12Q1.8 9.875 2.6 8.012Q3.4 6.15 4.775 4.775Q6.15 3.4 8.012 2.6Q9.875 1.8 12 1.8Q14.125 1.8 15.988 2.6Q17.85 3.4 19.225 4.775Q20.6 6.15 21.4 8.012Q22.2 9.875 22.2 12Q22.2 14.125 21.4 15.988Q20.6 17.85 19.225 19.225Q17.85 20.6 15.988 21.4Q14.125 22.2 12 22.2ZM12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12Q12 12 12 12ZM12 19.925Q15.3 19.925 17.613 17.613Q19.925 15.3 19.925 12Q19.925 8.7 17.613 6.387Q15.3 4.075 12 4.075Q8.7 4.075 6.388 6.387Q4.075 8.7 4.075 12Q4.075 15.3 6.388 17.613Q8.7 19.925 12 19.925Z'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

#icon-dropdown {
    position: absolute;
    right: 5%;
    float: right;
}

/* Card user */
.card-user {
    background-color: var(--lightPurple-color);
    border: none;
    box-shadow: none;
    height: 100%;
    max-height: 92%;
}

/* Card Icon */
.card-icon {
    color: var(--secundary-color);
}

/* Card FullName */
.full_name {
    /* font-weight: bold; */
}

/* Chip */
.chip-text {
    color: black;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.chip-icon {
    color: var(--primary-color);
}

/* Like text */
.likes-text {}

/* Chat Button */
.chat-button {
    background-color: var(--primary-color);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
}

a.chat-button:hover {
    background-color: var(--primary-color);
    color: var(--secundary-color);
    border-radius: 10px;
    text-transform: none;
    font-weight: bold;
}

/* Selectize */
input {
    cursor: text !important;
}

.selectize-input {
    /* background-color: red !important; */
    padding: 16px 16px 16px !important;
    border: 1px solid #c0c0c0 !important;
    border-radius: 100px !important;
    color: #727272 !important;
    box-shadow: none !important;
}

.selectize-input:hover {
    cursor: text !important;
}

.selectize-input.focus {
    box-shadow: none;
    /* border: 0px !important; */
    /* background-color: rgb(44, 243, 18) !important; */
}

/* radiobuttons */
.radiobtn {
    font-family: "Poppins" !important;
    position: relative;
    display: block;
    text-align: center;
}

.radiobtn label {
    font-family: "Poppins" !important;
    display: block;
    background: #fafafa;
    color: #d1d1d1;
    padding: 15px;
    border: 2px solid #d1d1d1;
    border-radius: 0.3rem;
    margin-bottom: 5px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

input[type="checkbox"] {
    display: none;
    position: absolute;
    width: 100%;
    appearance: none;
}

input[type="checkbox"]:checked+label {
    background: var(--lightPurple-color);
    color: var(--primary-color);
    border: 0px solid;
    border-radius: 0.3rem;
}

#banner {
    position: fixed;
    bottom: 0;
    display: block;
    width: 100% !important;
    z-index: 1000;
    height: auto;
}

#close-banner {
    position: absolute;
    /* bottom: 1;
    display: block;
    bottom: 5% !important;
    
    /* margin-left: 90%; */
    top: 10px;
    right: 18% !important;
    z-index: 90;
    cursor: pointer;
    color: white !important;
    font-size: 32px !important;
}

#download-app {
    position: fixed;
    bottom: 12% !important;
    display: block;
    /* width: 18% !important; */
    z-index: 1001;
    height: 50% !important;
    /* left: 81% !important;
     */
    right: 3%;
}

#banner-download-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

#close-download-banner {
    position: absolute;
    display: block;
    top: 5%;
    left: 5%;
    /* bottom: 62% !important; */
    /* right: 16% !important; */
    z-index: 103;
    cursor: pointer;
    color: white !important;
    font-size: 32px !important;
}

#text-download-app {
    position: absolute;
    display: block;
    bottom: 5% !important;
    left: 5% !important;
    z-index: 103;
    cursor: pointer;
    color: white !important;
    text-decoration: none !important;
}

#button-container {
    position: absolute;
    display: block;
    left: 5%;
    bottom: 11%;
}

#text-container {
    position: absolute;
    display: block;
    left: 5%;
    bottom: 22%;
}

#google-play {
    z-index: 103;
    cursor: pointer;
    color: white !important;
}

#apple-store {
    z-index: 103;
    cursor: pointer;
    color: white !important;
    margin-left: 10px;
}

/* Tooltip */
.tooltip2 {
    position: relative;
    display: inline-block;
}

.tooltip2 .tiptext {
    visibility: hidden;
    width: 620px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 1px 0;
    position: absolute;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tooltip2 .tiptext::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
}

.tooltip2:hover .tiptext {
    visibility: visible;
}

.tooltip2.top .tiptext {
    /* margin-left: -330px; */
    bottom: 150%;
    right: 0px;
    /* left: 50%; */
}

.tooltip2.top .tiptext::after {
    margin-left: -5px;
    top: 100%;
    left: 0%;
    border-color: #ffffff00 transparent transparent transparent;
}

#helper_icon {
    color: var(--primary-color);
}

.label-radio {
    font-size: 1rem !important;
}

#banner-img {
    height: 100%;
    width: 86%;
}

.color-rol {
    color: #b079e4;
}

#user-button {
    text-decoration: none !important;
    color: black !important;
}

.fav-icon {
    font-size: 35px;
}

.profile-img {
    object-fit: cover !important;
    object-position: 50% 50% !important;
}

.profile-img:hover{
    cursor: pointer;
}


.has-story{
    background: linear-gradient(white, white) padding-box,
                linear-gradient(30deg, #01D1FF, #6640FF, #E545FF) border-box;
    border-radius: 50em;
    border: 4px solid transparent;
    padding: 1px !important;
}


.viewed-all-stories{
    background: linear-gradient(#000000,#000000) padding-box,
                linear-gradient(to right, #c3c3c3, #c3c3c3, #c3c3c3) border-box;
    border-radius: 50em;
    border: 4px solid transparent;
    padding: 1px !important;
}





#button-google-play {
    cursor: pointer;
}

#button-app-store {
    cursor: pointer;
}

#select-provinces-parent {
    position: relative;
}

#select-situation-parent {
    position: relative;
}

#select-degree-parent {
    position: relative;
}

#select-university-parent {
    position: relative;
}

#icon-select-university {
    position: absolute;
    top: 25%;
    z-index: 999;
    right: 5%;
    color: var(--secundary-color);
}

#icon-select-degree {
    position: absolute;
    top: 25%;
    z-index: 999;
    right: 5%;
    color: var(--secundary-color);
}

#icon-select-situation {
    position: absolute;
    top: 25%;
    z-index: 999;
    right: 5%;
    color: var(--secundary-color);
}

#icon-select-provinces {
    position: absolute;
    top: 25%;
    z-index: 999;
    right: 5%;
    color: var(--secundary-color);
}

.selectize-control.single .selectize-input:after {
    border-style: none !important;
}

.likes-text {
    cursor: pointer;
}

#show-liked-users {
    height: 60%;
    width: 40%;
}

/* Estilos del boton cerrar del modal */
#close-modal-icon {
    text-decoration: none;
    color: black;
}

/* Cerrar modal, icono */
.close-icon {
    font-size: 300%;
}

/* Delete modal footer */
.modal.modal-fixed-footer .modal-content {
    height: 100%;
}

.clickable {
    cursor: pointer;
}

#select-university-selectized {
    height: 1rem !important;
}

#status-text {
    font-weight: bold;
}

#situation-text-question {
    font-weight: bold;
}


@media (max-width: 1300px) {
    .username-field {
        padding-left: 2rem !important;
    }
}

.img-text {
    height: 90px!important;
    width: 360px!important;
}



@media screen and (max-width: 1500px) {
    .img-text {
        height: 60px!important;
        width: 270px!important;
    }

    #text-container{
        position: absolute;
        display: block;
        left: 5%;
        bottom: 24%;
    }
}

@media screen and (max-width: 1000px) {
    .img-text {
        height: 170px!important;
        width: 700px!important;
    }

    #text-container{
        position: absolute;
        display: block;
        left: 5%;
        bottom: 21%;
    }
}