/* @tailwind base;
@tailwind components;
@tailwind utilities; */
.ant-row {
 display: -webkit-flex;
 display: flex;   
 -webkit-justify-content: space-evenly;   
         justify-content: space-evenly;
 -webkit-align-items: center;
         align-items: center;
}
.ant-col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
}

.action-field {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
}
.action-field:last-child {
margin-bottom: 0 !important;
}

.ant-space-item >span {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.ant-row.call-to-action {
    -webkit-flex-direction: column;
            flex-direction: column;
}

.ant-input-number.royalties-input {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
}

.ant-input-number-handler-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
}

input {
    height: 50px;
    width: 100%;
}
.ant-row.ant-form-item.url-form-action {
    -webkit-flex-direction: row !important;
            flex-direction: row !important;
}
.ant-row.ant-form-item.url-form-action >div{ 
    width: 40%;
}
.action-field > * { 

width: 100%;
}
.action-field .ant-input-affix-wrapper.input, .action-field textarea {
    
    width: 100%;
}
.action-field textarea {
    min-height: 100px;
}
.ant-input-affix-wrapper {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
}

.ant-input-number-input-wrap {
    width: 100%;
}

.ant-col.ant-form-item-control {
    width: 100%;
}
.ant-space.ant-space-horizontal.ant-space-align-baseline {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
        align-items: center;
}

.height-p50 {
    height: 50px;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  height: 100vh;
  width: 100vw;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

