*, html{
    margin: 0px;
	padding: 0px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body{
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    background: url('../images/fondo_app.png');
    z-index: -1;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
}
#logo_top
{
  width: 100%;
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  /*background-color: rgba(255,255,255,0.5);*/
  padding: 20px;
}
    #logo_top img{
        width: 80%;
        max-width: 720px;
        margin-bottom: 20px;
    }
    #logo_top form{
        width: 100%;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 60%;
    }
        #logo_top form input[type="text"], input[type="password"]{
            width: 100%;
            max-width: 720px;
            height: 50px;
            margin-bottom: 20px;
            border: 2px solid #ffffff;
            border-radius: 50px;
            padding: 5px 20px;
            color: #8C69E2;
            font-size: 20px;
            background-color: #5616B2;
            text-align: center;
        }
        #logo_top form input[type="text"]::placeholder, #logo_top form input[type="password"]::placeholder {
            text-align: center;
            color: #8C69E2;
        }
        #logo_top form input[type="submit"]{
            font-size: 20px;
            width: 150px;
            height: 50px;
            background-color: #7D46D3;
            color: #ffffff;
            padding: 5px;
            border: 0;
            border-radius: 25px;
        }
        #logo_top a{
            display: block;
            height: 50px;
            width: 100%;
            padding: 10px;
            text-align: center;
            text-decoration: none;
        }
    #logo_top form div.remember{
        width: 100%;
        display: block;
        background-color: #ffffff;
    }
    

        .check {
            width: 40px;
            height: 40px;
            position: relative;
            width: 100%;
            display: flex;
            color: #ffffff;
            flex-wrap: wrap;
            justify-content: center;
        }
            .check span{
                display: block; 
                padding-left: 10px;
                text-shadow: 0px 0px 5px rgba(150, 150, 150, 1);
            }
            .check input {
                display: none;
            }
            .check input:checked + .box {
                background-color: #1bb021;
                border-radius: 10px;
            }
            .check input:checked + .box:after {
                top: 0;
            
            }
            .check .box {
                width: 20px;
                height: 20px;
                transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
                border: 2px solid transparent;
                background-color: #ffffff;
                position: relative;
                overflow: hidden;
                cursor: pointer;
            }
            .check .box:after {
                width: 50%;
                height: 20%;
                content: '';
                position: absolute;
                border-left: 7.5px solid;
                border-bottom: 7.5px solid;
                border-color: #a91b7c;
                transform: rotate(-45deg) translate3d(0, 0, 0);
                transform-origin: center center;
                transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
                left: 0;
                right: 0;
                top: 200%;
                bottom: 5%;
                margin: auto;
            }

    .bot_registrate{
        display: block;
        font-size: 20px;
        width: 150px !important;
        height: 50px;
        background-color: #7D46D3;
        color: #ffffff;
        padding: 13px !important;
        border: 0;
        border-radius: 25px;
    }
    .dbut_login{
        width: 50%;
        text-align: center;
    }
#negocios_bot{
    width: 100%;
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    padding: 20px;
}
    .bot_negocios{
        display: flex;
        flex-wrap: wrap;
        font-size: 18px;
        width: 80%;
        height: 50px;
        background-color: #7D46D3;
        color: #ffffff;
        border: 0;
        border-radius: 25px;
        align-items: center;
        text-decoration: none;
    }
        .bot_negocios i{
            margin-right: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 10px;
            border-radius: 50%;
            background-color: #90c543;
            color: #7D46D3;
            width: 50px;
            height: 50px;
        }
        

.compartir {
    position: absolute;
    top: 110px;
    right: 80px;
    font-size: 30px;
    color: #7D46D3;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
    .compartir a {
        color: #7D46D3;
        text-decoration: none;
        width: auto !important;
    }

/*MODAL*/
	/* The Modal (background) */
	.modal {
		display: none; /* Hidden by default */
		position: fixed; /* Stay in place */
		z-index: 1000; /* Sit on top */
		padding-top: 100px; /* Location of the box */
		left: 0;
		top: 0;
		width: 100%; /* Full width */
		height: 100%; /* Full height */
		overflow: auto; /* Enable scroll if needed */
		background-color: rgb(0,0,0); /* Fallback color */
		background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
	}

	/* Modal Content */
	.modal-content {
		position: relative;
		background-color: #fefefe;
		margin: auto;
		padding: 0;
		border: 1px solid #888;
		width: 320px;
		height: 320px;
		overflow: hidden;
		
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
		-webkit-animation-name: animatetop;
		-webkit-animation-duration: 0.4s;
		animation-name: animatetop;
		animation-duration: 0.4s
    }
        .modal-content img{
            width: 320px;
            height: 320px;
        }

	.modal-header{
		border: 0px !important;
	}

	/* Add Animation */
	@-webkit-keyframes animatetop {
		from {top:-300px; opacity:0} 
		to {top:0; opacity:1}
	}
	
	@keyframes animatetop {
		from {top:-300px; opacity:0}
		to {top:0; opacity:1}
	}
	
	/* The Close Button */
	.closse {
		color: #FFF;
		font-size: 28px;
		font-weight: bold;
	}

	.closse:hover,
	.closse:focus {
		color: #000;
		text-decoration: none;
		cursor: pointer;
	}
	
	.modal-header {
		padding: 2px 16px;
		background-color: #a0c7c5;
		color: #606060;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		.modal-header h2{
			color: #FFF;
			display: block;
			padding: 15px;
			width: calc(100% - 30px);
		}
	
	.modal-body {
        /*padding: 2px 16px; */
        height: 100%;
    }
	
	.modal-footer {
		padding: 2px 16px;
		background-color: #39657d;
		color: #ffffff;
	}