@charset "UTF-8";

* {
	box-sizing: inherit;
}

/*.active a {

  background-color: green;

}*/

body {
	font-size:2vw;
	padding-top: 80px; 
	padding-bottom: 80px; 
	background-color: white;
	border-left: 0.25em solid #e1f56f;
	color: yellow;
	border-bottom: 1px solid #737373
}

.menu-header{
	color: black;
}

html {
	box-sizing: border-box;
}



/* @media (min-width: 62.5rem) {
	body {
		border-left-width: 0.5em;
	}
} */


blockquote {
	background-color: #ececec;
	margin: 0;
	padding: 0.5em 1.5em;
}

figure {
	margin: 1em;
}

figcaption {
	font-size: 0.85em;
	font-style: italic;
	text-align: center;
}

header {
	position: relative;
}

#header h6 { display:inline; }

h3 {
	font-size: 1em;
	font-weight: bold;
}

h5, h6 {
	font-size: 1em;
}

img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

p {
	margin: 1em 0;
}

ol, ul {
	margin: 1em 0 1em 1em;
	padding: 0;
}

@media (min-width: 31.25rem) {
	ol, ul {
		margin-left: 2em;
	}
}

section {
	margin-bottom: 2em;
}

table {
	border-collapse: collapse;
	width: 100%;
}

thead {
	border-bottom: 1px dotted black;
}

th {
	text-align: left;
}

th, td {
	padding: 0.25em;
	vertical-align: top;
	white-space: nowrap;
}


/* COMMON COMPONENTS */
/* ========================================================================== */

.fluid-container {
	padding-left: 0.75em;
	padding-right: 1em;
}

@media (min-width: 62.5rem) {
	.fluid-container {
		padding-left: 0.5em;
	}
}

.fluid-block {
	margin: 0 auto;
	max-width: 56.25rem;
}

.subsection {
	margin: 1em 0 1.5em;
}

/* Toolbar component */
/* -------------------------------------------------------------------------- */

.toolbar-container {
	background-color: white;
	position: fixed;
	width: calc(100% - 0.25em);
	z-index: 5;
}

.toolbar-menu {
	border-bottom: 1px solid #e1f56f;
	display: flex;
	justify-content: space-between;
}

.toolbar-menu-location {
	padding: 1em;
}

.toolbar-menu-items {
	height: 0;
	overflow: hidden;
	transition: 200ms height;
}

.toolbar-menu-items.show-menu {
	box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.6);
	height: 28.125rem;
	max-height: calc(95vh - 5.5rem);
	overflow: auto;
}

.toolbar a {
	border-bottom: none;
	color: inherit;
}
.toolbar a:hover,
.toolbar a:focus,
.toolbar a:active,
.toolbar .selected a {
	background-color: #BCE458;
	color: white;
	text-decoration: none;
}

.toolbar-links {
	list-style: none;
	margin: 0;
}

.toolbar-link {
	display: block;
	padding: 1em;
}

@media (max-width: 43.75rem) {
	.toolbar-container {
		padding: 0;
	}
}

@media (min-width: 43.75rem) {
	.toolbar-container {
		border-bottom: 1px solid #7CB43C;
	}

	.toolbar-menu {
		display: none;
	}

	.toolbar-menu-items {
		display: flex;
		height: auto;
		justify-content: space-between;
		overflow: auto;
	}

	.toolbar-links {
		display: flex;
	}
}

@media (min-width: 62.5rem) {
	.toolbar-container {
		width: calc(100% - 0.5em);
	}
}


.footer-container {
	background-color: #A9D279;
	border-top: 1px solid #7CB43C;

	height: 30px;
		
}


.btn-primary {
    @include button-variant($mynewcolor, darken($mynewcolor, 7.5%), darken($mynewcolor, 10%), lighten($mynewcolor,5%), lighten($mynewcolor, 10%), darken($mynewcolor,30%));
}

.modal {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('/images/loader.gif') 
                50% 50% 
                no-repeat;
}


/* MODAL WINDOWS When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modal {
    overflow: hidden;   
}

/* MODAL WINDOWS  Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}

.wrapper1, .wrapper2{width: 300px; border: none 0px RED;
overflow-x: scroll; overflow-y:hidden;}
.wrapper1{height: 20px; }
.wrapper2{height: 200px; }
.div1 {width:1000px; height: 20px; }
.div2 {width:1000px; height: 200px; background-color: #88FF88;
overflow: auto;}

/** FLEX GAUGE these classes are pre-generated **/
            .fg-dial {
                font-size: 200%;
                font-weight: bold;
                left: 0;
                position: absolute;
                text-align: center;
                top: 100px;
                width: 100%;
            }
            .fg-dial-label {
                font-size: 200%;
                font-weight: bold;
                left: 0;
                position: absolute;
                text-align: center;
                top: 160px;
                width: 100%;
            }
            
            
            
            
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:100px;
	right:40px;
	background-color:#25d366;
	color:#25d366;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#25d366;
}

.my-float{
	margin-top:16px;
}            


.floating-action-button {
     position: relative;
     top: 100px;
     margin-left: 50px;
}
ul.dropdown-menu {
     box-shadow: none;
     border: 0;
     min-width:0;
     background:transparent
}

.bg { 
  /* The image used */
  background-image: url("/images/sim_compite.png");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
 background-size: cover
}

/* .bg-express-recharge {
  The image used
  background-image: url("/images/1.png");

  Full height
  height: 100%;
  width: 100%;  

  Center and scale the image nicely
  background-position: left, center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
  opacity: 0.45;
}

* {
  box-sizing: border-box;
}

.bg-img {
  The image used
  background-image: url("/images/1.png");

  min-height: 500px;

  Center and scale the image nicely
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  
    height: 85%;
  width: 100%;  
}

Add styles to the form container
.container {
  position: absolute;
  right: 0;
  margin: 20px;
  max-width: 300px;
  padding: 16px;
  
}

Full-width input fields
input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

Set a style for the submit button
.btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

.btn:hover {
  opacity: 1;
}
 */
 
 .div-green-tr {
  background-color: #78BE21;
}
.botonimagen{
	background-image:url('https://prod-ses-email-templates-assets.s3.amazonaws.com/payment/pay-with-clip/button-logos/es/estandar/svg/naranja_neutral_con_sombra.svg');
	background-repeat:no-repeat;
	height: 100px;
	width: 400px;
	background-position:center;
}

