html,
body {
    /* height: 100vh; */
}

.clickable {
    cursor: pointer;
}


.main {
    /* height: 100vh; */
}

.kitchensink {
    border-right: 1px solid #F1F1F1;
    border-left: 1px solid #F1F1F1;
    border-bottom: 1px solid #F1F1F1;
}

.separatorLine {
    border-bottom: 1px solid #F1F1F1;
}

.profileContainer {
    border-right: 1px solid #F1F1F1;
    border-left: 1px solid #F1F1F1;
    /* overflow-y: scroll; */
    overflow-x: hidden;
}

.contactDetails {
    position: relative;
    border-bottom: 1px solid #F1F1F1;
}

.coverPhotoContainer {
    height: 440px;
}

.coverPhoto {
    height: 300px;
    border-bottom: 1px solid #F1F1F1;
    background-color: #94a3b8;
    position: relative;
}

.profilePhoto {
    width: 230px;
    height: 230px;
    position: relative;
    top: 180px;
    margin: 0 auto;
    background-color: #94a3b8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #F1F1F1;
}

.pinLock_profilePhoto {
    width: 230px;
    height: 230px;
    position: relative;
    margin: 0 auto;
    background-color: #94a3b8;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #F1F1F1;
}

.editCoverPhoto {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
}

.logoPhoto {
    height: 70px;
    width: 70px;
    position: absolute !important;
    top: -25px !important;
    right: -25px !important;
    background-color: #94a3b8;
    border-radius: 50%;
    border: 2px solid white;
}

.editContact {
    position: absolute !important;
    top: 0px !important;
    right: 0px !important;
}

.newContentIconBox {
    background-color: #132144;
    border-radius: .75rem 0px 0px .75rem;
}

.componentLink {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0px;
    color: black;
    cursor: pointer;
}

.componentLink span {
    font-size: 1rem !important;
}

.componentLink:hover {
    filter: brightness(90%);
}

.componentLinkSmallImage {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.componentLinkMediumImage {
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.componentLinkLargeImage {
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.socialLink {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0px;
    color: black;
    cursor: pointer;
}

.socialLink span {
    font-size: 1rem !important;
}

.socialLink:hover {
    filter: brightness(90%);
}

.socialLinkCircle {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    padding: 0px;
    color: black;
    cursor: pointer;
}

.socialLinkCircle span {
    font-size: 1rem !important;
}

.socialLinkCircle:hover {
    filter: brightness(90%);
}

/* Draggable styles */
.draggable-mirror {
    -webkit-box-shadow: 6px 2px 12px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 6px 2px 12px 1px rgba(0, 0, 0, 0.25);
}

.draggable-source--is-dragging {
    background-color: #ecfeff !important;
}

.wrapper_saveContact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper_saveContact .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.wrapper_saveContact .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.wrapper_saveContact .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

.image_round_corners {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.profileInvisible {
    background-color: #ef4444;
    color: #fee2e2;
}

.profileInvisible a, .profileInvisible a:link, .profileInvisible a:hover, .profileInvisible a:visited, .profileInvisible a:active {
    color: #fee2e2 !important;
}

.profileType {
    background-color: #e0f2fe;
    color: #0c4a6e;
}

.profileType a, .profileType a:link, .profileType a:hover, .profileType a:visited, .profileType a:active {
    color: #0c4a6e !important;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142
    }
}

/* Prevents mobile devices to zoom when typing in forms */
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .profileContainer {
        border-right: 0;
        border-left: 0;
    }

    .coverPhotoContainer {
        height: 330px;
    }

    .coverPhoto {
        height: 200px;
    }

    .profilePhoto {
        width: 200px;
        height: 200px;
        top: 100px;
    }

    .pinLock_profilePhoto {
        width: 200px;
        height: 200px;
    }

    .logoPhoto {
        height: 60px;
        width: 60px;
        top: -20px !important;
        right: -20px !important;
    }

    .newContentIconBox {
        border-radius: .75rem .75rem 0px 0px;
    }
}