#thehero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.the-inner {
    padding: 1rem;
}

.the-inner h1 {
    color: #ffffff;
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    font-size: 60px;
}

.the-inner p {
    color: #ffffff;
    text-align: center;
    font-size: 1.1rem;
}

.the-inner a {
    color: #ffffff;
}
#myinput {
    background: linear-gradient(
        to right,
        #02aa5a 0%,
        #02aa5a 50%,
        #b3e6ce 50%,
        #b3e6ce 100%
    );
    border: solid 1px #02aa5a;
    border-radius: 8px;
    height: 7px;
    width: 356px;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}
#jangkaWaktu {
    background: linear-gradient(
        to right,
        #02aa5a 0%,
        #02aa5a 50%,
        #b3e6ce 50%,
        #b3e6ce 100%
    );
    border: solid 1px #02aa5a;
    border-radius: 8px;
    height: 7px;
    width: 356px;
    outline: none;
    transition: background 450ms ease-in;
    -webkit-appearance: none;
}

.cat {
    margin: 4px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #a0a2a3;
    overflow: hidden;
    float: left;
}

.cat label {
    float: left;
    line-height: 3em;
    width: 8em;
    height: 3em;
}

.cat label span {
    text-align: center;
    display: block;
}

.cat label input {
    position: absolute;
    display: none;
    color: #a0a2a3 !important;
}
/* selects all of the text within the input element and changes the color of the text */
.cat label input + span {
    color: #a0a2a3;
}

/* This will declare how a selected input will look giving generic properties */
.cat input:checked + span {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

/*
  This following statements selects each category individually that contains an input element that is a checkbox and is checked (or selected) and chabges the background color of the span element.
  */

.box-color input:checked + span {
    background-color: #02aa5a;
}

#map {
    height: 300px;
}

.leaflet-popup-content-wrapper {
    width: 100%;
}

.img-container {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.text-wrap {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.wrapper {
    display: inline-flex;
    list-style: none;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #cd201f;
    color: #ffffff;
}
