/* Common Variables */
:root {
    --border-width: 0.3vh;
    --button-width: 14vh;
    --button-height: 5vh;
    --button-font-size: 84%;
    --button-transition: transform var(--transition-duration);
}

/* Main Container */
.Main-PinLink {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    left: 50%;
    top: 50vh;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 900;
}

/* Backgrounds */
.Background, .Background-Dim {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
}

.Background-Dim {
    background-color: white;
    opacity: 0.9;
}

/* Intentions Container */
.Intentions-Container {
    position: relative;
    display: flex;
    width: 45%;
    height: 64vh;
    left: 27.6%;
    top: 3vh;
    flex-direction: column;
    border: 1px gray solid;
    box-shadow: 2px 2px 2px 2px lightgray;
}

/* Title Bar */
.Top-Title-Bar {
    width: 100%;
    height: 5vh;
   border-bottom: 1px lightgray solid;;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1vh;
}

.Close-Window {
    width: 2vh;
    height: 1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.Close-Window:hover {
    background-color: #f5f5f5;
}

.Top-Title {
    position: relative;
    width: 93%;
    height: 100%;
    color: black;
    text-transform: uppercase;
    align-content: center;
    margin-left: 2vh;
    font-weight: 550;
    font-size: 1.6vh;
}

/* Inner Container */
.Inner-Container {
    position: relative;
    width: 100%;
    height: 80%;
    background-color: white;
    border-bottom: 1px solid lightgray;
    padding-left: 5%;
}

/* Link Container */
#Link-Container {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Button Container */
.Button-Container {
    position: relative;
    width: 100%;
    height: 8vh;
    background-color: white;
}

.Button-Copy, .Button-Close {
    position: absolute;
    width: var(--button-width);
    height: var(--button-height);
    top: 1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--button-font-size);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--button-transition);
}

.Button-Close {
    background: black;
    color: white;
    left: 2%;
}

.Button-Close:hover, .Button-Copy:hover {
   box-shadow: 1px;
    transform: scale(0.95);
}

.Button-Copy {
    background: white;
  
    right: 2%;
    color: black;
    border: 1px solid;
    box-shadow: 2px 2px lightgray;
}

.Button-Copy-Title {
    color: black;
    cursor: pointer;
}

/* Text Title */
.Text-Title {
    color: black;
    text-transform: uppercase;
    font-size: 1.2vh;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .Intentions-Container {
        width: 90%;
        left: 5%;
        top: 2vh;
    }

    .Button-Close, .Button-Copy {
        width: 30%;
        height: 5vh;
        font-size: 70%;
    }

    .Button-Close {
        left: 5%;
    }

    .Button-Copy {
        right: 5%;
    }
}
