.image-preview{
    max-width: 500px;
    height: 300px;
    width: 100%;
    border: 2px solid #dddddd;
    margin-top: 15px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    
    /*Default text*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #cccccc;
}
.image-preview__image{
    display: none;
    width: 100%;
    height: 100%
}
.image-preview__default-text{
    color: #6F84A2;
    font-size: 1em;
}
h3{color: #456580}

.button-arrow{width: 50px;height: 50px;}

button{cursor: pointer;}

/* store name*/
.storeName {
  margin-top: 70px;
  margin-bottom:50px;
  text-align: center;
  font-size: 20px;
  height:30px;
  border: 0;
  width: 100%;
  max-width: 500px;
  margin-left:1px;
  box-shadow: -8px 10px 0px -7px #ebebeb, 8px 10px 0px -7px #ebebeb;
  -webkit-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.storeName:focus {
  outline: none;
  box-shadow: -8px 10px 0px -7px #4EA6EA, 8px 10px 0px -7px #4EA6EA;
}
::-webkit-input-placeholder {
font-size: 20px !important;
color: #456580 !important;
}

/* text area*/
.textArea{width: 100%; max-width: 800px; height: 400px; margin-left: auto;margin-right: auto;}

textarea {
  margin-top: 10px;
  margin-left:auto;
  margin-right: auto;
  width: 100%;
  max-width: 800px;
  height: 300px;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
  border-color: -moz-use-text-color #FFFFFF #FFFFFF -moz-use-text-color;
  border-image: none;
  border-radius: 6px 6px 6px 6px;
  border-style: none solid solid none;
  border-width: medium 1px 1px medium;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
  color: #555555;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px 8px;
  transition: background-color 0.2s ease 0s;
}


textarea:focus {
    background: none repeat scroll 0 0 #FFFFFF;
    outline-width: 0;
}
.openShop{
    background-color: white; 
  border: 2px solid #008CBA;
  color: black;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.columnSize{
  width:25% !important;
}
.help-tip:hover p{
  display:block;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}

/* The tooltip */
.help-tip p {    
display: none;
font-family: sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
text-align: center;
background-color: #FFFFFF;
padding: 12px 16px;
width: 178px;
height: auto;
position: absolute;
transform: translate(-50%, 5%);
border-radius: 3px;
/* 	border: 1px solid #E0E0E0; */
box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1);
color: #37393D;
font-size: 12px;
line-height: 18px;
z-index: 99;
}

.help-tip p a {
color: #067df7;
text-decoration: none;
}

.help-tip p a:hover {
text-decoration: underline;
}

/* The pointer of the tooltip */
.help-tip p:before { 
position: absolute;
content: '';
width: 0;
height: 0;
border: 10px solid transparent;
border-bottom-color:#FFFFFF;
top: -9px;
left: 50%;
transform: translate(-50%, -50%);
}

/* Prevents the tooltip from being hidden */
.help-tip p:after {
width: 10px;
height: 40px;
content:'';
position: absolute;
top: -40px;
left: 0;
}
@media screen and (max-width: 600px) {
    .columnSize{
      width: 50%!important;
    }
}