.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    display: inherit;
}

.w50 {
    width: 50px;
}

.no-visible {
    display: none;
}

.pointer {
    cursor: pointer;
}

.d-table {
    display: table;
}

.d-cell {
    display: table-cell;
}

.d-inlineblock {
    display: inline-block;
}

.v-middle {
    vertical-align: middle;
}

.fondoModalLogin {
            /*background: rgba(7,11,28,1);
            background: -moz-radial-gradient(center, ellipse cover, rgba(7,11,28,1) 0%, rgba(27,56,77,1) 100%);
            background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(7,11,28,1)), color-stop(100%, rgba(27,56,77,1)));
            background: -webkit-radial-gradient(center, ellipse cover, rgba(7,11,28,1) 0%, rgba(27,56,77,1) 100%);
            background: radial-gradient(ellipse at center, rgba(7,11,28,1) 0%, rgba(27,56,77,1) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#070b1c', endColorstr='#1b384d', GradientType=1 );*/
			background: rgba(224,224,224,0.8);
            padding: 15px;
            webkit-box-shadow: 10px 13px 22px -1px rgba(0,0,0,0.75);
            -moz-box-shadow: 10px 13px 22px -1px rgba(0,0,0,0.75);
            box-shadow: 10px 13px 22px -1px rgba(0,0,0,0.75);
            border-radius: 5px;
}

.msjGracias {
    margin: 30px 0px;
    font-weight: 500;
}


/* Modal */

.loader {
    margin: 0 auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

img {
    vertical-align: middle;
}

@media (max-width: 600px) {
    .modal-body {
        width: inherit !important;
    }
}

