
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');

:root {
    --sf-primary: #7900FF;
    --sf-secondary: #548CFF;
    --sf-light-primary: #93FFD8;
    --sf-light-secondary: #CFFFDC;
}


.blobpurple {
    background: white;
    box-shadow: 0 0 0 0 rgba(142, 68, 173, 1);
    animation: pulse-purple 1.5s infinite;
    border-radius: 33px;
}

@keyframes pulse-purple {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
	}
	
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
	}
	
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
	}
}


.fa.fa-bell.notif::after{
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background: red;
    border-radius: 100%;
    margin-left: -11px;
    margin-top: 1px;
}
.nav-link.active .fa{
    color: var(--sf-primary);
}
.nav-tabs, .sf-header{
    background: white;
}
/*.card{
    max-width: 250px;
}*/

.box-card{
   /* display: flex;*/
    justify-content: space-evenly;
    flex-wrap: wrap;
}
body{
    background: #e4e4e4;
}

/* login fonts */
label {
    font-family: 'Poppins', sans-serif;
}

.centered{
    text-align:center;
}

.hello {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #7900ff;
    font-weight: 500;
}

.hellogray {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px;
    color: gray;
}

a.login-links {
    color: #7900ff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

a.gray {
    color: #cccccc;
}

a.gray:hover {
    color: gray;
    text-decoration: none;
}
a.nodeco:hover {
    text-decoration: none;
    color: black;
}

a.nodeco {
    color: #7900ff;
}

.background-login{
    background-image: url(/assets/images/happy-businessman.jpg);
    background-size: cover;
    position:fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    filter: blur(2px);
    opacity: .5;
}


/* BUTTONS */
.btnsf{
    border: 1px solid var(--sf-primary);
    padding: 15px;
    position: relative;
    z-index: 0;
    color: white;
    overflow: hidden;
    background: var(--sf-primary);
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}
.btnsf:hover::before{
    top: 0px;
    border-radius: 0;
}
.btnsf::before{
    content: '';
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--sf-secondary);
    border-radius: 50% 50% 0% 0;
    z-index: -1;
    transition: all 0.5s;
}
/* sobreescribiendo bootstrap */
.btn-primary {
    color: #fff;
    background-color: #7900ff;
    border-color: #7900ff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #7900ff;
    border-color: #6000cb;
}
.btn-primary:focus {
    color: #fff;
    background-color: #7900ff;
    border-color: #6000cb;
    box-shadow: 0 0 0 0.2rem rgb(121 0 255 / 19%);
}
.btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #7900ff;
    border-color: #6000cb;
}
button:focus {
    outline: 5px auto #6000cb;
}
.regnow {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.grayc {
    color: darkslategray;
    font-size: 0.85em;
}

/* subtarea tonos*/
.titlehdr{
    color: black;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    padding-bottom: 5px;
}

.gdesc {
    font-size: 1em;
    text-transform: inherit;
    color: black;
    padding: 6px 0px;
    text-align: center;
    font-weight: 400;
}

a.newtablink {
    color: #cbcbcb;
}


/* .btnsf.btnsf-primary{
    background: var(--sf-primary);
}
.btnsf.btnsf-primary:hover{
    background: var(--sf-secondary);
    outline: none;
} */
/* END BUTTONS */

#preloader {

    position: fixed;

    left: 0;

    right: 0;

    top: 0;

    z-index: 99999;

    background-color: rgba(0, 0, 0, .5);

    height: 100vh;

    width: 100%;

    display: block;

    overflow-y: hidden;

}



.loader_spinner_inside {

    box-sizing: border-box;

    border: 8px solid #f3f3f3;

    border-top-color: #f3f3f3;

    border-top-style: solid;

    border-top-width: 8px;

    border-radius: 50%;

    border-top: 8px solid #3498db;

    width: 60px;

    height: 60px;

    position: absolute;

    left: 0;

    right: 0;

    margin: 0 auto;

    top: 42%;

    animation-name: spin;

    -webkit-animation: spin 1s linear infinite;

    animation: spin 1s linear infinite;

}



@keyframes spin {

    from {

        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }



    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);

    }

}


.loader_spinner_text {

    display: block;

    margin-top: 60px;

    width: 100%;

    position: fixed;

    left: 0;

    right: 0;

    text-align: center;

    color: #fff;

    top: 44%;

}


.post-content {

    /* background: none repeat scroll 0 0 #FFFFFF; */

    /* opacity: 0.5; */

    top: 20%;

    left: 15%;

    position: absolute;

    color: white;

}



