body, html{
    padding: 0;
    margin: auto;
   height: 100%;
}


:root{
    --text-color: #2a3039;
    --primary-color: #0e1c33;
    --secondary-color: rgb(68, 8, 106);
}

body {
    height: 100%;
    background-color: #c9cfdf;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: 1fr minmax(0, 430px) 1fr;
    grid-template-rows: 1fr minmax(0, 780px) 1fr;
    grid-template-areas: 
        ". . ."
        ". main ."
        ". . .";
}

.container {
    grid-area: main;
    background-color: white;
    overflow: hidden;
    position: relative;
}
.holder {
    overflow: auto;
    height: 100%;
}

.header {
    background-color: var(--primary-color);
    height: 200px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

.header_links {
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    background-color: var(--primary-color);
}

.header_links a {
    color: white;
    text-decoration: none;

}

.profile {
    height: 130px;
    background-color: white;
    width: 130px;
    border-radius: 100%;
    border: 3px solid black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body {
   padding: 30px;
   
   box-sizing: border-box;
   overflow: hidden;
}

.body_wrapper {
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

label {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    margin-bottom: 2px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    /* border-radius: 5px; */
    margin-bottom: 7px;
    box-sizing: border-box;
}

textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    resize: none;
    margin-bottom: 7px;
    border: 1px solid #ccc;
}

input:focus, textarea:focus {
    outline: none;
}

.heading {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 7px;
    margin-top: 7px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 10px;
    box-sizing: border-box;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
}
.btn-white {
    background-color: rgb(105, 96, 115);
}

.theme_wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    color: white;
}

.theme_wrapper >div {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #d0d1d4;
    border-radius: 7px;
    border: 4px solid white;
}

.banner {
    color: white;
    background-color: var(--primary-color);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.a_seperator {
    background-color: white;
    display: inline-block;
    margin-top: -9px;
    position: absolute;
    padding: 0px 10px;
}

.a_sep_wrap {
    border-bottom: 1px solid #ccc;
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.modal {
    position: absolute;
    background-color: #0e1c334f;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: none;
    transition: all 0.2s ease-in-out;

}
.modal_body {
    position: relative;
    /* height: 100%; */
}
.handle_container {
    position:absolute;
    background-color: white;
    bottom: 0;
    height: 350px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 30px;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    transform: translateY(100%);
}

.handle_container_active {
    transform: translateY(0%);
}

.handle_container_inner {
    height: 100%;
    overflow: auto;
}
ul.handles {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.handles li a {
    background-color: #dfdfdf;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 5px;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    box-sizing: border-box;
}

.rm_btn {
    background-color: rgb(220, 220, 220);
    border-radius: 3px;
    color: var(--text-color);
    padding: 1px 3px;
    display: inline-block;
    cursor: pointer;
}

.info {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #dfdfdf;
}

.prof_container {
    background-image: linear-gradient(to left,#620a85, #6d05b3);
    height: 100%;
    overflow: auto;
}


.prof_top{
    padding: 30px;
    box-sizing: border-box;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    overflow: hidden;
    margin-bottom: -105px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.prof_graphic {
    background-image: url(../images/prof_sep-01.svg);
    min-height: 200px;
    background-repeat: no-repeat;
    margin: -30px;
    background-clip: content-box;
    background-size: contain;
    box-sizing: border-box;
    padding: 0;

}

.prof_name {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}

.prof_details {
    padding: 20px;
    padding-top: 10px;
    color: white;
}

.info_content {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #903ec687;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    
}

.info_content > div:nth-child(1){
    display: flex;
    justify-content: center;
}

.prof_about_me {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
    padding: 0px 20px;
    text-align: center;
    
}

.prof_handle_info {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
}

.prof_handle_info > div:first-child {
    padding: 5px;
    background-color: #ffffff30;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.prof_handle_info a {
    text-decoration: none;
    color: white;
}

.prof_header_links {
    padding-top: 20px;
    padding-left: 30px;
    font-weight: bold;
    padding-bottom: 16px;
}

.prof_header_links a {
    text-decoration: none;
}

.prof_act {
    padding: 0px 20px;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
}

.btn-prof {
    background-color: rgba(255, 255, 255, 0.893);
    color: black;
}

.modal_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.modal_body {
    background-color: white;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px #00000030;
    min-height: 300px;
    min-width: 300px;
}

.cropper {
    display: flex;
    flex-direction: column;
}

.img_sect {
    flex: 1;
}

.img-container {
    min-height: 300px;
    min-width: 100%;
}

.img-container img {
    width: 100%;
}

.img_btn_sect {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link_none {
    text-decoration: none;
    color: inherit;




}


.std_graphic {
 background-image: url(../images/prof_sep-04.svg);
    min-height: 200px;
    background-repeat: no-repeat;
    margin: -30px;
    background-clip: content-box;
    background-size: contain;
    box-sizing: border-box;
    padding: 0;

}

.theme_active {
    border: 4px solid gray !important;
}
