@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

@font-face {
    font-family: interFont;
    src: url('/assets/fonts/Inter-VariableFont_opsz,wght.ttf');
}

@font-face {
    font-family: bricolageFont;
    src: url('/assets/fonts/BricolageGrotesqueRegular.otf');
}

@font-face {
    font-family: instrumentSerifFont;
    src: url('/assets/fonts/InstrumentSerif-Regular.ttf');
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    font-family: "Inter", interFont, sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: white;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: whitesmoke;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
}

form {
    padding: 18px;
    margin: 18px 0px;
    border-radius: 18px;
    width: fit-content;
    height: fit-content;
}

form h2 {
    font-size: 20px;
}

img {
    width: 28px;
    height: 28px;
}

#top-img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    background-color: #1E1E1E;
    border: 0px solid #141414;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#top-img:hover {
    transform: scale(1.1) rotate(2deg);
    transition: transform 0.3s ease-in-out;
}

.top-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin: 0px 0px 28px 0px;
}

.top-wrapper h1 span {
    font-family: "Instrument Serif", instrumentSerifFont, serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
}

.top-wrapper p {
    font-size: 14px;
    opacity: 80%;
}

label {
    font-size: 14px;
    margin-bottom: 18px;
    color: black;
}

label span {
    color: blueviolet;
}

label span2 {
    color: rgba(0, 0, 0, 0.5);
}

.namesWrapper input {
    color: rgb(0, 0, 0);
    /* background-color: #141414;
    border: 1.6px solid #1E1E1E; */
    background-color: #ffffff;
    border: 1.5px solid #CCCCCC;
    border-radius: 360px;
    width: 100%;
    height: 48px;
    padding: 0px 12px 0px 12px;
    margin-top: 8px;
    margin-bottom: 22px;
    text-align: left;
    text-transform: capitalize;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.namesWrapper input:focus, #txtEmail:focus, #txtMessage:focus {
    /* outline: 1.5px solid #474747; */
    outline: 1.5px solid rgba(0, 0, 0, 0.4);
    opacity: 1;
}

#txtEmail {
    color: rgb(0, 0, 0);
    /* background-color: #141414;
    border: 1.6px solid #1E1E1E; */
    background-color: #ffffff;
    border: 1.5px solid #CCCCCC;
    border-radius: 360px;
    width: 100%;
    height: 48px;
    padding: 0px 12px 0px 12px;
    margin-top: 8px;
    margin-bottom: 22px;
    text-align: left;
    text-transform: lowercase;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.namesWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
}

#txtMessage {
    font-family: inherit;
    font-size: 16px;
    color: rgb(0, 0, 0);
    /* background-color: #141414;
    border: 1.6px solid #1E1E1E; */
    background-color: #ffffff;
    border: 1.5px solid #CCCCCC;
    border-radius: 18px;
    width: 100%;
    height: 12rem;
    padding: 12px;
    margin-top: 12px;
    margin-bottom: 18px;
    resize: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

#txtMessage::-webkit-scrollbar {
    display: flex;
    width: 4px;
}

#txtMessage::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 360px;
    margin: 12px 0px;
}

#txtMessage::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 17px;
    border: none;
}

#txtMessage::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

#btnSubmit {
    height: 48px;
    width: 100%;
    /* background-color: #3B3B3B;
    border: 2px solid   #545454; */
    background-color: #000000;
    border: 1.5px solid #CCCCCC;
    border-radius: 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
    cursor: pointer;
}

#btnSubmit:hover {
    border: 2px solid #70F815;
}

#display {
  white-space: pre-wrap;
}

.checkboxMainWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 28px;
    margin: 12px 0px 28px 0px;
    width: fit-content;
}

.checkboxWrapper:nth-of-type(2) {
    margin-right: auto;
}

/* radio buttons */

.statusWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #141414;
    border: 1.6px solid #1E1E1E;
    border-radius: 360px;
    width: 100%;
    height: fit-content;
    padding: 1px 1.2px;
    margin-top: 8px;
    margin-bottom: 22px;
    overflow: hidden;
}

