#X00WrapperLogin, #X00WrapperMain {
  margin: 0 auto;
  width: 700px;
}
#X00ImageHeader {
  max-width: 100%;
}
@media (max-width: 767px) { 
  #X00WrapperLogin, #X00WrapperMain {
    width: 95%;
  }
}
@media (max-width: 480px) {
  #X00WrapperLogin, #X00WrapperMain {
    width: 95%;
  }
}
/*****************************************/
/* Radio buttons sprite background image */
/*****************************************/

.input-group-addon2 {
    padding: 16px;
}

input[type=radio]{display:none;}
 
input[type=radio] + label.ios{
    display:inline-block;
    cursor: pointer;
    outline: 0; 
    width: 100px;
    height: 100px;
    background-image: url("../i.imgur.com/android.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: -99999px;
}
 
input[type=radio]:checked + label.ios{background-position: 0 -100px;}

input[type=radio] + label.android{
    display:inline-block;
    cursor: pointer;
    outline: 0;	
    width: 100px;
    height: 100px;
	background-image: url("../i.imgur.com/ios.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: -99999px;
}
 
input[type=radio]:checked + label.android{background-position: 0 bottom;}

/* Extras */
a:visited{color:#888}
a{color:#444;text-decoration:none;}
p{margin-bottom:.3em;}

.onoffswitch {
    position: relative; width: 77px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #8A8585; border-radius: 11px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 26px; padding: 0; line-height: 26px;
    font-size: 16px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 5px;
    background-color: #282828; color: #0C7A22;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 5px;
    background-color: #282828; color: #FF0000;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 34px; margin: -4px;
    background: #282828;
    position: absolute; top: 0; bottom: 0;
    right: 47px;
    border: 2px solid #8A8585; border-radius: 11px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
    background-color: #282828; 
}