﻿
/*clase de label para opciones*/
.stylbl {
    width: 140px;
    font-family: "Arial", "sans-serif";
    font-size: 21px;
    font-weight: normal;
    color: #FFFFFF;
    } 
    
/*clase de label*/
.stylblbx {
    width: 90px;
    font-family: "Arial", "sans-serif";
    font-size: 21px;
    font-weight: normal;
    color: #FFFFFF;
    }     
    
/*clase de combobox*/
.stycbb {
	width: 235px;
	height: 35px;
    font-family: "Arial", "sans-serif";
    font-size: 17px;
    font-weight: normal;
    border-radius: 10px;
    background-image: linear-gradient(to right, #221bd3, #0064f3, #0093f9, #15bbf2, #a1deee);
    color: #000000;
    }
    
 .stycbb:hover {
    color: #FF1493;
    }   
    
/*clase campo Total*/    
.sytctt {
	width: 235px;
	height: 35px;
    font-family: "Arial", "sans-serif";
    font-size: 21px;
    font-weight: bold;
    border-radius: 10px;
    color: #00FFFF;
    }
    
/*clase de div*/  
.stydiv {
    display: flex;
    justify-content: center;	
	padding: 20px;
	background-image: linear-gradient(to right top, #21072c, #34124e, #441f74, #4f2e9e, #5240cb);
    }
    
/*clase de botón*/    
.stybtt {
    background-image: linear-gradient(to right, #050e1c, #00204b, #002f7d, #003ab0, #1441e1);
	width: 200px;
	height: 40px;
    font-family: "Arial", "sans-serif";
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    border: 0px;
    color: #FFFFFF;
    }
    
.stybtt:hover {
    background-image: linear-gradient(to right top, #3d13d4, #0063f5, #008ff5, #00b2e5, #82cfda);
    color: #FF1493;
    }  
    
/*clase tarjetas de planes*/     
.caja-planes1 {
    border-width: 5px;
  	border-style: solid;
  	border-color: #9900FF;
  	border-style: outset;

	width: 319px;
	height: 915px;
	background-image: linear-gradient(to right top, #999999, #7c7b7b, #605d5d, #444240, #292926);
	padding: 3px;
				
	border-top-left-radius: 20px; 
	border-top-right-radius: 40px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 60px;
	margin: 15px;
	float: left;
	
	transition: all 300ms;
	position: relative;
    }
    
.caja-planes1:hover {
    cursor: pointer;
    transform: scale(1.05);
    }
    
