.img-cover-container img,
.square-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.one-to-one-container {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
    height: 0;
}
.one-to-one-container .one-to-one-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.btn:hover,
[role="button"]:hover {
    cursor: pointer;
}

.fancy-doc {
    border: 1px solid rgba(199, 199, 214, 0.699);
    border-radius: 3px;
    padding: 1.5rem .75rem .75rem .75rem;
    height: 7rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: box-shadow .15s;
}
.fancy-doc:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .125);
}
.fancy-doc .doc-icon .fas,
.fancy-doc .doc-icon .far,
.fancy-doc .doc-icon .fal {
    font-size: 2rem;
    color: #BCBBCF;
}

.fancy-doc .doc-title {
    font-size: 10px;
}

/***************************
* IMAGE CIRCLES
****************************/

.circle-image-container {
    border-radius: 50%;
    overflow: hidden;
    background-color: #BCBBCF;
    width: 100%;
}
a:hover .circle-image-container {
    background-color: #a9a8c3;
}
.circle-image-container .one-to-one-inner {
    align-items: center;
    justify-content: center;
    text-align: center;
}
.circle-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.circle-image-container .initials {
    color: #fff;
    font-size: .8rem;
}

.circle-name-combo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.circle-name-combo .circle-image-container {
    margin-right: .25rem;
}


/******************************
* LIGHTBOX
******************************/
.lightbox {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    top: 0;
    left: 0
}

.lightbox .img-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 80%;
    flex: 1 0 80%;
    padding: 0 10%
}

.lightbox .img-wrapper {
    text-align: center;
    max-width: 95%;
    max-height: 80vh;
}

.lightbox .img-container img {
    max-height: 80vh;    
}

.lightbox .description {
    text-align: center;
    color: #fafafa;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8)
}

.lightbox .close-btn,
.lightbox .delete-btn {
    font-size: 2.5em;
    position: absolute;
    color: #fafafa !important;
    top: 0;
    right: 30px;
    line-height: 1
}

.lightbox .close-btn:hover,
.lightbox .delete-btn:hover {
    color: #fff !important
}

.lightbox .delete-btn {
    font-size: 1.3em;
    top: 14px;
    right: 75px
}

.number-circle {
    border-radius: 50%;
    width: 100%;
}

.number-circle .one-to-one-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.country-codes {
    width: 38% !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.country-codes ~ .gimme-country-codes, .country-code-display {
    border-left: 0;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.profile-form-country-code-div {
    width: 100% !important;
}
.profile-form-country-code-input {
    width: 15% !important;
}
.profile-form-country-code-display {
    border: 0 !important;
}