﻿.Wizard-Container {
    display: flex;
    flex-flow: wrap;
    font-family: Cambria;
    font-weight: 800;
    font-size: large;
    border-radius: 15px;
    box-shadow: 0px 0px 3px gray;
}

    .Wizard-Container > tbody > tr > td {
        width: 100%;
        display: flex;
        flex-shrink: 0;
        flex-flow: wrap;
    }
        /*Header */
        .Wizard-Container > tbody > tr > td:nth-of-type(1) > table tbody {
            padding: 0;
            border: none;
        }
        .Wizard-Container > tbody > tr > td:nth-of-type(1) > table> tbody {
            padding: 0;
            border: none;
        }
        /* header Items*/
        .Wizard-Container > tbody > tr > td:nth-of-type(1) {
            background: linear-gradient(white,#ff6a00);
            padding: 0;
            width: 100%;
            border: none;
          
        }

            .Wizard-Container > tbody > tr > td:nth-of-type(1) > table > tbody 
            {
                background: linear-gradient(white,#ff6a00);
                display: flex;
                flex-flow: wrap;
                border: none;
            }

                .Wizard-Container > tbody > tr > td:nth-of-type(1) > table > tbody > tr 
                {
                    background: linear-gradient(white,#ff6a00);
                    display: flex;
                    border-radius: 15px;
                    flex-flow: wrap;
                    border: none;
                  
                }
                .Wizard-Container > tbody > tr > td:nth-of-type(1) > table > tbody > tr td {
                   padding:10px;
                }
        /*body with navigation*/
        .Wizard-Container > tbody > tr > td:nth-of-type(2) {
            display: flex;
            border-radius: 15px;
            flex-flow: wrap;
            border: none;
            padding: 0;
        }
            /*body containing small inputs*/
            .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(1) {
                min-height: 430px;
                display: flow;
                box-shadow: grey 1px 2px 5px;
            }

                .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(1) > td {
                    display: flex;
                    flex-flow: wrap;
                    padding: 10px;
                    border: none;
                }
                    
            /*Navigation Body*/
            .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) > td > table {
                width: 100%;
                table-layout: fixed;
            }

                /*Navigation Body*/
            .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) {
                padding: 0px !important;
            }
            .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2)>td {
                padding: 0px !important;
            }
                .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) > td > table > tbody > tr {
                    display: flex;
                    padding: 0px !important;
                    justify-content: space-between;
                    gap: 20px;
                }
                    
                    /*Navigation Buttons*/

                    .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) > td > table > tbody > tr > td:only-child {
                        flex: 1;
                        text-align: right !important;
                        border: none;
                    }

                    .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) > td > table > tbody > tr > td:nth-of-type(1) {
                        flex: 1;
                        text-align: left;
                        border:none;
                    }

                    .Wizard-Container > tbody > tr > td:nth-of-type(2) > table > tbody > tr:nth-of-type(2) > td > table > tbody > tr > td:nth-of-type(2) {
                        flex: 1;
                        text-align: right;
                        border: none;
                    }

    /*for Active steps*/
    .Wizard-Container a {
        text-decoration: none;
        color: #454545;
        font-weight: 600;
        font-size: 18px;
    }
        .Wizard-Container a:hover {
            text-shadow: 1px 5px 15px white;
            text-shadow: 1px 10px 15px white;
            text-shadow: 1px 15px 15px white;
        }
    .Wizard-Container tbody, .Wizard-Containe td {
        text-decoration: none;
        border-radius: 15px;
        border: none !important;
    }
    /* Change active step in sidebar */
    .Wizard-Container td[style*="font-weight:bold"] {
        background-color: white; /* or any color you want */
        
        border: 2px solid #ff6a00 !important;
    }

        .Wizard-Container td[style*="font-weight:bold"] a:hover {
            text-shadow: 1px 10px 15px black;
        }



    .Wizard-Container input[type="submit"],
    .Wizard-Container input[type="button"] {
        width:fit-content;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 18px;
        color: white;
        text-shadow: black 0px 0px 3px;
          background: linear-gradient(to bottom, #7bcdfa 0%, #0da9ff 100%);
        box-shadow: black 0 0 5px;
        border: none;
        cursor: pointer;
        outline: none;
        transition: all 0.1s ease-out;
    }

        .Wizard-Container input[type="submit"]:hover,
        .Wizard-Container input[type="button"]:hover,
        .Wizard-Container input[type="submit"]:focus,
        .Wizard-Container input[type="button"]:focus
        {
            transform: scale(1.1);
            box-shadow: black 2px 2px 10px;
        }

.CommonDivForWizardEndStep {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items:center;
    width: 100%;
    padding: 10px;
  
}