.statusWrapper .radio-wrapper input[type="radio"] {
    /* appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 7.5px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    display: none;
}

.statusWrapper .radio-wrapper label {
    color: white;
    cursor: pointer;
    transform: translateY(9px);
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.statusWrapper .radio-wrapper label:hover {
    opacity: 0.8;
}

.radio-wrapper {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 360px;
    padding: 0px 6px;
}

.radio-wrapper input:checked + label {
    color: rgb(0, 0, 0);

}

.radio-wrapper:has(input:checked) {
    background-color: white;
}


/* checkboxes */

.checkboxWrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 7.5px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

.checkboxWrapper input[type="checkbox"]:checked {
    background-color: black;
}

.checkboxWrapper input[type="checkbox"]:checked::after {
    content: "";
    background-image: url('/assets/images/icons/check.svg');
    background-size: cover;
    background-position: center;
    background-repeat: none;
    display: block;
    justify-content: center;
    align-items: center;
    width: 9px;
    height: 9px;
    position: absolute;
    top: 5px;
    left: 4.5px;
    overflow: hidden;
    filter: invert(1);
}

.checkboxWrapper label {
    font-size: 16px;
    vertical-align: middle;
    margin-left: 4px;
    cursor: pointer;
}

/* Notifications */
.notications-view {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: fit-content;
    background-color: transparent;
    pointer-events: all;
}

#statusNotification {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 12px 12px 12px 12px;
    margin: 0px 16px;
    background-color: #1F1F1F;
    border-radius: 16px;
    border: 1px solid #1E1E1E;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1); 
    width: fit-content;
    height: fit-content;
    transform: translateY(28px);
    transition: transform 0.3s ease-in-out;
    color: white;
}

#statusNotification img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

#statusNotification img:nth-of-type(2) {
    width: 28px;
    height: 28px;
    margin-right: 0px;
    margin-left: 16px;
    opacity: 60%;
    background-color: #4a4a4a;
    border-radius: 8px;
    padding: 8px;
}

#statusNotification img:nth-of-type(2):hover {
    opacity: 100%;
}

.text-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    gap: 4px;
}

#statusNotification p {
    font-size: 14px;
}

#statusNotification p:nth-of-type(2), p:nth-of-type(3) {
    font-size: 12px;
    margin-right: 4px;
}

#statusNotification #lblUserMail, #lblCountDownView {
    opacity: 0.7;
}

.altcontact-wrapper {
    width: 100%;
    min-height: 60vh;
    background-color: #1E1E1E;
    background-image: url('/assets/images/my-photos/myphoto (5).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: none;
    border: 1px solid #CCCCCC;
    border-radius: 28px;
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    overflow: hidden;
    color: white;
}

.blur-view {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent);
    width: 100%;
    height: 100%;
    padding-top: 80px;

}

.altcontact-wrapper button {
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0px;
    height: 48px;
    width: 138px;
    background-color: white;
    border: none;
    border-radius: 360px;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    padding-left: 22px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.altcontact-wrapper button:hover {
    background-color: #70F815;
    color: black;
    border: none;
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

.altcontact-wrapper .or-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.altcontact-wrapper hr {
    width: 18px;
    margin: 0px 6px 0px 6px;
}

.altcontact-wrapper p {
    font-size: 12px;
}

.social-icon-links img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 24px;
    transition: transform 0.3s ease-in-out;
}

.social-icon-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 18px 0px 48px 0px;
}

.social-icon-links img:hover {
    opacity: 100%;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.social-icon-links:hover img:not(:hover) {
    opacity: 50%;
}

#btnCallMe img {
    width: 24px;
    height: 24px;
}

#btnCallMe div {
    background-color: black;
    width: 38px;
    height: 38px;
    border-radius: 360px;
    margin-left: auto;
    margin-right: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#btnCallMe a {
    text-decoration: none;
    color: inherit;
}

/* Download cv pop up */
.downloadcv-popup-overlay {
    position: fixed;
    top: 0;
    z-index: 1008;
    padding: 8px;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.downloadcv-popup {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 8px;
    width: fit-content;
    height: fit-content;
    color: rgb(0, 0, 0);

    display: grid;
    grid-template-columns: 380px 380px;
    grid-template-rows: 380px;
    gap: 1.5rem;
    grid-template-areas: 
    "box-1 box-2";
    gap: 1rem;
}

.downloadcv-popup .content-box {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 18px;
}

.downloadcv-popup .content-box:nth-of-type(1) .name-holder {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 360px;
    padding: 4px 12px;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.downloadcv-popup .content-box:nth-of-type(1) .name-holder p {
    margin: 0px;
    width: fit-content;
    text-align: center;
    padding: 0px;
}

.downloadcv-popup .content-box:nth-of-type(1) {
    background-color: #ccccccaf;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-image: url('/assets/images/my-photos/myphoto (5).jpg');
    background-size: cover;
    background-position: top;
    background-repeat: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.downloadcv-popup .content-box:nth-of-type(2) {
    gap: 8px;
    justify-content: end;
    padding: 28px;
}

.downloadcv-popup h1 {
    width: fit-content;
    text-align: left;
    font-weight: 500;
    line-height: 1.2;
    font-size: 24px;
    margin-top: 4rem;
}


.downloadcv-popup h4 {
    height: fit-content;
    width: fit-content;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    font-size: 1rem;
    margin-top: 0px;
    color: wheat;
}

.downloadcv-popup .forh4 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.downloadcv-popup #btnConfirmDownload {
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 176px;
    background-color: #000000;
    border: 1px solid #040404F7;
    border-radius: 360px;
    color: white;
    text-align: center;
    font-weight: 500;
    padding: 4px 28px;
    cursor: pointer;
}

.downloadcv-popup #btnConfirmDownload a {
    text-decoration: none;
    color: inherit;
    opacity: 1;
}

.downloadcv-popup #btnConfirmDownload:hover {
    opacity: 1;
    border: 3px solid #A2FF3F;
}

