*,
html {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
}

html,
body {
    position: relative;
    height: 100%;
}

.step {
    background-color: #717375;
    padding: .3em;
    color: #fff;
    font-weight: bold;
    margin: .7em 0;
}

.tooltip {
    cursor: default;
    font-size: .7em;
    display: inline-block;
    position: relative;
    border: 1px solid #C9C9C9;
    text-align: left;
    border-radius: 100%;
    padding: 0 5px;
    position: absolute;
    margin-top: -5px;
    margin-left: 5px;
}

.tooltip .bottom {
    min-width: 250px;
    top: 30px;
    left: 50%;
    transform: translate(5%, 0);
    padding: 10px 20px;
    color: #444444;
    background-color: #FEF8D6;
    font-weight: normal;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #E1DBB7;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    display: none;
}

.tooltip:hover .bottom {
    display: block;
}

.tooltip .bottom i {
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 12px;
    overflow: hidden;
}

.tooltip .bottom i::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    background-color: #FEF8D6;
}

#logo {
    position: relative;
    margin-bottom: 5px;
    padding: 15px;
    webkit-box-shadow: 0px 2px 2px 0px rgba(184, 184, 184, 0.7);
    -moz-box-shadow: 0px 2px 2px 0px rgba(184, 184, 184, 0.7);
    box-shadow: 0px 2px 2px 0px rgba(184, 184, 184, 0.7);
    z-index: 1;
}

#app {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 0;
    margin-top: -5px;
}

.tooltip-div {
    margin-top: 1.5em;
}

#campaign-btn {
    border-radius: 100%;
    border: 1px solid rgb(200, 200, 200);
    width: 2em;
    height: 2em;
    margin: .8em;
    background-image: linear-gradient(to bottom, #ffffff, #fcfcfc, #f9f9f9, #f6f6f6, #f3f3f3);
    color: rgb(82, 144, 211);
    cursor: pointer;
    webkit-box-shadow: 0px 1px 1px 0px rgba(184, 184, 184, 0.7);
    -moz-box-shadow: 0px 1px 1px 0px rgba(184, 184, 184, 0.7);
    box-shadow: 0px 1px 1px 0px rgba(184, 184, 184, 0.7);
}

.tab-button {
    height: 3em;
    border-bottom: 2px solid rgb(77, 79, 82);
    cursor: pointer;
    background: rgb(86, 89, 92);
    text-align: center;
    padding-top: 2em;
    font-size: 1.2em;
}

.tab-button:hover {
    background: #707375;
}

.tab-button.active {
    background: rgb(112, 115, 117);
    color: rgb(124, 178, 234);
}

nav {
    display: inline-block;
    vertical-align: top;
    background-color: black;
    background-color: rgb(60, 63, 65);
    width: 20%;
    color: white;
}

.tab {
    display: relative;
    width: 80%;
    background-color: rgb(251, 251, 251);
    padding: 3em;
    padding-bottom: 6em;
    /*border: 1px solid #000;*/
}

input {
    margin: .5em;
    height: 15px;
    border-radius: 4px;
    border: 1px solid #C9C9C9;
    background-image: linear-gradient(to bottom, #fff, #fff, #fff, #fff, #efefef);
    padding: 1.3em;
    width: 90%;
    -webkit-box-shadow: inset 0px 10px 2px -10px rgba(102, 101, 102, 1);
    -moz-box-shadow: inset 0px 10px 2px -10px rgba(102, 101, 102, 1);
    box-shadow: inset 0px 10px 2px -10px rgba(102, 101, 102, 1);
}

#export-button {
    cursor: pointer;
    position: absolute;
    left: 25%;
    bottom: .5em;
    border: 2px solid rgb(229, 123, 54);
    border-radius: .5em;
    width: 8em;
    color: #fff;
    text-shadow: 1px 1px #E27023;
    background: linear-gradient(180deg, rgba(241, 156, 92, 1) 0%, rgba(241, 156, 92, 1) 35%, rgba(238, 115, 61, 1) 100%);
    padding: .7em 1.5em;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 1em;
    webkit-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    -moz-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
}

#export-button:hover {
    opacity: 0.8;
}

.div-table {
    display: table;
    width: 100%;
    /*background-color: #eee;         */
    /*border: 1px solid #666666;         */
    border-spacing: 5px;
    /* cellspacing:poor IE support for  this */
}

.div-table-row {
    display: table-row;
    width: 100%;
    clear: both;
    vertical-align: middle;
}

.div-table-col {
    float: left;
    /* fix for  buggy browsers */
    text-align: center;
    display: table-column;
    width: calc((100% - 5%) / 3);
    /*background-color: #ccc;  */
}

.div-table-col.first {
    width: 5%;
}


/** Pre-launch Module **/

table.campaignTable,
table.integrationTable {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

table.campaignTable td,
table.campaignTable th,
table.integrationTable td,
table.integrationTable th {
    border: 4px solid #fbfbfb;
    height: 40px;
}

.integrationTable .prelaunch-select {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
}

.integrationTable .second-column {
    background-color: #eef4fb;
    width: 50%;
}

.integrationTable .parent-cell {
    background-color: #dae8f7;
    width: 20%;
}

.integrationTable .prelaunch-input {
    width: 90%;
}

.existing input {
    width: 40%;
}

#export-link {
    cursor: pointer;
    bottom: .5em;
    border: 2px solid rgb(229, 123, 54);
    border-radius: .5em;
    width: 8em;
    color: #fff;
    text-shadow: 1px 1px #E27023;
    background: linear-gradient(180deg, rgba(241, 156, 92, 1) 0%, rgba(241, 156, 92, 1) 35%, rgba(238, 115, 61, 1) 100%);
    padding: .7em 5em;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 1em;
    webkit-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    -moz-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
}

#prelaunch-button-div {
    margin-top: 50px;
}

table.prelaunchCampaigns {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

table.prelaunchCampaigns td,
table.prelaunchCampaigns th {
    padding: 3px 2px;
}

table.prelaunchCampaigns .first-column,
table.prelaunchCampaigns .first-column {
    width: 10%;
}

table.prelaunchCampaigns .second-column,
table.prelaunchCampaigns .second-column {
    width: 15%;
}

table.prelaunchCampaigns .third-column,
table.prelaunchCampaigns .third-column {
    width: 75%;
}

table.prelaunchCampaigns tr:nth-child(even) {
    background-color: #eef4fb;
}

.no-style {
    background-color: #fbfbfb !important;
}


/** Feed Module **/

table.feedTable {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table.feedTable td,
table.feedTable th {
    border: 4px solid #fbfbfb;
    height: 40px;
}

.feedTable .feed-select {
    width: 90%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
}

.feedTable .second-column {
    background-color: #eef4fb;
    width: 50%;
}

.feedTable .parent-cell {
    background-color: #dae8f7;
    width: 20%;
}

.feedTable .feed-input {
    width: 90%;
}

.existing input {
    width: 40%;
}

#export-link {
    cursor: pointer;
    bottom: .5em;
    border: 2px solid rgb(229, 123, 54);
    border-radius: .5em;
    width: 8em;
    color: #fff;
    text-shadow: 1px 1px #E27023;
    background: linear-gradient(180deg, rgba(241, 156, 92, 1) 0%, rgba(241, 156, 92, 1) 35%, rgba(238, 115, 61, 1) 100%);
    padding: .7em 5em;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 1em;
    webkit-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    -moz-box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
    box-shadow: 0px 3px 3px 0px rgba(184, 184, 184, 0.7);
}

#feed-button-div {
    margin-top: 50px;
}

.no-style {
    background-color: #fbfbfb !important;
}