.button1 {

    height: 65px;

    width: 100%;

    max-width: 300px;

    font-size: 25px;

    /*font-family: "Hack", monospace;*/

    padding: 20px;

    line-height: 0;

    vertical-align: top;

    cursor: pointer;

    color: #fff;

    border: 0;

    border-radius: 0px 5px 5px 0px;

    background: #ff9d21;

    box-shadow: 0 4px 10px hsl(34 100% 56% / 0.6);

    transition: 0.1s ease-in;

}



.button1:hover {

    /*background: #d8932c;*/

    box-shadow: 0 4px 10px hsl(34 100% 56% / 0.2);

}



.button2 {

    height: 50px;

    width: 100%;

    max-width: 300px;

    font-size: 25px;

    /* font-family: "Hack", monospace; */

    padding: 20px;

    line-height: 0;

    vertical-align: top;

    cursor: pointer;

    color: #fff;

    border: 0;

    border-radius: 0px 5px 5px 0px;

    background: #ff9d21;

    box-shadow: 0 4px 10px hsl(34deg 100% 56% / 60%);

    transition: 0.1s ease-in;

}

.span2 {

    height: 50px;

    width: 100%;

    font-size: 20px;

    color: #fff;

    background: #ff9d21 !important;

    box-shadow: 0 4px 10px hsl(34deg 100% 56% / 60%);

    transition: 0.1s ease-in;

}



.button2:hover {

    /*background: #d8932c;*/

    box-shadow: 0 4px 10px hsl(34 100% 56% / 0.2);

}



/* form {

display: flex;

} */




#preload {

    display: none;

}


.toast {

    position: fixed;

    padding: 5px;

    bottom: -100px;

    left: 50%;

    transition: 0.3s;

    transform: translateX(-50%);

    background: #7900ff !important;

    color: #fff !important;
    font-size: 16px;

    padding: 16px 36px !important;

    text-align: center;

    width: auto;

    z-index: 9999;

}



.toast-body {
    display: flex;
    align-items: center;
}

.toast i {
    margin-right: 10px;
    font-size: 20px;
}

.toast i.green {
    color: #26bc4e;
}

.toast i.red {
    color: #ff4343;
}

.toast i.warning {
    color: #f0ad4e;
}

.toast.show {
    bottom: 30px;
}


.load-btn {
    border: 3px solid #fff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}




.load-btn-footer {
    border: 3px solid #fff;
    -webkit-animation: spinfooter 1s linear infinite;
    animation: spinfooter 1s linear infinite;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}


@-webkit-keyframes spinfooter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);

    }

    100% {

        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);

    }
}

.user_profile {
    position: absolute;
    right: auto;
    left: auto;
    margin-top: -23px;
}


.btn-warning {
    color: #ffffff;
    background-color: var(--sf-primary);
    border-color: #ca90ff;
}

.btn-warning:hover {
    color: #ffffff;
    background-color: var(--sf-primary);
    border-color: #ca90ff;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #ffffff;
    background-color: var(--sf-primary);
    border-color: #ca90ff;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    font-size: 40px;
    padding: 0;
    padding-bottom: 10px;
    line-height: 40px;
    border: none;
    color: #ccc;
}

.nav-tabs .nav-link.active {
    color: var(--sf-primary);
}



.grey-bg {
    background: #f7f7f7;
}

.bor-rad20 {
    border-radius: 20px;
}

.card {
    border: 2px solid var(--sf-primary);
}


.card-anim {
    transform: scale(0.94);
    transition-duration: 0.20s;
}

.card-anim:hover {
    transform: scale(1);
    transition-duration: 0.20s;
}


.card-body {
    padding-bottom: 10px;
}