.downloadcv-popup p {
    font-size: 14px;
    width: fit-content;
    text-align: left;
    margin-bottom: 18px;
    opacity: 0.9;
}

.close-d-view {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: fit-content;
    margin-top: auto;
    gap: 6px;
    
}

.close-d-view p {
    margin: 0px;
    opacity: 0.7;
}

#btnCloseDCvView {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.7;
}

#btnCloseDCvView:hover {
    opacity: 1;
    font-weight: 500;
}

/* POP UP MENU */
#bottomMenuWrapper {
    position: fixed;
    bottom: 0;
    z-index: 999;
    margin-bottom: 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*  */
.theme-options {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: fit-content;
    gap: 2px;
    height: fit-content;
    
}

.theme-options label {
    width: 248px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 6px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    margin: 0px;

}

.theme-options label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-options label span {
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: white;
    margin: 0px;
    margin: 0px;
}

/*  */
/* custom radio */
.theme-options input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    background-color: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.theme-options input[type="radio"]:checked {
    background-color: none;
}

.theme-options label:has(input:checked) {
    opacity: 1;
}

.theme-options input[type="radio"]:checked::after {
    content: "";
    background-image: url('/assets/images/icons/check.svg');
    background-size: cover;
    background-position: center;
    background-repeat: none;
    display: block;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    position: absolute;
    transform: translateY(0.2px);
    overflow: hidden;
    filter: invert(1);
    padding: 0px;
}

/* ends */
#btnMoreOptions img {
    filter: invert(1);
    width: 16px;
    height: 16px;
}

#downloadCVFloat {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    position: relative;
}

#downloadCVFloat:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#downloadCVFloat img {
    filter: invert(1);
    width: 16px;
    height: 16px;
}

#bottomMenuOptions {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    padding: 12px 8px 12px 8px;
    width: fit-content;
    height: fit-content;
    margin: 0px 16px;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* initial state for animation */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

#bottomMenuOptions.show {
  display: flex; /* make it visible */
  transform: translateY(0); /* pop up */
  opacity: 1;
}

#bottomMenuOptions p {
    width: 100%;
    text-align: left;
    padding: 0px 6.5px;
    font-size: 16px;
    font-weight: 550;
    margin: 2px 0px;
    color: white;
}

#bottomMenuOptions a {
    color: black;
}

#bottomMenuOptions hr {
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

#bottomMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 360px;
    padding: 1px 1px;
    width: fit-content;
    height: 48px;
    margin: 4px 16px 8px 16px;
    
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transform: translateY(40px);
    animation: slideup 0.5s ease-in-out forwards;
}

@keyframes slideup {
    from {
        transform: translateY(40px);
    }
    to {
        transform: translateY(0);
    }
}

#bottomMenu hr {
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 1px;
    height: 30%;
}

#bottomMenu button {
    background-color: transparent;
    color: white;
    border-radius: 360px;
    border: 0px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    cursor: pointer;
    position: relative;
}

#bottomMenu button a {
    text-decoration: none;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bottomMenu button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#bottomMenu button:hover a {
    color: white;
    opacity: 1;
}

#btnToHome {
    gap: 8px;
    
}

#btnToHome img {
    width: 12px;
    height: 12px;
    filter: invert(1);
    transform: translateY(-1px);
}

.custom-tooltip {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    background-color: #1F1F1F;
    color: white;
    padding: 8px 10px;
    border-radius: 6px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    width: fit-content;
    bottom: 120%;
    left: 50%;
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
    font-size: 12px;
}

#btnMoreOptions:hover .custom-tooltip {
    display: block;
    opacity: 1;
}

