/* Slider Notification */
#slideNotification.isError {
    background: #f16565;
}

#slideNotification.isSuccess {
    background: #74b94a;
}

#slideNotification {
    line-height: 1.5em;
    z-index: 999999;
    max-width: 320px;
    width: 100%;
    position: fixed;
    top: 10px;
    right: 0;
    border-radius: 8px 0px 0px 8px;
    padding: 4px 12px;
    color: #fff;
    transform: translateX(100%);
    transition: all 400ms ease-out;
}

#slideNotification.slider {
    transform: translateX(0%);
}

#slideNotification .flexMain {
    display: flex;
    align-items: center;
}

#slideNotification #notifHeading {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

#slideNotification #notifText {
    font-size: 14px;
}

#slideNotification #notifType {
    font-size: 2em;
}

#slideNotification .fa-times {
    cursor: pointer;
    float: right;
    margin-top: 12px;
}

#slideNotification #errorIcon,
#slideNotification #successIcon,
#slideNotification.isError #successIcon,
#slideNotification.isSuccess #errorIcon {
    display: none;
}

#slideNotification.isSuccess #successIcon,
#slideNotification.isError #errorIcon {
    display: block;
}



/* Loading Logo Spinner */
#loadingSpinnerWrap {
    display: none;
    z-index: 999;
}

#loadingSpinner {
    background: rgba(0, 0, 0, 0.8);
    padding-bottom: 40px;
}

#rotator {
    border: 2px solid #fff;
    border-top: 2px solid #454545;
    border-bottom: 2px solid #121212;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: rtr 1s infinite linear;
}

@keyframes rtr {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.requiredLabel:after,
textarea[required]+label:after,
select[required]+label:after,
input[required]+label:after {
    content: " * ";
    color: red;
}

.inputButtonInside .form-control {
    padding-right: 80px;
}

.inputButtonInside .btn {
    width: 60px;
}

.otpInput {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin: 4px;
    text-align: center;
    font-size: 24px;
}

#imageUploadInput {
    position: fixed;
    top: -100px;
}

.avatar {
    background-color: #c7c7c7;
    border-radius: 50%;
    object-fit: fill;
    width: 120px;
    height: 120px;
    position: relative;
}

.square {
    background-color: #c7c7c7;
    object-fit: contain;
    width: 240px;
    height: 240px;
    position: relative;
}

.rectangle {
    background-color: #c7c7c7;
    object-fit: contain;
    width: 320px;
    height: 180px;
    position: relative;
}

#imageLoadingSpinner {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 8px;
}

#spinImg img {
    position: absolute;
    width: 100%;
    padding: 20px;
    top: 0;
}

/* Editable Field */
.editableEdit {
    display: none;
}

.initEditableField:hover {
    background : rgba(125,125,125,0.1)
}
.initEditableField:hover >.editableEdit {
    display: block;
    cursor: pointer;
}

.editableData[contenteditable="true"] {
    outline: 1px solid #23aad4;
    border-radius: 2px;
}
.fa-spinner {
    animation : spinning 600ms infinite linear;
}
@keyframes spinning {
    100%{
        transform: rotate(360deg);
    }
}