#plans-container {
    position: relative;
    margin: 0px 10px;
}

#plans-title-button-container {
    height: 150px;
    position: relative;
}

.plans-title-button {
    padding: 10px 10px;
    border: 3px;
    border-style: groove;
    border-radius: 12px;
    width: 30%;
    height: 75px;
    position: absolute;
    background: #cceeff;
    border-color: #bbddff;
}

#plans-title-button1 {
    z-index: 1;
    top: 0px;
    left: 10%;
}

#plans-title-button2 {
    z-index: 1;
    top: 0px;
    left: 60%;
}

#plans-title-button3 {
    z-index: 3;
    top: 40px;
    left: 35%;
}

.plans-title-button:hover {
    background: #fff;
    cursor: pointer;
    border-color: #bbddff;
}

.plans-title-button:focus {
    background: #fff;
    outline: none;
    border-color: lightgray;
}


.plans-box {
    padding: 8% 6% 30px;
    border: 10px;
    border-style: ridge;
    border-color: white;
    
    position: relative;
    width: 100%;
    margin-top: 30px auto 30px;  
}

/*.plans-box:hover {
    border: 6px;
    border-style: groove;
}*/

#plans-box1 {
    background: #eaffff;
    
}
#plans-box2 {
    background: #ffffef;
    display: none;
}
#plans-box3 {
    background: #f3fff5;
    display: none;
}


.plan-box { 
    box-shadow: -5px 5px 8px gray;
    
    margin: auto;
    margin-bottom: 20px;
    padding: 10px;
    padding-bottom: 20px;
    max-width: 300px;

    /* overflow: auto;
    zoom: 1; */
}

.miruphone-plan-box {
    background: blue; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #f0f0f0, blue); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, #f0f0f0, blue); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, #f0f0f0, blue); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #f0f0f0, blue); /* Standard syntax */
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}

.kbox-plan-box {
    background: darkorange; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #f0f0f0, darkorange); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, #f0f0f0, darkorange); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, #f0f0f0, darkorange); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #f0f0f0, darkorange); /* Standard syntax */
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
    
}

.stick-plan-box {
    background: green; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left top, #f0f0f0, green); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(bottom right, #f0f0f0, green); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(bottom right, #f0f0f0, green); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to bottom right, #f0f0f0, green); /* Standard syntax */
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
    
}

.plan-device-text {
    font-family: Georgia, serif;
    color: black;
    text-shadow: 2px 3px 8px grey;  
    padding-bottom: 15px;
}


.plan-heading-text {
    font-family: Impact, Charcoal, sans-serif;
    color: lemonchiffon;
    text-shadow: 2px 2px #000000;
}

.plan-text {
    color: lemonchiffon;
    text-shadow: 1px 1px #000000;
    line-height: 30px;
    font-size: 16px;
}

.plan-explanation {
    margin: 25px 15px 0px;
}

/* tiny screens */
@media (max-width: 450px) {
    .plan-explanation {
        margin: 25px 5px 0px;
    }
}

/* small screens */
@media (max-width: 767px) {
    
}

/* medium screens */
@media (min-width: 922px) {
    .plan-heading-text {
        font-size: 30px;
    }
    
}



.peculiar-box {
    width: 80%;
    min-height: 50px;
    background: #0088ff;
    display: block;
    margin: auto;
    border-radius: 10px;
    border: 1px;
    border-style: solid;
    
    background-color: #0055ff;
    background: -webkit-linear-gradient(lightskyblue, #0055ff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(lightskyblue, #0055ff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(lightskyblue, #0055ff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#aaa, #333); /* Standard syntax */ 
}

.peculiar-box > div {
    width: 88%;
    min-height: 50px;
    display: block;
    margin: auto;
    background: #333;
    
}

.peculiar-box > div > div {
    padding: 5px 0px;
    margin: 0px;
}

.peculiar-text {
    margin: auto;
    padding: 5px 12px;
    border: 3px;
    border-color: silver;
    border-top-style: solid;
    border-bottom-style: solid; 
    font-weight: bold;
    background: white;
}

#important-box {
    background: #dddddd;
    font-size: 16px;
    padding: 20px;
    border-style: solid;
    border-width: 1px;
}