/* Success dialog response */
.dialog-popup-overlay {
    position: fixed;
    top: 0;
    z-index: 1008;
    padding: 8px;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.dialog-popup {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 28px;
    width: 340px;
    height: 340px;
    color: rgb(0, 0, 0);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.dialog-popup .img-wrapper {
    /* background-color: #cccccccd; */
    /* border: 1px solid #CCCCCC; */
    background: conic-gradient(pink, red, rgb(255, 150, 30), rgb(255, 28, 194), red, pink);
    height: 70px;
    width: 70px;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 1rem;
}

.dialog-popup .img-wrapper img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.dialog-popup h1 {
    width: fit-content;
    height: fit-content;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    font-size: 22px;
}

.dialog-popup p {
    width: 50%;
    height: fit-content;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3rem;
    font-size: 14px;
}

.dialog-popup #btnCloseDialog {
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 176px;
    background-color: #000000;
    border: 1px solid #040404F7;
    border-radius: 360px;
    color: white;
    text-align: center;
    font-weight: 500;
    padding: 4px 28px;
    cursor: pointer;
}

.dialog-popup #btnCloseDialog a {
    text-decoration: none;
    color: inherit;
    opacity: 1;
}

.dialog-popup #btnCloseDialog:hover {
    opacity: 1;
    border: 3px solid #A2FF3F;
}
/* end */

/* error dialog response */
.dialog-popup-overlay2 {
    position: fixed;
    top: 0;
    z-index: 1009;
    padding: 8px;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.dialog-popup2 {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 28px;
    width: 340px;
    height: 340px;
    color: rgb(0, 0, 0);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.dialog-popup2 .img-wrapper2 {
    /* background-color: #cccccccd; */
    /* border: 1px solid #CCCCCC; */
    background-color: grey;
    height: 70px;
    width: 70px;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 1rem;
}

.dialog-popup2 .img-wrapper2 img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.dialog-popup2 h1 {
    width: fit-content;
    height: fit-content;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    font-size: 22px;
}

.dialog-popup2 p {
    width: 50%;
    height: fit-content;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3rem;
    font-size: 14px;
}

.dialog-popup2 #btnCloseDialog2 {
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 176px;
    background-color: #000000;
    border: 1px solid #040404F7;
    border-radius: 360px;
    color: white;
    text-align: center;
    font-weight: 500;
    padding: 4px 28px;
    cursor: pointer;
}

.dialog-popup2 #btnCloseDialog2 a {
    text-decoration: none;
    color: inherit;
    opacity: 1;
}

.dialog-popup2 #btnCloseDialog2:hover {
    opacity: 1;
    border: 3px solid #A2FF3F;
}

/* end */

#btnSubmit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* loader */
.loader-overlay {
    position: fixed;
    top: 0;
    z-index: 1009;
    padding: 8px;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.loader-wrapper {
    background-color: #1E1E1E;
    border-radius: 22px;
    padding: 22px;
    width: 148px;
    height: 148px;
    color: rgb(255, 255, 255);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.loader {
    width: 50px;
    height: 50px;
    border: 8px solid #70F815;
    border-top: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 360px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.loader-wrapper p {
    width: fit-content;
    height: fit-content;
    text-align: center;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
}

/* end loader */

/*  working on it view */
#workingOnItView {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 360px;
    width: fit-content;
    height: fit-content;
    padding: 6px 12px;
    animation: slideup 0.5s ease-in-out forwards;
    margin-bottom: 8px;
}

#workingOnItView img {
    width: 14px;
    height: 14px;
}

#workingOnItView p {
    font-size: 12px;
    opacity: 0.8;
    color: white;
}

/* responsiveness */
/* Mobile */
@media (max-width: 480px) {
    .text-wrapper {
        gap: 0px;
    }

    .notications-view {
        position: fixed;
        z-index: 1001;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: end;
        width: 100%;
        height: fit-content;
        background-color: transparent;
        pointer-events: all;
    }

    #statusNotification {
        transform: translateY(28px);
        transition: transform 0.3s ease-in-out;
    }

    .dialog-popup h1 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    
    /* download cv view */
    .downloadcv-popup {
        display: grid;
        grid-template-columns: 320px;
        grid-template-rows: 300px 300px;
        gap: 1.5rem;
        grid-template-areas: 
        "box-1"
        "box-2";
        gap: 0rem;
    }

    .downloadcv-popup h1 {
        margin-top: 0rem;
    }

    .downloadcv-popup h4 {
        width: 90%;
    }    
}