.w100{
    width: 100%;
}
.w90{
    width: 90%;
}
.w70{
    width: 70%;
}
.w30{
    width: 30%;
}
.w50{
    width: 50%;
}
.w45{
    width: 45%;
}
.w33{
    width: 33.3%;
}
.container * {
    box-sizing: border-box;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center; 
    flex-direction: column;
    background-color: #fff;
    border-radius: 30px;
}

.container .tabs {
    width: 100%;
    display: flex;
    font-size: 1em;
    position: relative;
    padding: 10px;
    gap: 5px;
    user-select: none;
    overflow: auto;
    scrollbar-width: none;
}
.container .tabs::-webkit-scrollbar {
  display: none;
}
.container .tabs .tab {
    flex: 0 0 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 50em;
    cursor: pointer;
    z-index: 2;
    transition: .3s;
}

.container .divider {
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background-color: rgb(0, 0, 0, .1);
}

.container .tabs input[type="radio"] {
    display: none;
}

.container .tabs label {
    color: rgb(0, 0, 0);
}
.container .tabs input[type="radio"]:hover + label {
    background-color: rgb(0, 0, 0, .1);
}
.container .tabs input[type="radio"]:active + label {
    background-color: rgb(0, 0, 0, .2);
}
.container .tabs input[type="radio"]:checked + label {
    
    background-color: rgb(0, 0, 0, .2);
}

.container .card {
    width: 100%;
    height: 200px;
    padding: 10px 20px;
    display: none;
    color:rgb(0, 0, 0);
}

.container .is-active {
    display: block;
}

.input-cont {
    position: relative;
    
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    border: 0;
    cursor: text;
    transition: .2s;
    margin-top: 15px;
}
.input-cont input,textarea {
    padding: 5px 1px;
    font-size: 15px;
    border: 0;
    background-color: rgb(0, 0, 0, 0);
    outline: 0;
    font-size: 15px;
    border-bottom: 1px solid rgb(120, 120, 120);
    color: #141414;
    z-index: 1;
}
.input-cont input::-webkit-input-placeholder {
    opacity: 0;
}
.input-cont textarea::-webkit-input-placeholder {
    opacity: 0;
}
.input-cont input::-moz-placeholder {
    color: transparent !important;
}
.input-cont textarea::-moz-placeholder {
    color: transparent !important;
}
.input-cont::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: .3s;
}
.input-cont:focus-within::after {
    transform: scaleX(1);
    background-color: #141414 !important;
}

.input-cont input + label {
    transform-origin: left;
    color: #141414;
    cursor: text;
    font-size: 15px;
    user-select: none;
    transition: all 0.2s;
}
.input-cont textarea + label {
    transform-origin: left;
    color: #141414;
    cursor: text;
    font-size: 15px;
    user-select: none;
    transition: all 0.2s;
}
.input-cont input + label {
    transform: translate(0, 120%) scale(1);
}
.input-cont textarea + label {
    transform: translate(0, 120%) scale(1);
}
.input-cont input:not(:placeholder-shown) + label,
.input-cont input:focus + label {
    transform: translate(0, 20%) scale(.8);
}
.input-cont textarea:not(:placeholder-shown) + label,
.input-cont textarea:focus + label {
    transform: translate(0, 20%) scale(.8);
}


.input-cont select{
    height: 35px;
    border-radius: 5px;
    outline: none
}

/*FOTO PERFIL*/
/* ===== Boxicons CSS ===== */

.upload-button input[type="file"] {
    display: none;
}
.upload-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.upload-button > label {
    display: flex;
    padding: 14px;
    background-color: #141414;
    color: #ffff;
    font-size: 23px;
    border-radius: 50em;
    cursor: pointer;
    transition: .3s;
}
.upload-button > label:hover {
    background-color: #141414;
}
.upload-button > label:active {
    background-color: #141414;
}
.upload-button span {
    color: #141414;
    font-size: .9em;
}
  
 
@media only screen and (max-width: 830px) {

    .container {
        width: 90%;
    }

}

@media (max-width:550px){
    .w100{
        width: 100%;
    }
    .w90{
        width: 100%;
    }
    .w70{
        width: 100%;
    }
    .w30{
        width: 100%;
    }
    .w50{
        width: 100%;
    }
    .w33{
        width: 100%;
    }
    .w45{
        width: 100%;
    }
    .data-single{
        flex-direction: column;
        gap: 15px;
    }
}