.card-body h4 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    color: #495057;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.card-body p {
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.bor-rad20 .card-footer {
    border-radius: 0 0 15px 15px;
    background: var(--sf-primary);
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.bor-rad20 .card-footer a {
    color: #fff;
    font-weight: 700;
}

.more-option a {
    display: block;
    text-align: center;
    border: 0;
    border-radius: 6px;
    margin: auto;
    margin-bottom: 20px;
    padding: 7px 12px;
    font-size: 1em;
    background: #efefef;
    color: #212529;
    font-weight: 600;
    transition: 0.2s ease;
    width: 86%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.more-option a:hover {
    text-decoration: none;
    background: var(--sf-primary);
    color: #fff;
    border-color: var(--sf-primary);
}

/*nombre superior*/
.name-top {
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
}
.points-top{
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

h4.mrg-5 {
    margin: -6px 0px 0px 0px;
}

.mb-106 {
    margin-bottom: 15px
}

.yellow-back {
    border-color: #fcc305;
}

.yellow-back .card-footer {
    background: #fcc305;
}

.yellow-back .card-body h4 {
    color: #fcc305;
}


.grey-back {
    border-color: #b7b6b2;
}

.grey-back .card-footer {
    background: #b7b6b2;
}

.grey-back .card-body h4 {
    color: #b7b6b2;
}


.notification-style1 {
    display: flex;
    align-items: center;
    margin-bottom:20px;
}

.notifications-container{
    overflow: auto;
    height: 526px;
}

.notification-style1 .fa-check,
.notification-style1 .fa-times {
    padding: 12px;
    background: green;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top:-3px;
    width: 30px;
    padding: 5px;
    height: 30px;
}
.notification-style1 .fa-times{
    padding: 5px 7px;
    background:red;
}
.notification-style-text p {
    margin: 0;
    background: transparent !important;
    padding: 0px 0px;
    font-family: 'Poppins', sans-serif;
}

.notification-style-text h6 {
    display: flex;
    align-items: center;
    margin: 3px 0;
    color: gray;
    font-size: .8rem;
    font-family: 'Montserrat', sans-serif;
}

.notification-style-text h6 .fa-smile-o {
    background: yellow;
    border-radius: 50%;
    padding: 0;
    margin-right: 6px;
}
.disabled-notification.disabled-notification i{
    color:gray !important;
    background:lightgray;
}
a.colorW {
border-color: green;
}
a.colorR {
border-color: #c4302b;
}
.back-arrow{
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    padding: 5px 11px;
    color: #555;
    top: -30px;
    left: -12px;
}

.search-input {
    position: relative;
    display: flex;
    border-collapse: separate;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
    /*padding: 15px 15px 10px;*/
}

.search-input input {
    box-shadow: inset 0 1px 0 rgb(0 0 0 / 8%);
    border-radius: 25px 0 0 25px;
    padding-left: 20px;
    border: 1px solid var(--sf-primary);
    width: 70% !important;
}


.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
    /*width: 20%;*/
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-btn button {
    border-radius: 0 25px 25px 0;
    border: 1px solid rgba(221, 226, 232, .49);
    border-left: 0;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    color: #fff;
    background: var(--sf-primary);
    margin-bottom: 0 !important;
}

.heading-domain {
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #7900ff;
    margin-bottom: 20px;
}

.heading-domain span {
    color: var(--sf-primary);

}

.card-body .fstheading {
    color: var(--sf-primary);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.card-body .fstdesc {
    font-size: 0.9rem;
}

p.titlest{
    font-weight: 600;
}

.fontst{
    margin:5px 0;
    font-size:1em;
    font-weight:500;
    font-family: 'Poppins', sans-serif;
}

.upload-img-input-grp {
    text-align: center;
    position: relative;
}

.upload-img-input-grp input {
    display: none;
}

.upload-img-input-grp label {
    color: var(--sf-primary);
    position: relative;
}

.upload-img-input-grp label {
    color: var(--sf-primary);
    font-size: 34px;
    padding: 25px 34px;
    border-radius: 50%;
    border: 1px solid;
    position: relative;
}

.upload-img-input-grp label .plus {

    position: absolute;
    font-weight: 400;
    color: gray;
    top: -28px;
    font-size: 55px;
    left: 75px;
}

.img_cap{
    position: absolute;
    width: 94%;
    height: 94%;
    top: 0;
    bottom: 0;
    object-fit: cover;
    left: 0;
    right: 0;
    border-radius: 100%;
    margin: auto;
    z-index: 0;
}


.username-heading {
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
    color: var(--sf-primary);
}

.username-heading p {
    margin: 0;
    font-size: 13px;
    color: #000;
}

.opertions-select select {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin: 0;
}



input {

    /* min-width: 235px;

    height: 65px; */

    /* width: 100%; */

    /* border-radius: 5px 0 0 5px; */

    /* background: transparent; */

    border: 1px solid #ffffff;

    padding: 16px;

    font-weight: normal;

    font-size: 25px;

    text-align: left;

    color: white;

    /* opacity: 0.5; */

}


.input1 {

    min-width: 235px;

    height: 50px;

    width: auto;

    /* border-radius: 5px 0 0 5px; */

    /* background: transparent; */

    border: 1px solid #ffffff;

    padding: 16px;

    font-weight: normal;

    font-size: 20px;

    text-align: left;

    color: white;

    /* opacity: 0.5; */

}
